:root{
  --bg:#2f2f2f;
  --panel:#3a3a3a;
  --card:#444444;
  --line:#555555;

  --text:#f5f5f5;
  --muted:#d0d0d0;

  --red:#c62828;
  --red-hover:#e53935;

  --shadow:0 10px 24px rgba(0,0,0,.28);
  --shadow-soft:0 6px 14px rgba(0,0,0,.18);

  --radius:18px;
}
*{box-sizing:border-box}
html, body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", Helvetica, sans-serif;
  background:
    radial-gradient(900px 420px at 30% -10%, rgba(178,34,34,.18), rgba(0,0,0,0)),
    radial-gradient(800px 380px at 80% 0%, rgba(178,34,34,.10), rgba(0,0,0,0)),
    linear-gradient(#07090c, var(--bg));
  color:var(--text);
  line-height:1.6;
}
a{color:inherit;text-decoration:none}
.container{max-width:1160px;margin:0 auto;padding:0 18px}

/* Topbar */
.topbar{
  position:sticky;
  top:0;
  z-index:100;
  backdrop-filter:blur(10px);
  background:rgba(50,50,50,.75);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.topbar-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px; padding:14px 0; flex-wrap:wrap;
}

.brand{display:flex; align-items:center; gap:14px; flex-wrap:nowrap}
.brandTag{
  color:var(--muted);
  font-size:13px;
  font-weight:700;
  white-space:nowrap;
  opacity:.95;
}

.logoImg{
  height:40px;
  width:auto;
  max-width:220px;
  display:block;
  object-fit:contain;
  filter:none; /* premium = cist */
}

@media(max-width:980px){
  .brandTag{display:none;} /* na manjim ekranima samo logo */
  .logoImg{height:38px; max-width:210px;}
}
.logoMark{
  width:38px;height:38px;border-radius:12px;
  background:linear-gradient(135deg, rgba(225,6,0,.95), rgba(178,34,34,.32));
  box-shadow:0 10px 22px rgba(225,6,0,.15);
  position:relative;
}
.logoMark:after{
  content:""; position:absolute; inset:10px;
  border:2px solid rgba(0,0,0,.35);
  border-left-color:rgba(255,255,255,.55);
  border-top-color:rgba(255,255,255,.35);
  border-radius:10px;
}
.brandText{display:flex; flex-direction:column; gap:2px}
.brandText .name{font-weight:900; letter-spacing:.6px}
.brandText .tag{color:var(--muted); font-size:13px}
.nav{display:flex; gap:14px; align-items:center; flex-wrap:wrap}
.nav a{
  color:rgba(245,247,251,.88);
  font-size:14px;
  padding:8px 10px;
  border-radius:12px;
  border:1px solid transparent;
}
.nav a:hover{border-color:rgba(178,34,34,.65); background:rgba(178,34,34,.10)}
.nav .call{
  border:1px solid rgba(178,34,34,.75);
  background:rgba(178,34,34,.12);
  font-weight:900;
}
.menuToggle{
  display:none;
  margin-left:auto;
  width:44px;
  height:44px;
  border-radius:12px;
  border:1px solid rgba(178,34,34,.45);
  background:rgba(74,74,74,.75);
  color:#fff;
  font-size:24px;
  font-weight:900;
  line-height:1;
  cursor:pointer;
  align-items:center;
  justify-content:center;
}

.menuToggle:hover{
  background:rgba(178,34,34,.18);
  border-color:rgba(178,34,34,.65);
}

