/* =========================================================
   Elektro Živković — stilovi (polish pass)
   Dizajn tokeni · ritam sekcija · shadcn-stil komponente
   ========================================================= */
:root {
  /* Brand */
  --brand-dark: #0f4c8d;
  --brand-dark-700: #0c3d70;
  --brand-dark-900: #082943;
  --brand-light: #68baef;
  --brand-light-600: #4fa9e4;

  /* Tekst */
  --ink: #14223a;
  --ink-2: #2c3a4f;
  --muted: #5b6677;
  --muted-dark: #acc4dc;     /* muted na tamnoj podlozi */

  /* Površine — 3 razine ritma */
  --bg: #ffffff;
  --bg-soft: #f5f8fc;
  --line: #e7edf4;
  --line-soft: #eef3f9;

  /* Tokeni */
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(15,76,141,.05), 0 2px 8px rgba(15,76,141,.05);
  --shadow-md: 0 8px 28px rgba(15,76,141,.10);
  --shadow-lg: 0 24px 60px -18px rgba(12,45,80,.34);
  --shadow-glow: 0 18px 50px -12px rgba(104,186,239,.5);
  --section-y: clamp(56px, 8vw, 100px);
  --maxw: 1140px;
  --header-h: 82px;
  --ease: cubic-bezier(.22,.7,.22,1);

  /* Tipografija */
  --font-heading: "Space Grotesk", system-ui, -apple-system, sans-serif;
  --font-sans: "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0; font-family: var(--font-sans); color: var(--ink); background: var(--bg);
  line-height: 1.62; font-size: 17px; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--brand-dark); text-decoration: none; transition: color .15s; }
a:hover { color: var(--brand-light-600); }

h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--ink); line-height: 1.12; margin: 0 0 .5em; font-weight: 700; }
h1 { font-size: clamp(2.4rem, 6vw, 4.25rem); line-height: 1.05; letter-spacing: -.03em; }
h2 { font-size: clamp(1.85rem, 4vw, 2.7rem); letter-spacing: -.022em; }
h3 { font-size: 1.3rem; letter-spacing: -.012em; font-weight: 600; }
p { margin: 0 0 1rem; }
.muted { color: var(--muted); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.section { padding: var(--section-y) 0; background: var(--bg); position: relative; }
.section--soft { background: var(--bg-soft); }
.center { text-align: center; }

/* Badge / eyebrow (shadcn Badge) */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; font-size: .82rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--brand-dark-700);
  background: rgba(104,186,239,.18); border: 1px solid rgba(104,186,239,.32);
  padding: 7px 15px; border-radius: var(--radius-pill); margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--brand-light); }
.lead { font-size: 1.18rem; color: var(--muted); max-width: 58ch; line-height: 1.55; }

/* Buttons (shadcn Button) */
.btn {
  display: inline-flex; align-items: center; gap: 9px; justify-content: center; font-family: var(--font-sans);
  font-weight: 600; font-size: 1rem; padding: 12px 22px; border-radius: var(--radius-sm);
  border: 1.5px solid transparent; cursor: pointer; transition: transform .16s var(--ease), box-shadow .16s, background .16s, color .16s, border-color .16s;
  white-space: nowrap; line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--brand-dark); color: #fff; box-shadow: 0 6px 16px -6px rgba(15,76,141,.5); }
