:root{
  --bg:#0b0b0b;
  --text:#f5f5f5;
  --muted:#cfcfcf;
  --line: rgba(255,255,255,.12);

  --accent:#facc15;   /* ŽUTO */
  --accent2:#dc2626;  /* CRVENO */

  --shadow: 0 12px 40px rgba(0,0,0,.6);
  --radius: 18px;
  --max: 1120px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background:
    radial-gradient(1200px 600px at 15% 20%, rgba(250,204,21,.12), transparent 60%),
    radial-gradient(900px 500px at 85% 15%, rgba(220,38,38,.10), transparent 55%),
    var(--bg);
  color:var(--text);
  line-height:1.55;
  padding-bottom: 20x;
}

a{color:inherit}
.container{max-width:var(--max); margin:0 auto; padding:0 18px}
.muted{color:var(--muted)}
.small{font-size:13px}

h1,h2,h3{color:var(--accent)}

.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0); border:0;
}
.skip-link{
  position:absolute; left:-999px; top:12px;
  background:var(--accent); color:#000; padding:10px 12px; border-radius:10px;
  font-weight:900;
}
.skip-link:focus{left:12px; z-index:999}

.header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(0,0,0,.55);
  border-bottom:1px solid var(--line);
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  height:72px;
  gap:12px;
}

.brand{display:flex; gap:10px; align-items:center; text-decoration:none}
.brand__logo{
  width:34px;height:34px; border-radius:12px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, rgba(250,204,21,.95), rgba(220,38,38,.85));
  box-shadow: var(--shadow);
}
.brand__name{font-weight:900; letter-spacing:.2px}

.nav{display:flex; gap:12px; align-items:center}
.nav a{
  text-decoration:none;
  padding:8px 10px; border-radius:10px;
  color:var(--muted);
}
.nav a:hover{color:var(--text); background:rgba(255,255,255,.06)}

.nav-toggle{
  display:none;
  width:44px;height:44px;border-radius:12px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
}
.nav-toggle__bar{
  display:block; width:18px; height:2px; margin:4px auto;
  background:var(--text); border-radius:2px;
}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:8px;
  padding:12px 16px;
  border-radius:14px;
  text-decoration:none;
  font-weight:900;
  color:#fff;
  border:1px solid rgba(255,255,255,.14);
  background: linear-gradient(135deg, #dc2626, #991b1b);
  box-shadow: var(--shadow);
}
.btn:hover{transform: translateY(-1px); filter:brightness(1.08)}
.btn--ghost{
  background:rgba(255,255,255,.04);
  border:1px solid var(--line);
  box-shadow:none;
  color: var(--text);
}
.btn--small{padding:10px 12px; border-radius:12px}
.btn--block{width:100%}

.hero{padding:56px 0 22px}
.hero__grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:22px;
  align-items:start;
}

.badge{
  display:inline-flex;
  padding:6px 10px;
  border:1px solid rgba(220,38,38,.45);
  border-radius:999px;
  background: rgba(220,38,38,.14);
  color:#fecaca;
  font-size:14px;
}

h1{font-size: clamp(34px, 4vw, 52px); line-height:1.05; margin:14px 0 12px}
.lead{font-size:18px; color:var(--muted); max-width:60ch}
.hero__cta{display:flex; gap:12px; flex-wrap:wrap; margin:18px 0 14px}
.trust{display:flex; gap:14px; padding:0; margin:0; list-style:none; color:var(--muted); flex-wrap:wrap}

.mini{
  margin-top:14px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
}

.hero__card{
  border:1px solid rgba(220,38,38,.35);
  background: linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.85));
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}
.h3{margin:0 0 8px; font-size:20px}

.cta-box{display:grid; gap:10px; margin:14px 0 10px}
.info-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
  margin:12px 0 8px;
}
.info{
  border:1px solid var(--line);
  background: rgba(0,0,0,.22);
  border-radius:14px;
  padding:10px 12px;
}
.info__k{color:var(--muted); font-size:12px}
.info__v{font-weight:900; margin-top:2px}

.section{padding:56px 0}
.section--alt{
  background: linear-gradient(180deg, rgba(255,255,255,.03), transparent 60%);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.section--cta{padding:48px 0}
.section__header{margin-bottom:18px}
.section__header h2{margin:0 0 6px; font-size:30px}
.section__header p{margin:0}

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.card{
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  border-radius: var(--radius);
  padding:16px;
}
.card h3{margin:0 0 8px}
.card p{margin:0 0 10px; color:var(--muted)}
.link{color:var(--accent); text-decoration:none; font-weight:900}
.link:hover{text-decoration:underline}

.chips{display:flex; flex-wrap:wrap; gap:10px; margin-top:10px}
.chip{
  padding:8px 10px;
  border:1px solid var(--line);
  border-radius:999px;
  background: rgba(255,255,255,.03);
  color: var(--muted);
  font-weight:800;
  font-size:14px;
}

.callout{
  margin-top:18px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  border:1px solid rgba(220,38,38,.30);
  background: linear-gradient(135deg, rgba(220,38,38,.14), rgba(0,0,0,.25));
  border-radius: calc(var(--radius) + 6px);
  padding:16px;
}
.callout h3{margin:0 0 6px}
.callout p{margin:0}

.accordion details{
  border:1px solid var(--line);
  border-radius: 14px;
  padding:12px 14px;
  background: rgba(255,255,255,.03);
  margin-bottom:10px;
}
.accordion summary{cursor:pointer; font-weight:900}
.details__content{padding-top:10px; color:var(--muted)}

.cta{
  display:flex; justify-content:space-between; align-items:center;
  gap:16px;
  border:1px solid rgba(220,38,38,.30);
  background: linear-gradient(135deg, rgba(220,38,38,.14), rgba(0,0,0,.25));
  border-radius: calc(var(--radius) + 6px);
  padding:18px;
}
.cta__actions{display:flex; gap:12px; flex-wrap:wrap}

.footer{
  border-top:1px solid var(--line);
  padding:28px 0 18px;
}
.footer__grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap:16px;
}
.footer__links{display:grid; gap:8px}
.footer__links a{color:var(--muted); text-decoration:none}
.footer__links a:hover{color:var(--text)}
.footer__bottom{padding-top:14px; border-top:1px solid var(--line); margin-top:14px}