@media(max-width:900px){
  .topbar-inner{
    align-items:center;
  }

  .brand{
    flex:1;
    min-width:0;
  }

  .brandTag{
    display:none;
  }

  .menuToggle{
    display:inline-flex;
  }

  .nav{
    display:none;
    width:100%;
    flex-direction:column;
    gap:8px;
    margin-top:12px;
    padding-top:10px;
    border-top:1px solid rgba(255,255,255,.06);
  }

  .nav.open{
    display:flex;
  }

  .nav a{
    width:100%;
    min-height:46px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:10px 12px;
  }

  .nav .call{
    margin-top:4px;
  }
}
/* Hero */
.hero{padding:42px 0 34px}
.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:16px;
  align-items:stretch;
}
.kicker{
  display:inline-flex; align-items:center; gap:10px;
  color:rgba(245,247,251,.90);
  font-weight:800;
  background:rgba(74,74,74,.70);
  border:1px solid rgba(35,43,58,.85);
  padding:10px 12px;
  border-radius:999px;
  box-shadow:var(--shadow);
}
.kicker .dot{width:10px;height:10px;border-radius:999px;background:var(--red)}
h1{
  margin:14px 0 10px;
  font-size:42px;
  line-height:1.05;
  letter-spacing:-0.3px;
  font-weight:900;
}

.lead{
  margin:0 0 14px;
  color:#dcdcdc;
  font-size:17px;
}
.cta{margin-top:18px; display:flex; gap:12px; flex-wrap:wrap}
/* ===== CTA mobile optimizacija (kalkulator dugme full width) ===== */
@media (max-width: 768px) {

  .cta {
    gap: 10px;
  }

  .cta .btn {
    min-height: 54px;
    font-size: 16px;
    padding: 14px 18px;
  }

  /* kalkulator dugme ide u punu širinu */
  .cta a[href="/kalkulator-registracije-vozila.html"] {
    width: 100%;
    justify-content: center;
  }
}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  font-weight:900;
  letter-spacing:.2px;
  border:1px solid rgba(178,34,34,.65);
}
.btnPrimary{
  background:linear-gradient(135deg, #b22222, #8b1a1a);
  box-shadow: var(--shadow-soft);
  border:1px solid rgba(255,255,255,.08);
}
.btnPrimary:hover{
  background:linear-gradient(135deg, var(--red-hover), #a11f1f);
  transform:translateY(-1px);
}
.btnGhost{background:rgba(74,74,74,.55)}
.btnGhost:hover{background:rgba(178,34,34,.10)}

.pills{display:flex; gap:10px; flex-wrap:wrap}
.pill{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 10px;
  border-radius:999px;
  background:rgba(74,74,74,.70);
  border:1px solid rgba(35,43,58,.85);
  color:rgba(245,247,251,.88);
  font-size:13px;
  font-weight:800;
}
.pill i{width:8px;height:8px;border-radius:999px;background:var(--red)}

/* Media card */
.media{
  background:rgba(74,74,74,.65);
  border:1px solid rgba(35,43,58,.85);
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,.35);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  height:100%;
  position:relative;
}
.media:before{
  content:"";
  position:absolute;
  inset:-10px;
  border-radius:22px;
  background:radial-gradient(600px 240px at 30% 10%, rgba(178,34,34,.18), rgba(0,0,0,0)),
             radial-gradient(520px 220px at 90% 20%, rgba(26,115,232,.12), rgba(0,0,0,0));
  filter:blur(18px);
  opacity:.85;
  z-index:-1;
}
.mediaImg{
  aspect-ratio: 16 / 9;
  overflow:hidden;
}
.mediaImg img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1.03);
  transition:transform .35s ease;
}
.media:hover .mediaImg img{transform:scale(1.07)}
.media .cap{
  padding:12px 14px;
  border-top:1px solid rgba(35,43,58,.85);
  color:rgba(245,247,251,.88);
  display:flex; gap:10px; flex-wrap:wrap;
  align-items:center; justify-content:space-between;
  font-size:14px;
}
/* Mini gallery (Linija 1 / Linija 2) */
.miniGallery{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
  padding:12px 14px;
  border-top:1px solid rgba(35,43,58,.85);
  background:rgba(74,74,74,.35);
}

.miniCard{
  border:1px solid rgba(35,43,58,.85);
  border-radius:14px;
  overflow:hidden;
  background:rgba(70,70,70,.72);
  cursor:pointer;
  transition:transform .18s ease, border-color .18s ease, filter .18s ease;
}

.miniCard:hover{
  transform:translateY(-2px);
  border-color:rgba(178,34,34,.65);
  filter:brightness(1.03);
}

.miniImg{
  aspect-ratio: 4 / 3;
  overflow:hidden;
}