.btn--primary:hover { background: var(--brand-dark-700); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost { background: #fff; color: var(--brand-dark); border-color: #cdddf0; }
.btn--ghost:hover { background: var(--brand-dark); color: #fff; border-color: var(--brand-dark); transform: translateY(-2px); }
.btn--light { background: var(--brand-light); color: #06243f; }
.btn--light:hover { background: #fff; color: var(--brand-dark-700); transform: translateY(-2px); box-shadow: var(--shadow-glow); }
.btn--lg { padding: 15px 30px; font-size: 1.08rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* Shimmer primary (magicui ShimmerButton — vanilla port) */
.btn--shimmer { position: relative; overflow: hidden; isolation: isolate; }
.btn--shimmer::after {
  content: ""; position: absolute; top: 0; left: -120%; width: 70%; height: 100%; z-index: 1;
  background: linear-gradient(100deg, transparent 0%, rgba(255,255,255,.0) 20%, rgba(255,255,255,.55) 50%, rgba(255,255,255,0) 80%, transparent 100%);
  transform: skewX(-18deg); animation: btn-shimmer 3.2s var(--ease) infinite; pointer-events: none;
}
.btn--shimmer > * { position: relative; z-index: 2; }
@keyframes btn-shimmer { 0% { left: -120%; } 55%, 100% { left: 130%; } }

/* Sticky mobilni "Nazovi" bar */
.mobile-call-bar { display: none; }

/* Separator (shadcn Separator) */
.sep { height: 1px; background: var(--line); border: 0; margin: 0; }

/* ============ HEADER ============ */
.site-header {
  position: sticky; top: 0; z-index: 60; background: rgba(255,255,255,.72);
  backdrop-filter: saturate(180%) blur(12px); -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent; transition: background .25s, box-shadow .25s, border-color .25s;
}
.site-header.scrolled { background: rgba(255,255,255,.9); border-bottom-color: var(--line); box-shadow: 0 4px 20px -10px rgba(12,45,80,.25); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 16px; }
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { height: 60px; width: auto; }
.nav { display: flex; align-items: center; gap: 2px; }
.nav a { color: var(--ink); font-weight: 600; font-size: .97rem; padding: 9px 14px; border-radius: 8px; position: relative; }
.nav a:hover { background: var(--bg-soft); color: var(--brand-dark); }
.nav a.active { color: var(--brand-dark); }
.nav a.active::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 3px; height: 2.5px;
  background: var(--brand-light); border-radius: 2px;
}
.header-actions { display: flex; align-items: center; gap: 12px; }
.header-phone {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--brand-dark);
  padding: 9px 16px; border-radius: var(--radius-sm); background: var(--bg-soft); border: 1px solid var(--line); font-size: .95rem;
}
.header-phone:hover { background: var(--brand-dark); color: #fff; border-color: var(--brand-dark); }
.header-phone svg { width: 17px; height: 17px; }
.nav-toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; color: var(--ink); border-radius: 8px; }
.nav-toggle:hover { background: var(--bg-soft); }
.nav-toggle svg { width: 28px; height: 28px; }

/* Sheet (shadcn Sheet) — mobilni meni */
.sheet-overlay {
  position: fixed; inset: 0; background: rgba(8,24,44,.5); opacity: 0; visibility: hidden;
  transition: opacity .25s; z-index: 70; backdrop-filter: blur(2px);
}
.sheet-overlay.open { opacity: 1; visibility: visible; }
.sheet {
  position: fixed; top: 0; right: 0; height: 100%; width: min(86vw, 340px); background: #fff; z-index: 80;
  transform: translateX(100%); transition: transform .3s var(--ease); box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; padding: 20px 22px 28px;
}
.sheet.open { transform: translateX(0); }
.sheet-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.sheet-head img { height: 42px; }
.sheet-close { background: var(--bg-soft); border: 1px solid var(--line); width: 40px; height: 40px; border-radius: 10px; cursor: pointer; color: var(--ink); display: grid; place-items: center; }
.sheet-close:hover { background: var(--brand-dark); color: #fff; }
.sheet-close svg { width: 22px; height: 22px; }
.sheet-nav { display: flex; flex-direction: column; gap: 2px; margin-top: 14px; }
.sheet-nav a { font-family: var(--font-heading); font-weight: 600; font-size: 1.12rem; color: var(--ink); padding: 14px 12px; border-radius: 10px; }
.sheet-nav a:hover, .sheet-nav a.active { background: var(--bg-soft); color: var(--brand-dark); }
.sheet-foot { margin-top: auto; display: grid; gap: 10px; }
.sheet-foot .btn { width: 100%; }

/* ============ HERO ============ */
.hero { position: relative; overflow: hidden; background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%); }
.hero::before {
  content: ""; position: absolute; top: -120px; right: -80px; width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(104,186,239,.5), rgba(104,186,239,0) 68%);
  filter: blur(20px); z-index: 0; pointer-events: none;
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr .85fr; gap: 60px; align-items: center; padding-top: clamp(32px,4.5vw,60px); padding-bottom: clamp(48px,7vw,84px); }
.hero h1 { max-width: 16ch; }
.hero h1 .accent { color: var(--brand-dark); position: relative; white-space: nowrap; }
/* magicui-stil highlight (vanilla port) — animirani marker iza akcent-riječi */
.hero h1 .accent::after {
  content: ""; position: absolute; left: -.06em; right: -.06em; bottom: .04em; height: .34em; z-index: -1;
  background: linear-gradient(90deg, rgba(104,186,239,.55), rgba(79,169,228,.7));
  border-radius: 3px; transform: scaleX(0); transform-origin: left center;
  animation: hl-sweep .9s var(--ease) .55s forwards;
}
@keyframes hl-sweep { to { transform: scaleX(1); } }
.hero-photo-wrap { position: relative; }
.hero-photo-wrap::before {
  content: ""; position: absolute; inset: -26px -26px 14px 18px; border-radius: 30px;
  background: linear-gradient(135deg, rgba(15,76,141,.22), rgba(104,186,239,.28)); filter: blur(34px); z-index: 0;
}
.hero-photo { position: relative; z-index: 1; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16 / 12; }
.hero-badge {
  position: absolute; left: -14px; bottom: 22px; z-index: 2; background: rgba(255,255,255,.96);
  color: var(--brand-dark); font-weight: 700; font-size: .92rem; padding: 11px 16px; border-radius: 14px;
  box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 9px; animation: floaty 5s ease-in-out infinite;
}
.hero-badge svg { width: 20px; height: 20px; color: var(--brand-light-600); }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

/* Trust strip */
.trust-strip { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 16px; margin-top: 26px; color: var(--muted); font-size: .92rem; font-weight: 500; }
.trust-strip span { display: inline-flex; align-items: center; gap: 8px; }
.trust-strip .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--brand-light); opacity: .8; }
.trust-strip b { color: var(--ink); font-weight: 600; }

/* ============ TRUST BAND (ispod heroja) ============ */
.trust-band { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 22px 0; }
.trust-band-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.trust-item { display: flex; align-items: center; gap: 13px; }
.trust-item .ti-ic { flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: #fff; border: 1px solid var(--line); color: var(--brand-dark); box-shadow: var(--shadow-sm); }
.trust-item .ti-ic svg { width: 22px; height: 22px; }
.trust-item b { display: block; font-family: var(--font-heading); font-size: .98rem; color: var(--ink); line-height: 1.2; }
.trust-item span { font-size: .86rem; color: var(--muted); }

/* ============ GRID / CARDS ============ */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px;
  box-shadow: var(--shadow-sm); transition: transform .2s var(--ease), box-shadow .2s, border-color .2s; height: 100%;
}
a.card:hover, .card--hover:hover { border-color: var(--brand-light); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.card h3 { color: var(--ink); }
.card p { color: var(--muted); margin: 0; font-size: .98rem; }
.icon-badge { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 16px; background: linear-gradient(135deg, var(--brand-dark), var(--brand-light)); color: #fff; box-shadow: 0 8px 18px -8px rgba(15,76,141,.6); }
.icon-badge svg { width: 26px; height: 26px; }
.card-more { display: inline-flex; align-items: center; gap: 6px; margin-top: 15px; font-weight: 700; font-size: .92rem; color: var(--brand-dark); }
.card-more svg { width: 15px; height: 15px; transition: transform .18s var(--ease); }
a.card:hover .card-more svg { transform: translateX(4px); }

.sec-head { max-width: 62ch; margin-bottom: 40px; }
.sec-head.center { margin-left: auto; margin-right: auto; }

/* AspectRatio helper */
.ratio { position: relative; overflow: hidden; border-radius: var(--radius); }
.ratio > img { width: 100%; height: 100%; object-fit: cover; }
.ratio-4-3 { aspect-ratio: 4 / 3; }
.ratio-3-2 { aspect-ratio: 3 / 2; }

/* Split / teaser */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split-media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/3; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }

/* Mini galerija na naslovnoj */
.mini-gallery { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.mini-gallery .ratio { box-shadow: var(--shadow-sm); border: 1px solid var(--line); transition: transform .25s var(--ease), box-shadow .25s; }
.mini-gallery .ratio:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.mini-gallery img { transition: transform .4s var(--ease); }
.mini-gallery .ratio:hover img { transform: scale(1.05); }

/* ============ GALLERY (Dialog lightbox) ============ */
.gallery { columns: 3; column-gap: 18px; }
.gallery figure { margin: 0 0 18px; break-inside: avoid; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); cursor: zoom-in; background: #fff; transition: box-shadow .25s, transform .25s var(--ease); }
.gallery figure:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.gallery img { width: 100%; height: auto; transition: transform .4s var(--ease); }
.gallery figure:hover img { transform: scale(1.05); }
.gallery figcaption { font-size: .9rem; color: var(--muted); padding: 11px 14px; border-top: 1px solid var(--line); background: #fff; }

.lb { position: fixed; inset: 0; background: rgba(8,22,40,.93); display: none; z-index: 100; align-items: center; justify-content: center; padding: 24px; opacity: 0; transition: opacity .2s; backdrop-filter: blur(3px); }
.lb.open { display: flex; opacity: 1; }
.lb-stage { max-width: 92vw; max-height: 86vh; }
.lb img { max-width: 92vw; max-height: 82vh; border-radius: 10px; box-shadow: 0 20px 70px rgba(0,0,0,.6); user-select: none; }
.lb-close, .lb-nav { position: absolute; background: rgba(255,255,255,.14); color: #fff; border: 0; cursor: pointer; border-radius: 50%; display: grid; place-items: center; transition: background .15s, transform .15s; }
.lb-close { top: 18px; right: 18px; width: 46px; height: 46px; }
.lb-close svg { width: 24px; height: 24px; }
.lb-nav { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; }
.lb-nav svg { width: 26px; height: 26px; }
.lb-prev { left: 16px; } .lb-next { right: 16px; }
.lb-close:hover, .lb-nav:hover { background: rgba(255,255,255,.3); }
.lb-cap { position: absolute; bottom: 18px; left: 0; right: 0; text-align: center; color: #dde8f3; font-size: .95rem; }

/* Trust list (O nama) */
ul.trust { padding: 0; margin: 8px 0 0; display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.trust li { list-style: none; display: flex; gap: 12px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 16px 18px; transition: transform .2s var(--ease), box-shadow .2s; }
.trust li:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.trust .tick { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; background: rgba(104,186,239,.18); color: var(--brand-dark); display: grid; place-items: center; }
.trust .tick svg { width: 15px; height: 15px; }
.trust b { display: block; font-size: 1rem; font-family: var(--font-heading); }
.trust span.d { color: var(--muted); font-size: .92rem; }

/* Prose */
.prose { max-width: 70ch; }
.prose p { font-size: 1.06rem; color: var(--ink-2); }
.prose p:first-of-type { font-size: 1.2rem; color: var(--ink); }

/* ============ DARK FEATURE SECTION ============ */
.section--dark { background: linear-gradient(125deg, var(--brand-dark) 0%, var(--brand-dark-900) 100%); color: #fff; position: relative; overflow: hidden; }
.section--dark::before { content: ""; position: absolute; top: -160px; left: -120px; width: 480px; height: 480px; border-radius: 50%; background: radial-gradient(circle, rgba(104,186,239,.28), transparent 70%); filter: blur(10px); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.section--dark p { color: var(--muted-dark); }
.section--dark .eyebrow { background: rgba(104,186,239,.2); color: #cfe6fb; }
.section--dark .eyebrow::before { background: var(--brand-light); }
.section--dark a:not(.btn) { color: var(--brand-light); }
.section--dark .split-media { box-shadow: var(--shadow-lg); }

/* CTA band — koristi tamnu feature podlogu */
.cta-band { position: relative; z-index: 1; text-align: center; }
.cta-band h2 { font-size: clamp(1.7rem, 4vw, 2.4rem); }
.cta-band p { max-width: 52ch; margin: 0 auto 24px; color: var(--muted-dark); }

/* ============ CONTACT ============ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.contact-list { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 14px; }
.contact-list li { display: flex; gap: 14px; align-items: flex-start; }
.contact-list .ci { flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px; background: var(--bg-soft); border: 1px solid var(--line); display: grid; place-items: center; color: var(--brand-dark); }
.contact-list .ci svg { width: 21px; height: 21px; }
.contact-list b { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); font-weight: 700; }
.contact-list a, .contact-list span.v { font-size: 1.1rem; font-weight: 600; color: var(--ink); }
.contact-list a:hover { color: var(--brand-dark); }
.form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
.form label { display: block; font-weight: 600; font-size: .92rem; margin: 0 0 6px; }
.field { margin-bottom: 16px; }
.form input, .form textarea { width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm); font: inherit; color: var(--ink); background: #fff; transition: border-color .15s, box-shadow .15s; }
.form input:focus, .form textarea:focus { outline: none; border-color: var(--brand-light); box-shadow: 0 0 0 3px rgba(104,186,239,.22); }
.form textarea { min-height: 130px; resize: vertical; }
.form .note { font-size: .85rem; color: var(--muted); margin: 12px 0 0; }
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); margin-top: 26px; }
.map-embed iframe { display: block; width: 100%; height: 320px; border: 0; }
.wa-btn { background: #25D366; color: #fff; border-color: #25D366; }
.wa-btn:hover { background: #1da851; color: #fff; border-color: #1da851; }

/* Accordion (shadcn Accordion) — FAQ */
.accordion { max-width: 760px; margin: 0 auto; display: grid; gap: 12px; }
.accordion details { background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; transition: border-color .2s, box-shadow .2s; }
.accordion details[open] { border-color: var(--brand-light); box-shadow: var(--shadow-sm); }
.accordion summary { cursor: pointer; list-style: none; padding: 18px 20px; font-family: var(--font-heading); font-weight: 600; font-size: 1.05rem; color: var(--ink); display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary .chev { flex-shrink: 0; width: 22px; height: 22px; color: var(--brand-dark); transition: transform .25s var(--ease); }
.accordion details[open] summary .chev { transform: rotate(180deg); }
.accordion .acc-body { padding: 0 20px 18px; color: var(--ink-2); }
.accordion .acc-body p { margin: 0; }

/* Toast (Sonner) */
.toast-wrap { position: fixed; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 120; display: grid; gap: 10px; width: min(92vw, 400px); }
.toast { background: #0c2238; color: #fff; border: 1px solid rgba(104,186,239,.4); border-radius: 12px; padding: 14px 16px; box-shadow: var(--shadow-lg); display: flex; gap: 11px; align-items: center; font-size: .95rem; opacity: 0; transform: translateY(14px); transition: opacity .25s, transform .25s var(--ease); }
.toast.show { opacity: 1; transform: translateY(0); }
.toast svg { width: 20px; height: 20px; color: var(--brand-light); flex-shrink: 0; }

/* ============ FOOTER ============ */
.site-footer { background: var(--brand-dark-900); color: #c4d3e4; padding: 56px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.site-footer h4 { color: #fff; font-size: 1rem; margin: 0 0 16px; font-family: var(--font-heading); }
.footer-logo { display: inline-block; margin-bottom: 16px; }
.footer-logo img { height: 60px; }
.site-footer p { color: #9fb3c8; font-size: .95rem; }
.footer-nav, .footer-contact { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-nav a, .footer-contact a { color: #c4d3e4; font-size: .96rem; }
.footer-nav a:hover, .footer-contact a:hover { color: var(--brand-light); }
.footer-contact li { display: flex; gap: 9px; align-items: center; font-size: .96rem; }
.footer-contact svg { width: 16px; height: 16px; color: var(--brand-light); flex-shrink: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 36px; padding-top: 20px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .88rem; color: #8198b0; }

/* Page header */
.page-head { background: linear-gradient(180deg, var(--bg-soft), #fff); border-bottom: 1px solid var(--line); padding: clamp(40px,6vw,64px) 0; }
.page-head h1 { margin-bottom: 12px; }
.page-head p { color: var(--muted); max-width: 60ch; margin: 0; font-size: 1.12rem; }

.todo { display: inline-block; background: #fff3cd; color: #7a5b00; border: 1px solid #ffe69c; border-radius: 6px; padding: 2px 8px; font-size: .85rem; font-weight: 700; }

/* ============ REVEAL ANIMACIJE (tailwindcss-animate stil) ============ */
.js [data-reveal] { opacity: 0; transform: translateY(20px); }
.js [data-reveal].in { opacity: 1; transform: none; transition: opacity .65s var(--ease), transform .65s var(--ease); transition-delay: calc(var(--d, 0) * 80ms); }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .js [data-reveal] { opacity: 1 !important; transform: none !important; }
  .hero-badge { animation: none; }
  .hero h1 .accent::after { transform: none !important; }
  .btn--shimmer::after { display: none; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero-photo-wrap { order: -1; }
  .split { grid-template-columns: 1fr; gap: 28px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .gallery { columns: 2; }
  .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  ul.trust { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 980px) {
  .trust-band-grid { grid-template-columns: repeat(2, 1fr); gap: 14px 22px; }
}
@media (max-width: 760px) {
  body { font-size: 16px; padding-bottom: 76px; }
  .nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .header-inner { gap: 10px; }
  .brand img { height: 50px; }
  /* poziv je sada u sticky baru — sakrij broj iz headera radi prostora */
  .header-phone { display: none; }
  .mini-gallery { grid-template-columns: 1fr 1fr; }
  ul.trust { grid-template-columns: 1fr; }

  /* Sticky mobilni "Nazovi" bar */
  .mobile-call-bar {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; gap: 10px; padding: 10px 14px;
    background: rgba(255,255,255,.92); backdrop-filter: saturate(180%) blur(12px); -webkit-backdrop-filter: saturate(180%) blur(12px);
    border-top: 1px solid var(--line); box-shadow: 0 -6px 24px -12px rgba(12,45,80,.3);
  }
  .mobile-call-bar .btn { flex: 1 1 0; min-width: 0; padding: 13px 14px; }
  .mobile-call-bar .btn--ghost { flex: 0 0 auto; padding: 13px 16px; }
}
@media (max-width: 480px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .gallery { columns: 1; }
  .mini-gallery { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .btn-row .btn { flex: 1 1 auto; }
  .hero-badge { left: 12px; font-size: .85rem; }
}