/* Mobile call bar */
.callbar{
  position: fixed;
  left: 0; right: 0; bottom: 0;
  padding: 10px 12px;
  background: rgba(0,0,0,.72);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(10px);
  z-index: 60;
}
.callbar__btn{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  padding:14px 16px;
  border-radius:16px;
  text-decoration:none;
  font-weight:900;
  color:#fff;
  border:1px solid rgba(255,255,255,.14);
  background: linear-gradient(135deg, #dc2626, #7f1d1d);
  box-shadow: var(--shadow);
}

/* Responsive nav */
@media (max-width: 980px){
  .hero__grid{grid-template-columns: 1fr}
  .cards{grid-template-columns: 1fr}
  .footer__grid{grid-template-columns: 1fr}
  .callout{flex-direction:column; align-items:stretch}
  .nav-toggle{display:inline-grid; place-items:center}
  .nav{
    position:absolute; right:18px; top:72px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:6px;
    padding:10px;
    width: min(320px, calc(100vw - 36px));
    border:1px solid var(--line);
    border-radius: 16px;
    background: rgba(0,0,0,.92);
    box-shadow: var(--shadow);
  }
  .nav a{padding:10px 12px}
  .nav.is-open{display:flex}
}

/* ===== HERO VIDEO (tekst preko videa) ===== */
.hero--video{
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero__video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.35) saturate(1.05);
}
.hero__overlay{
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(900px 500px at 15% 20%, rgba(250,204,21,.16), transparent 60%),
    radial-gradient(900px 500px at 85% 15%, rgba(220,38,38,.14), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.88));
}
.hero__grid{
  position: relative;
  z-index: 2;
  width: 100%;
}

/* ===== GALERIJA ===== */
.gallery { margin-top: 40px; }
.gallery__title { font-size: 24px; margin-bottom: 6px; text-align:center; }
.gallery__subtitle { color: var(--muted); margin-bottom: 16px; text-align:center; }

.gallery__grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.gallery__grid img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:16px;
  border:1px solid var(--line);
  cursor:pointer;
  transition: transform .25s ease, box-shadow .25s ease;
}
.gallery__grid img:hover{
  transform: scale(1.03);
  box-shadow: var(--shadow);
}
@media (max-width: 980px){
  .gallery__grid{grid-template-columns: repeat(2, 1fr);}
  .hero--video{min-height:92vh;}
}
@media (max-width: 520px){
  .gallery__grid{grid-template-columns: 1fr;}
  .gallery__grid img{height:200px;}
}

/* ===== LIGHTBOX ===== */
.lightbox{
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(0,0,0,.78);
  backdrop-filter: blur(6px);
  z-index: 999;
}
.lightbox.is-open{ display:flex; }
.lightbox__img{
  max-width: min(1100px, 94vw);
  max-height: 86vh;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: rgba(0,0,0,.2);
}
.lightbox__close{
  position:absolute;
  top:16px;
  right:16px;
  width:44px;
  height:44px;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.08);
  color: var(--text);
  font-size:26px;
  line-height:1;
  cursor:pointer;
}
.lightbox__close:hover{ background: rgba(255,255,255,.14); }
/* ===== FLOATING CALL BUTTONS (uvek u donjem desnom uglu) ===== */
.call-float{
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 9999;
  display: flex;
  gap: 10px;
  align-items: center;
}

/* dugmad */
.call-float__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
  color: #fff;
}

/* Viber (ljubičasto) */
.call-float__btn--viber{
  background: linear-gradient(135deg, #7c3aed, #4c1d95);
}

/* Telefon (crveno) */
.call-float__btn--call{
  background: linear-gradient(135deg, #dc2626, #7f1d1d);
}

/* hover */
.call-float__btn:hover{
  transform: translateY(-1px);
  filter: brightness(1.08);
}

/* Mobilni: malo veće i lakše za klik */
@media (max-width: 520px){
  .call-float{
    right: 12px;
    bottom: 12px;
  }
  .call-float__btn{
    height: 54px;
    padding: 0 18px;
    font-size: 16px;
  }
}