.miniImg img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1.02);
  transition:transform .28s ease;
}

.miniCard:hover .miniImg img{ transform:scale(1.06); }

.miniLbl{
  padding:8px 10px;
  font-weight:900;
  font-size:13px;
  color:rgba(245,247,251,.92);
  border-top:1px solid rgba(35,43,58,.85);
}

/* na uskom ekranu da ne guši */
@media(max-width:520px){
  .miniGallery{ grid-template-columns:1fr; }
}

/* Sections / Cards */
.section{padding:40px 0}
.section-title{
  margin:0 0 16px;
  font-size:22px;
  letter-spacing:.2px;
  color:rgba(245,247,251,.94);
}
.section-title span{color:var(--red)}
.grid{display:grid; grid-template-columns:repeat(12,1fr); gap:14px}
.col-12{grid-column:span 12}
.col-6{grid-column:span 6}
.col-4{grid-column:span 4}
.col-3{grid-column:span 3}
.card{
  background:rgba(70,70,70,.6);
  border:1px solid rgba(255,255,255,.06);
  border-radius:18px;
  padding:18px;
  box-shadow:0 6px 18px rgba(0,0,0,.25);
  transition:all .2s ease;
}
.card:hover{
  transform:translateY(-3px);
  border-color:rgba(198,40,40,.5);
  background:rgba(80,80,80,.75);
}
.card h3{margin:0 0 6px; font-size:16px; letter-spacing:.15px}
/* Ikonice u karticama */
/* Monohrom SVG ikonice u karticama */
.card h3{
  display:flex;
  align-items:center;
  gap:10px;
}

.card-icon{
  width:30px;
  height:30px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:10px;
  background:rgba(178,34,34,.10);
  border:1px solid rgba(178,34,34,.28);
  color:rgba(245,247,251,.95); /* boja ikone (SVG prati currentColor) */
  flex:0 0 auto;
}

.card-icon svg{
  width:18px;
  height:18px;
  display:block;
  stroke:currentColor;
  fill:none;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.card:hover .card-icon{
  background:rgba(178,34,34,.18);
  border-color:rgba(178,34,34,.40);
  color:#fff;
  transform:translateY(-1px);
}
.card p{margin:0;color:var(--muted);font-size:14px}

.seo{
  background:rgba(70,70,70,.5);
  border:1px solid rgba(255,255,255,.06);
  border-radius:18px;
  padding:20px;
  box-shadow:0 6px 18px rgba(0,0,0,.25);
  position:relative;
  overflow:hidden;
  min-height:220px;
}
.seo:before{
  content:"";
  position:absolute;
  inset:-10px;
  border-radius:22px;
  background:radial-gradient(520px 240px at 15% 20%, rgba(178,34,34,.12), rgba(0,0,0,0));
  filter:blur(18px);
  opacity:.6;
  z-index:-1;
}
.seo h2{margin:0 0 8px; font-size:16px; color:rgba(245,247,251,.94)}
.seo p{margin:0 0 10px; color:var(--muted)}
.seo p:last-child{margin-bottom:0}
.seo a{
  color:#ff5c5c;
  font-weight:700;
  border-bottom:1px dotted rgba(255,92,92,.6);
}

.seo a:hover{
  color:#ff8a8a;
  border-bottom-color:#ff8a8a;
}

.seo:after{
  content:"";
  position:absolute;
  right:-20px;
  top:50%;
  transform:translateY(-50%);

  width:420px;
  height:420px;

  background:url('/images/altina-badge.webp') no-repeat center;
  background-size:contain;

  opacity:.18; 
  filter:contrast(1.18) saturate(1.1);
  pointer-events:none;
  z-index:0;
}

.seo > *{
  position:relative;
  z-index:1; /* tekst iznad watermark-a */
  max-width:760px;
  margin-right:auto;
}

.text-link{
  color:#ff5c5c;
  font-weight:700;
  text-decoration:none;
  /* border-bottom:1px dotted rgba(255,92,92,.6); */
}

.text-link:hover{
  color:#ff8080;
  /* border-bottom-color:#ff8080; */
}

@media(max-width:980px){
  .seo{ min-height:200px; }
  .seo:after{
    width:260px;
    height:260px;
    right:-30px;
    bottom:-30px;
    opacity:.18;
  }
} 
/* Map */
.map{
  border:1px solid rgba(35,43,58,.85);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
  background:rgba(74,74,74,.30);
}
#mapCanvas{width:100%;height:380px}

/* Google Maps InfoWindow close button (VISIBLE + top-right) */
/* Google Maps InfoWindow close button – JASNO VIDLJIVO */
.gm-style .gm-ui-hover-effect{
  width:34px !important;
  height:34px !important;
  border-radius:50% !important;
  background:#b22222 !important;
  box-shadow:0 8px 20px rgba(0,0,0,.45) !important;
  opacity:1 !important;
  z-index:9999 !important;
}

.gm-style .gm-ui-hover-effect:hover{
  background:#c03030 !important;
}

.gm-style .gm-ui-hover-effect span{
  width:20px !important;
  height:20px !important;
  margin:7px !important;
  filter:invert(1) brightness(200%) !important;
}
/* Ukloni beli Google InfoWindow okvir */
.gm-style .gm-style-iw-c{
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

.gm-style .gm-style-iw-d{
  overflow: hidden !important;
  padding: 0 !important;
}

.gm-style .gm-style-iw-t::after{
  display: none !important; /* uklanja belu strelicu */
}

/* Footer */
.footer{
  margin-top:26px;
  padding:18px 0;
  border-top:1px solid rgba(35,43,58,.85);
  color:rgba(184,192,204,.92);
  font-size:13px;
  background:rgba(58,58,58,.70);
}
.footerInner{display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap}
.smallLinks{display:flex; gap:12px; flex-wrap:wrap}
.smallLinks a{color:rgba(184,192,204,.92)}
.smallLinks a:hover{color:#fff}

/* ===== FAQ CLEAN PREMIUM ===== */

.faq details{
  background:rgba(74,74,74,.65);
  border:1px solid rgba(35,43,58,.85);
  border-radius:14px;
  margin-bottom:12px;
  overflow:hidden;
  transition:all .2s ease;
}

.faq summary{
  list-style:none;
  display:flex;
  align-items:center;
  gap:12px;
  padding:16px 46px 16px 16px;
  font-weight:800;
  cursor:pointer;
  position:relative;
}

.faq summary::-webkit-details-marker{
  display:none;
}

.faq summary::before{
  content:none !important;
}

.faq-icon{
  width:24px;
  min-width:24px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
}

.faq-text{
  flex:1;
}

.faq details[open] summary::after{
  content:"-";
}

.faq details[open]{
  border-color:rgba(178,34,34,.65);
  box-shadow:0 6px 18px rgba(0,0,0,.25);
}

.faq summary .faq-icon{
  width:26px;
  min-width:26px;
  height:26px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:10px;
  background:rgba(178,34,34,.10);
  border:1px solid rgba(178,34,34,.28);
  color:rgba(245,247,251,.95);
  flex:0 0 auto;
}

.faq summary .faq-icon svg{
  width:16px;
  height:16px;
  display:block;
  stroke:currentColor;
  fill:none;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.faq summary .faq-text{ flex:1; }

.faq summary::after{
  content:"+";
  position:absolute;
  right:16px;
  top:50%;
  transform:translateY(-50%);
  font-size:20px;
  font-weight:900;
  color:#b22222;
}

.faq details[open] summary::after{ content:"-"; }

.faq details p{
  padding:0 16px 16px 54px;
  margin:0;
  color:var(--muted);
  font-size:14px;
}

/* Light tema (ako je koristiš) */
body[data-theme="light"] .faq summary .faq-icon{
  color:#1b2430;
  background:rgba(178,34,34,.08);
  border-color:rgba(178,34,34,.20);
}

/* Scroll reveal */
.reveal{opacity:0; transform:translateY(40px); transition:all .6s ease}
.reveal.active{opacity:1; transform:none}

/* ===== Sticky buttons (mobile only) ===== */
.sticky-call,
.sticky-map{
  position:fixed;
  bottom:18px;
  padding:17px 24px;
  border-radius:999px;
  font-weight:900;
  font-size:18px;
  cursor:pointer;
  line-height:1;
  box-shadow:0 14px 32px rgba(0,0,0,.45);
  z-index:999;
  color:#fff;
  border:1px solid rgba(255,255,255,.08);
  backdrop-filter:saturate(140%) blur(8px);
}

/* 🍎 Apple style glass buttons */

.sticky-call,
.sticky-map{
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);

  border:1px solid rgba(255,255,255,.18);
  box-shadow:
    0 10px 30px rgba(0,0,0,.45),
    inset 0 1px 0 rgba(255,255,255,.25);

  transition: all .25s ease;
}

/* MAP - plavi glass */
.sticky-map{
  left:14px;
  background:linear-gradient(
    135deg,
    rgba(26,115,232,.85),
    rgba(26,115,232,.65)
  );
}

/* CALL - crveni glass */
.sticky-call{
  right:14px;
  background:linear-gradient(
    135deg,
    rgba(178,34,34,.9),
    rgba(178,34,34,.7)
  );

  animation:callPulse 2.6s infinite;
} 

.sticky-call:hover,
.sticky-map:hover{
  transform: translateY(-2px) scale(1.03);
  box-shadow:
    0 14px 34px rgba(0,0,0,.55),
    inset 0 1px 0 rgba(255,255,255,.35);
}

/* click feedback */
.sticky-call:active,
.sticky-map:active{
  transform: scale(.95);
  box-shadow:
    0 6px 16px rgba(0,0,0,.4),
    inset 0 2px 6px rgba(0,0,0,.25);
} 
.sticky-call::after,
.sticky-map::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:999px;
  background:linear-gradient(
    180deg,
    rgba(255,255,255,.25),
    rgba(255,255,255,0)
  );
  opacity:.4;
  pointer-events:none;
}

/* pulse animation for call */
@keyframes callPulse{
  0%{ box-shadow:0 0 0 0 rgba(178,34,34,.7); }
  70%{ box-shadow:0 0 0 16px rgba(178,34,34,0); }
  100%{ box-shadow:0 0 0 0 rgba(178,34,34,0); }
}

.sticky-call:hover{
  background:#c03030;
}

.sticky-map:hover{
  background:#1a6be8;
}

/* desktop hide */
@media(min-width:900px){
  .sticky-call,
  .sticky-map{
    display:none;
  }
}

/* small mobile adjust */
@media (max-width: 768px) {
  .sticky-call,
  .sticky-map {
    bottom: 12px;
    width: calc(50% - 14px);
    min-width: 0;
    padding: 12px 10px;
    font-size: 15px;
    border-radius: 18px;
    justify-content: center;
  }

  .sticky-call {
    right: 8px;
  }

  .sticky-map {
    left: 8px;
  }
} 

/* Slika u koracima registracije */
.reg-image-slot{
    margin-top:18px;
    text-align:center;
}

.reg-image-slot img{
    display:block;
    width:100%;
    height:auto;
    border-radius:18px;
} 
.reg-image-slot a{
    display:block;
}

.reg-image-slot img{
    cursor:pointer;
    transition:transform .25s ease;
}

.reg-image-slot img:hover{
    transform:scale(1.02);
}

@media(max-width:980px){
  .hero-grid{grid-template-columns:1fr}
  h1{font-size:30px}
  .col-6,.col-4,.col-3{grid-column:span 12}
}
/* Lightbox */
.lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.78);
  display:none;
  align-items:center;
  justify-content:center;
  padding:18px;
  z-index:2000;
}

.lightbox.open{ display:flex; }

.lightbox img{
  max-width:min(1100px, 96vw);
  max-height:88vh;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 20px 60px rgba(0,0,0,.55);
}

.lightboxClose{
  position:absolute;
  top:16px;
  right:16px;
  width:42px;
  height:42px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(70,70,70,.85);
  color:#fff;
  font-size:26px;
  line-height:1;
  cursor:pointer;
}
.lightboxClose:hover{ background:rgba(178,34,34,.92); border-color:transparent; }
@media(max-width:980px){
  .logoImg{ max-width:200px; height:40px; }
}
@media(max-width:520px){
  .logoImg{ max-width:160px; height:36px; }
}

/* responsive */
@media(max-width:980px){
  .brandBadge{
    background-size: 280px auto;
    opacity:.08;
    background-position: 90% 10%;
  }
}
@media(max-width:980px){
  /* da SEO ima dovoljno prostora za watermark */
  .seo{ min-height:auto; }

  .seo:after{
    right:-30px;
    top:50%;
    transform:translateY(-50%);

    width:260px;
    height:260px;
    opacity:.06;
  }
} 

.open-now{
  font-weight:700;
  margin-top:8px;
  color:#8fff8f;
}
/* === Active nav + mobile header spacing === */
.nav a.active{
  border-color:rgba(178,34,34,.75);
  background:rgba(178,34,34,.16);
  color:#fff;
  font-weight:900;
  box-shadow:0 0 0 1px rgba(178,34,34,.22) inset;
}

@media(max-width:900px){
  .topbar-inner{
    padding-left:6px;
    padding-right:6px;
  }

  .brand{
    margin-left:4px;
  }

  .menuToggle{
    margin-right:4px;
  }

  .nav a.active{
    background:rgba(178,34,34,.22);
    border-color:rgba(178,34,34,.9);
  }
}

/* =========================
   PROMO INLINE BANER
========================= */
.promoBannerWrap{
  padding-top:6px;
  padding-bottom:6px;
}

.promoBanner{
  display:block;
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(35,43,58,.85);
  background:rgba(74,74,74,.65);
  box-shadow:0 10px 30px rgba(0,0,0,.35);
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position:relative;
}

.promoBanner:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 34px rgba(0,0,0,.40);
  border-color:rgba(178,34,34,.7);
}

.promoBanner::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:linear-gradient(
    135deg,
    rgba(255,255,255,.08),
    rgba(255,255,255,0) 35%,
    rgba(178,34,34,.12) 100%
  );
}

.promoBanner img{
  width:100%;
  height:auto;
  object-fit:cover;
}

.promoPopup{
  position:fixed;
  inset:0;
  z-index:9999;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:14px;
  background:rgba(0,0,0,.45);
  backdrop-filter:blur(2px);
}

.promoPopup[hidden]{
  display:none !important;
}

.promoPopupCard{
  position:relative;
  width:min(100%, 420px);
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  background:#1f232b;
  box-shadow:0 18px 50px rgba(0,0,0,.45);
  animation:popupFadeIn .18s ease;
}

@keyframes popupFadeIn{
  from{
    opacity:0;
    transform:translateY(8px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

.promoPopupLink{
  display:block;
}

.promoPopupLink img{
  display:block;
  width:100%;
  height:auto;
  aspect-ratio: 3 / 4;
  object-fit:cover;
}

.promoPopupClose{
  position:absolute;
  top:10px;
  right:10px;
  width:58px;
  height:58px;
  border:0;
  border-radius:999px;
  background:rgba(178,34,34,.96);
  color:#fff;
  font-size:38px;
  font-weight:900;
  line-height:1;
  cursor:pointer;
  z-index:3;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 10px 24px rgba(0,0,0,.38);
}

body.promoPopupOpen{
  overflow:hidden;
}

@media (min-width:769px){
  .promoPopup{
    display:none !important;
  }
}


.open-now{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  margin:8px 0 4px;
  border-radius:999px;
  background:rgba(74,74,74,.70);
  border:1px solid rgba(35,43,58,.85);
}

a:focus-visible,
button:focus-visible{
  outline:2px solid #fff;
  outline-offset:3px;
}

@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{
    animation:none !important;
    transition:none !important;
    scroll-behavior:auto !important;
  }
}  

/* samo za kalkulator - dugme Obriši */
.regcalcActions .btnGhost {
  background: #e6e6e6;
  color: #111;
  border: 1px solid #bbb;
}

.regcalcActions .btnGhost:hover {
  background: #dcdcdc;
} 

@media (max-width:768px){

  .cta{
    display:grid !important;
    grid-template-columns:1fr 1fr;
    gap:10px;
  }

  .cta .btn{
    width:100%;
    min-width:0;
    text-align:center;
    justify-content:center;
  }

  .cta .btn:last-child{
    grid-column:1 / -1;
  }
}

@media (max-width: 480px) {
  .sticky-call,
  .sticky-map {
    bottom: 36px;              /* 👈 IDE VIŠLJE OD DNA */

    padding: 18px 26px;       /* 👈 DEBLJA DUGMAD */
    font-size: 17px;

    border-radius: 26px;
    white-space: nowrap;

    width: auto;
    min-width: auto;
  }

  .sticky-map {
    left: 18px;
  }

  .sticky-call {
    right: 18px;
  }
} 

.trust{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:16px 0 22px;
}

.trust span{
  display:flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:14px;

  background:linear-gradient(
    135deg,
    rgba(178,34,34,.18),
    rgba(178,34,34,.08)
  );

  border:1px solid rgba(255,255,255,.08);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);

  color:#fff;
  font-size:14px;
  font-weight:800;
  line-height:1.2;

  box-shadow:0 6px 18px rgba(0,0,0,.25);

  opacity:0;
  transform:translateX(-20px) scale(.97);
  transition:
    transform .5s ease,
    opacity .5s ease,
    box-shadow .25s ease,
    border-color .25s ease;
}

.trust.show span{
  opacity:1;
  transform:translateX(0) scale(1);
}

.trust span:nth-child(1){ transition-delay:.05s; }
.trust span:nth-child(2){ transition-delay:.15s; }
.trust span:nth-child(3){ transition-delay:.25s; }

.trust span:hover{
  border-color:rgba(178,34,34,.5);
  box-shadow:
    0 8px 22px rgba(178,34,34,.25),
    0 0 0 1px rgba(178,34,34,.15) inset;
  transform:translateY(-1px);
}

@media (max-width: 768px){
  .trust{
    gap:8px;
    margin:14px 0 18px;
  }

  .trust span{
    width:100%;
    justify-content:flex-start;
    padding:12px 14px;
    border-radius:12px;
    font-size:15px;
  }

  .trust span:hover{
    transform:none;
  }
}

@media (prefers-reduced-motion: reduce){
  .trust span,
  .trust.show span{
    opacity:1;
    transform:none;
    transition:none;
  }
}

.reviewsTop{
  display:flex;
  align-items:center;
  gap:22px;
  padding:18px 22px;
  margin-bottom:16px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.08);
  background:linear-gradient(
    135deg,
    rgba(198,40,40,.14),
    rgba(255,255,255,.04)
  );
}

.reviewsTopScore{
  min-width:90px;
  text-align:center;
}

.reviewsTopNumber{
  font-size:52px;
  font-weight:900;
  line-height:1;
}

.reviewsTopStars{
  color:#ffd54a;
  font-size:18px;
  letter-spacing:1px;
}

.reviewsTopText{
  flex:1;
}

.reviewsTopText h3{
  margin:0 0 4px;
  font-size:16px;
  font-weight:800;
}

.reviewsTopText p{
  margin:0;
  font-size:14px;
  color:var(--muted);
}

#g-reviews-open{
  padding:10px 16px;
  font-size:14px;
  white-space:nowrap;
}

.reviewsTopText p{
  margin:0;
  color:var(--muted);
}

#g-reviews-grid .card{
  padding:14px;
}

#g-reviews-grid .card h3{
  font-size:15px;
  margin-bottom:8px;
}

#g-reviews-grid .card p{
  font-size:14px;
  line-height:1.55;
}

@media(max-width:768px){
  .reviewsTop{
    flex-direction:column;
    text-align:center;
  }

  #g-reviews-open{
    width:100%;
    justify-content:center;
  }
}  

.heroPosterLink{
  display:flex !important;
  cursor:pointer;
  text-decoration:none;
  transition:transform .2s ease;
}

.heroPosterLink:hover{
  transform:scale(1.01);
}