/* ============================================================
   OTKRIJBALKAN.BA — DESIGN SYSTEM
   Premium svjetski turistički portal — Airbnb × Apple × Nat Geo
   ============================================================ */

:root{
  /* --- boje --- */
  --green:#3F6B2A;
  --green-hover:#4E8135;
  --green-dark:#23351E;
  --hero-overlay:rgba(0,0,0,.45);
  --bg:#FAFAF7;
  --bg-subtle:#F4F2EC;
  --section-bg:#FFFFFF;
  --footer-bg:#0E1A12;
  --gold:#C89B3C;

  --text-heading:#1B1B1B;
  --text-body:#6B7280;
  --text-secondary:#8A8A8A;
  --text-on-dark:#FFFFFF;

  --line:rgba(27,27,27,0.08);
  --card-shadow:0 15px 40px rgba(0,0,0,.08);
  --card-shadow-hover:0 25px 60px rgba(0,0,0,.14);
  --btn-shadow:0 12px 35px rgba(63,107,42,.18);

  --radius-card:22px;
  --radius-btn:16px;
  --ease:cubic-bezier(.22,1,.36,1);
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  background:var(--bg);
  color:var(--text-body);
  font-family:'Inter',-apple-system,sans-serif;
  font-weight:400;
  -webkit-font-smoothing:antialiased;
  line-height:1.6;
}
::selection{background:var(--gold); color:#fff;}
img{display:block; max-width:100%;}
a{color:inherit; text-decoration:none;}
h1,h2,h3,h4{
  font-family:'Plus Jakarta Sans','Manrope',sans-serif;
  font-weight:700;
  color:var(--text-heading);
  margin:0;
  letter-spacing:-0.01em;
  line-height:1.15;
}
p{margin:0; color:var(--text-body);}
.wrap{max-width:1280px; margin:0 auto; padding:0 48px;}
@media(max-width:900px){.wrap{padding:0 24px;}}

/* eyebrow / kicker — koristi zlato VEOMA rijetko, samo za premium oznake */
.eyebrow{
  font-family:'Plus Jakarta Sans','Manrope',sans-serif;
  font-size:12px;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--green);
}
.eyebrow.gold{color:var(--gold);}

/* ============ scroll reveal ============ */
.reveal{opacity:0; transform:translateY(32px); transition:opacity .8s var(--ease), transform .8s var(--ease);}
.reveal.in{opacity:1; transform:translateY(0);}
.reveal-scale{opacity:0; transform:scale(.96); transition:opacity .9s var(--ease), transform .9s var(--ease);}
.reveal-scale.in{opacity:1; transform:scale(1);}
@media(prefers-reduced-motion:reduce){.reveal,.reveal-scale{opacity:1!important; transform:none!important;}}

/* ============ header ============ */
header.site-header{
  position:fixed; top:0; left:0; right:0; z-index:100;
  height:84px; display:flex; align-items:center;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(16px); -webkit-backdrop-filter:blur(16px);
  box-shadow:0 1px 0 var(--line), 0 12px 30px rgba(0,0,0,.04);
  transition:background .4s var(--ease), box-shadow .4s var(--ease);
}
/* stranice sa tamnom hero fotografijom ispod headera: providan dok se ne skroluje */
header.site-header.transparent{
  background:transparent; box-shadow:none; backdrop-filter:none; -webkit-backdrop-filter:none;
}
header.site-header.transparent.scrolled{
  background:rgba(255,255,255,.92); backdrop-filter:blur(16px); -webkit-backdrop-filter:blur(16px);
  box-shadow:0 1px 0 var(--line), 0 12px 30px rgba(0,0,0,.04);
}
header.site-header .wrap{
  display:grid; grid-template-columns:1fr auto 1fr; align-items:center; width:100%;
}
@media(max-width:980px){header.site-header .wrap{grid-template-columns:1fr auto;}}

.logo{display:flex; align-items:center; position:relative; height:40px; justify-self:start;}
.logo img{position:absolute; left:0; top:50%; transform:translateY(-50%); height:40px; width:auto; transition:opacity .4s var(--ease);}
/* podrazumijevano (solid header): tamna verzija loga vidljiva */
.logo img.logo-dark{opacity:1;}
.logo img.logo-light{opacity:0;}
/* na providnom headeru (hero stranice, prije scroll-a): svijetla verzija */
header.site-header.transparent:not(.scrolled) .logo img.logo-light{opacity:1; filter:drop-shadow(0 2px 8px rgba(0,0,0,.35));}
header.site-header.transparent:not(.scrolled) .logo img.logo-dark{opacity:0;}
.logo-spacer{width:148px; height:1px;}

nav.links{display:flex; gap:28px; justify-self:center;}
nav.links a{
  font-size:14px; font-weight:500; color:var(--text-heading); opacity:.75; position:relative; padding:6px 0;
  transition:opacity .3s, color .4s;
}
nav.links a:hover{opacity:1;}
nav.links a::after{content:''; position:absolute; left:0; bottom:-2px; width:0; height:2px; background:var(--gold); transition:width .3s var(--ease);}
nav.links a:hover::after{width:100%;}
/* na providnom headeru (prije scroll-a): bijeli tekst za čitljivost na fotografiji */
header.site-header.transparent:not(.scrolled) nav.links a{color:#fff; opacity:.95; text-shadow:0 1px 6px rgba(0,0,0,.45);}
@media(max-width:980px){nav.links{display:none;}}

.header-cta{justify-self:end; display:flex; align-items:center; gap:14px;}
@media(max-width:980px){.header-cta{display:none;}}

/* ============ mobilni meni ============ */
.menu-toggle{
  display:none; justify-self:end; width:40px; height:40px; align-items:center; justify-content:center;
  background:none; border:none; cursor:pointer; color:var(--text-heading); padding:0; position:relative; z-index:210;
}
header.site-header.transparent:not(.scrolled) .menu-toggle{color:#fff; filter:drop-shadow(0 1px 4px rgba(0,0,0,.35));}
@media(max-width:980px){.menu-toggle{display:flex;}}
.menu-toggle svg{transition:transform .3s var(--ease);}
.menu-toggle.open svg{transform:rotate(90deg);}

.mobile-menu{
  position:fixed; top:0; right:-100%; width:min(320px, 84vw); height:100vh; z-index:200;
  background:#fff; box-shadow:-20px 0 60px rgba(0,0,0,.15);
  display:flex; flex-direction:column; gap:4px; padding:100px 28px 40px;
  transition:right .4s var(--ease); overflow-y:auto;
}
.mobile-menu.open{right:0;}
.mobile-menu a{
  font-size:16px; font-weight:600; color:var(--text-heading); padding:14px 4px;
  border-bottom:1px solid var(--line);
}
.mobile-menu a.btn{border-bottom:none; margin-top:16px;}
.mobile-menu-overlay{
  position:fixed; inset:0; z-index:190; background:rgba(0,0,0,.4); opacity:0; visibility:hidden;
  transition:opacity .4s, visibility .4s;
}
.mobile-menu-overlay.open{opacity:1; visibility:visible;}
@media(min-width:981px){.mobile-menu, .mobile-menu-overlay{display:none;}}

/* ============ buttons ============ */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  height:54px; padding:0 28px; border-radius:var(--radius-btn);
  font-family:'Inter',sans-serif; font-size:14.5px; font-weight:600;
  border:none; cursor:pointer; transition:all .3s var(--ease); white-space:nowrap;
}
.btn.solid{
  background:var(--green); color:#fff; box-shadow:var(--btn-shadow);
}
.btn.solid:hover{background:var(--green-hover); transform:translateY(-2px); box-shadow:0 16px 40px rgba(63,107,42,.26);}
.btn:not(.solid){
  background:transparent; color:#fff; border:1px solid rgba(255,255,255,.45);
}
.btn:not(.solid):hover{background:#fff; color:var(--text-heading); border-color:#fff;}
.btn-sm{height:44px; padding:0 20px; font-size:13px;}
.btn.outline-dark{background:transparent; color:var(--text-heading); border:1px solid var(--line);}
.btn.outline-dark:hover{background:var(--text-heading); color:#fff; border-color:var(--text-heading);}

/* filter pill chips (partneri.php, blog.php category filters) */
.filter-chip{
  display:inline-flex; align-items:center; height:40px; padding:0 18px; border-radius:100px;
  font-size:12.5px; font-weight:600; border:1px solid var(--line); background:#fff; color:var(--text-body);
  transition:all .25s var(--ease);
}
.filter-chip:hover{border-color:var(--green);}
.filter-chip.active{background:var(--green); color:#fff; border-color:var(--green);}

/* ============ hero ============ */
.hero{
  position:relative; height:90vh; min-height:640px; display:flex; align-items:flex-end;
  overflow:hidden; background:var(--green-dark);
}
.hero-media{position:absolute; inset:0;}
.hero-media img{width:100%; height:100%; object-fit:cover; transform:scale(1.08); animation:heroZoom 18s var(--ease) forwards;}
@keyframes heroZoom{to{transform:scale(1);}}
.hero-media::after{
  content:''; position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,.25) 0%, var(--hero-overlay) 50%, rgba(0,0,0,.8) 100%);
}
.hero-inner{position:relative; z-index:2; width:100%; padding:0 48px 96px; max-width:1280px; margin:0 auto;}
@media(max-width:900px){.hero-inner{padding:0 24px 64px;}}
.hero-eyebrow{
  color:#fff; opacity:0; animation:riseIn .9s var(--ease) .25s forwards; display:flex; align-items:center; gap:10px;
  text-shadow:0 2px 12px rgba(0,0,0,.5);
}
.hero-eyebrow::before{content:''; width:22px; height:1px; background:var(--gold);}
.hero h1{
  color:#fff; font-size:clamp(40px,6.4vw,72px); font-weight:700; line-height:1.05; margin-top:20px; max-width:15ch;
  text-shadow:0 4px 24px rgba(0,0,0,.55), 0 1px 4px rgba(0,0,0,.4);
}
.hero h1 .line{display:block; overflow:hidden;}
.hero h1 .line span{display:block; transform:translateY(115%); opacity:0; animation:riseIn 1s var(--ease) forwards;}
.hero h1 .line:nth-child(1) span{animation-delay:.4s;}
.hero h1 .line:nth-child(2) span{animation-delay:.52s;}
@keyframes riseIn{to{opacity:1; transform:translateY(0);}}
.hero p.sub{
  color:rgba(255,255,255,.88); font-size:20px; font-weight:400; max-width:46ch; margin-top:22px; line-height:1.6;
  opacity:0; animation:riseIn .9s var(--ease) .68s forwards; text-shadow:0 2px 10px rgba(0,0,0,.4);
}
.hero-actions{display:flex; gap:16px; margin-top:38px; opacity:0; animation:riseIn .9s var(--ease) .85s forwards;}
@media(max-width:600px){.hero-actions{flex-direction:column;}}
.hero-search{
  margin-top:22px; max-width:480px; display:flex; align-items:center; gap:10px;
  background:rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.3); backdrop-filter:blur(10px);
  border-radius:100px; padding:6px 8px 6px 20px; opacity:0; animation:riseIn .9s var(--ease) 1s forwards;
  color:#fff;
}
.hero-search input{background:none; border:none; outline:none; color:#fff; font-family:'Inter',sans-serif; font-size:13.5px; flex:1; padding:10px 0;}
.hero-search input::placeholder{color:rgba(255,255,255,.6);}
.hero-search button{
  background:var(--gold); color:var(--green-dark); border:none; border-radius:100px; height:40px; padding:0 20px;
  font-size:12.5px; font-weight:700; cursor:pointer; transition:filter .3s;
}
.hero-search button:hover{filter:brightness(1.08);}
@media(max-width:420px){
  .hero-search{flex-direction:column; align-items:stretch; border-radius:20px; padding:14px;}
  .hero-search input{padding:6px 4px;}
  .hero-search button{width:100%; height:44px;}
}

.scroll-cue{
  position:absolute; right:48px; bottom:40px; z-index:2; display:flex; flex-direction:column; align-items:center; gap:10px;
  color:#fff; opacity:.7;
}
@media(max-width:900px){.scroll-cue{display:none;}}
.scroll-cue .bar{width:1px; height:48px; background:rgba(255,255,255,.35); position:relative; overflow:hidden;}
.scroll-cue .bar::after{content:''; position:absolute; top:-100%; left:0; width:100%; height:100%; background:var(--gold); animation:scrollcue 2.4s ease-in-out infinite;}
@keyframes scrollcue{0%{top:-100%;} 60%{top:100%;} 100%{top:100%;}}

/* ============ sections ============ */
section{position:relative;}
.section-pad{padding:120px 0;}
@media(max-width:900px){.section-pad{padding:72px 0;}}
.section-head{display:flex; justify-content:space-between; align-items:flex-end; gap:48px; margin-bottom:64px;}
@media(max-width:768px){.section-head{flex-direction:column; align-items:flex-start; gap:22px;}}
.section-head h2{font-size:clamp(30px,3.8vw,44px); line-height:1.12; max-width:16ch; margin-top:14px;}
.section-head .desc{max-width:340px; color:var(--text-body); font-size:15px; line-height:1.75;}

/* ============ cards ============ */
.dest-scroll{display:flex; gap:32px; overflow-x:auto; padding:6px 6px 20px; scroll-snap-type:x proximity; scrollbar-width:none;}
.dest-scroll::-webkit-scrollbar{display:none;}
.dest-card{
  flex:0 0 auto; width:100%; scroll-snap-align:start; border-radius:var(--radius-card); overflow:hidden;
  position:relative; height:440px; background:#fff; box-shadow:var(--card-shadow); cursor:pointer;
  transition:transform .35s var(--ease), box-shadow .35s var(--ease);
}
.dest-scroll .dest-card{width:340px;}
.dest-card:hover{transform:translateY(-6px); box-shadow:var(--card-shadow-hover);}
.dest-card img{position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition:transform .8s var(--ease);}
.dest-card:hover img{transform:scale(1.06);}
.dest-card::before{content:''; position:absolute; inset:0; z-index:1; background:linear-gradient(180deg, rgba(0,0,0,0) 42%, rgba(0,0,0,.78) 100%);}
.dest-tag{
  position:absolute; top:20px; left:20px; z-index:2; font-family:'Plus Jakarta Sans',sans-serif; font-size:10.5px;
  font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:var(--text-heading); background:#fff;
  padding:7px 14px; border-radius:100px;
}
.dest-info{position:absolute; left:24px; right:24px; bottom:24px; z-index:2; color:#fff;}
.dest-info .coord{font-size:11px; font-weight:500; color:rgba(255,255,255,.7); display:block; margin-bottom:6px; letter-spacing:.03em;}
.dest-info h3{font-size:22px; color:#fff; font-weight:700;}
.dest-info p{font-size:13px; color:rgba(255,255,255,.78); margin-top:6px;}
.dest-arrow{
  position:absolute; right:24px; bottom:24px; z-index:2; width:38px; height:38px; border-radius:50%;
  background:rgba(255,255,255,.15); backdrop-filter:blur(6px); display:flex; align-items:center; justify-content:center;
  color:#fff; opacity:0; transform:translate(-6px,6px); transition:all .35s var(--ease);
}
.dest-card:hover .dest-arrow{opacity:1; transform:translate(0,0); background:var(--gold);}
.dest-nav{display:flex; gap:12px; margin-top:8px;}
.dest-nav button{
  width:46px; height:46px; border-radius:50%; border:1px solid var(--line); background:#fff;
  color:var(--text-heading); cursor:pointer; display:flex; align-items:center; justify-content:center;
  transition:all .3s; box-shadow:var(--card-shadow);
}
.dest-nav button:hover{background:var(--green); color:#fff; border-color:var(--green);}
.empty-note{padding:56px; text-align:center; color:var(--text-secondary); font-size:14.5px; border:1px dashed var(--line); border-radius:var(--radius-card); background:#fff;}

/* generic content card (used on detail pages, forms) */
.panel-card{background:#fff; border-radius:var(--radius-card); box-shadow:var(--card-shadow); padding:40px;}

/* ============ CTA / promo band ============ */
.promo-band{
  border-radius:28px; padding:64px; text-align:center; background:linear-gradient(135deg, var(--gold) 0%, #dcb867 100%);
}
.promo-band h2{color:var(--green-dark); font-size:clamp(26px,3.4vw,40px); max-width:18ch; margin:16px auto 0;}
.promo-band .eyebrow{justify-content:center; color:var(--green-dark); display:flex;}

/* ============ newsletter ============ */
.newsletter-inline{
  background:var(--green-dark); border-radius:28px; padding:72px 64px; text-align:center;
}
@media(max-width:768px){.newsletter-inline{padding:48px 24px;}}
.newsletter-inline h2{color:#fff; font-size:clamp(28px,3.8vw,40px); max-width:16ch; margin:16px auto 0;}
.newsletter-inline p{color:rgba(255,255,255,.7); margin-top:14px; font-size:15px;}
.newsletter-form{margin:32px auto 0; max-width:440px; display:flex; gap:8px; background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.2); border-radius:100px; padding:6px 6px 6px 22px;}
@media(max-width:420px){
  .newsletter-form{flex-direction:column; border-radius:20px; padding:16px;}
  .newsletter-form input{padding:10px 4px; text-align:center;}
  .newsletter-form button{height:46px; width:100%;}
}
.newsletter-form input{background:none; border:none; outline:none; flex:1; color:#fff; font-size:14px;}
.newsletter-form input::placeholder{color:rgba(255,255,255,.5);}
.newsletter-form button{background:var(--gold); border:none; color:var(--green-dark); font-weight:700; font-size:13px; padding:0 24px; height:44px; border-radius:100px; cursor:pointer; transition:filter .3s;}
.newsletter-form button:hover{filter:brightness(1.08);}

/* ============ footer ============ */
footer.site-footer{
  position:relative; background:var(--footer-bg); color:#fff; padding:100px 0 32px; margin-top:0; overflow:hidden;
}
footer.site-footer .footer-bg{position:absolute; inset:0; opacity:.16; z-index:0;}
footer.site-footer .footer-bg img{width:100%; height:100%; object-fit:cover;}
footer.site-footer::before{content:''; position:absolute; inset:0; background:linear-gradient(180deg, var(--footer-bg) 0%, rgba(14,26,18,.85) 100%); z-index:0;}
footer.site-footer .wrap{position:relative; z-index:1;}
.footer-grid{display:grid; grid-template-columns:1.6fr 1fr 1fr 1fr; gap:48px; padding-bottom:64px; border-bottom:1px solid rgba(255,255,255,.1);}
@media(max-width:900px){.footer-grid{grid-template-columns:1fr 1fr; row-gap:40px;}}
.footer-brand p{color:rgba(255,255,255,.6); font-size:13.5px; margin-top:18px; max-width:32ch; line-height:1.75;}
.footer-social{display:flex; gap:10px; margin-top:26px;}
.footer-social a{width:38px; height:38px; border-radius:50%; border:1px solid rgba(255,255,255,.2); display:flex; align-items:center; justify-content:center; transition:all .3s;}
.footer-social a:hover{background:var(--gold); border-color:var(--gold); color:var(--green-dark);}
.footer-col h5{font-family:'Plus Jakarta Sans',sans-serif; font-size:11.5px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:rgba(255,255,255,.45); margin-bottom:20px;}
.footer-col a{display:block; font-size:13.5px; color:rgba(255,255,255,.75); margin-bottom:13px; transition:all .3s;}
.footer-col a:hover{color:#fff; transform:translateX(3px);}
.footer-bottom{display:flex; justify-content:space-between; align-items:center; padding-top:28px; font-size:12px; color:rgba(255,255,255,.4);}
@media(max-width:768px){.footer-bottom{flex-direction:column; gap:12px; text-align:center;}}
.footer-bottom a{color:rgba(255,255,255,.4);}

/* ============ detail pages ============ */
.detail-hero{position:relative; height:64vh; min-height:440px;}
.detail-hero img{width:100%; height:100%; object-fit:cover;}
.detail-hero::after{content:''; position:absolute; inset:0; z-index:1; background:linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.4) 35%, rgba(0,0,0,.88) 100%);}
.detail-hero .content{position:absolute; left:0; right:0; bottom:0; padding:56px 48px; max-width:1280px; margin:0 auto; z-index:2;}
@media(max-width:900px){.detail-hero .content{padding:40px 24px;}}
.detail-hero h1{color:#fff; font-size:clamp(34px,5vw,58px); text-shadow:0 4px 24px rgba(0,0,0,.55), 0 1px 4px rgba(0,0,0,.4);}
.detail-hero .eyebrow{text-shadow:0 2px 12px rgba(0,0,0,.5);}
.detail-body{max-width:760px; margin:0 auto; padding:72px 24px;}
.detail-body p{line-height:1.85; color:var(--text-body); margin-bottom:20px; font-size:16px;}
.detail-body-flex{margin:0!important; flex:1; min-width:300px; padding-top:0!important;}
@media(max-width:420px){.detail-body-flex{min-width:100%;}}
.detail-body h3{margin:32px 0 12px; font-size:21px;}

.inquiry-card{background:var(--green-dark); border-radius:var(--radius-card); padding:40px; color:#fff; max-width:420px; box-shadow:var(--card-shadow);}
.detail-layout{display:flex; gap:56px; padding-top:64px; flex-wrap:wrap; align-items:flex-start;}
@media(max-width:900px){
  .detail-layout{gap:32px; padding-top:36px;}
  .inquiry-card{max-width:100%; width:100%; padding:28px;}
}
.inquiry-card h3{color:#fff; font-size:20px; margin-bottom:18px;}
.inquiry-card label{font-size:12px; font-weight:600; display:block; margin:16px 0 7px; color:rgba(255,255,255,.65);}
.inquiry-card input, .inquiry-card textarea{width:100%; padding:12px 14px; border-radius:10px; border:none; font-size:13.5px; font-family:'Inter',sans-serif;}
.inquiry-card button{margin-top:20px; width:100%; height:50px; background:var(--gold); border:none; border-radius:10px; font-weight:700; cursor:pointer; color:var(--green-dark); transition:filter .3s;}
.inquiry-card button:hover{filter:brightness(1.08);}
.alert-success{background:#eaf3e6; color:var(--green); padding:16px 20px; border-radius:12px; font-size:13.5px; margin-bottom:22px; font-weight:500;}

/* ============ forms (public — promocija.php) ============ */
.form-field label{font-size:12.5px; font-weight:600; color:var(--text-heading); display:block; margin-bottom:7px;}
.form-field input, .form-field select, .form-field textarea{
  width:100%; padding:13px 16px; border-radius:12px; border:1px solid var(--line); margin-bottom:18px;
  font-size:13.5px; font-family:'Inter',sans-serif; background:#fff; color:var(--text-heading);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus{outline:none; border-color:var(--green);}
.form-row-2col{display:flex; gap:14px;}
@media(max-width:480px){.form-row-2col{flex-direction:column; gap:0;}}

/* ============ pricing cards (promocija.php) ============ */
.price-card{border-radius:var(--radius-card); padding:40px; background:#fff; box-shadow:var(--card-shadow); transition:all .35s var(--ease); position:relative;}
.price-card:hover{transform:translateY(-6px); box-shadow:var(--card-shadow-hover);}
.price-card.featured{background:var(--green-dark); color:#fff; box-shadow:0 25px 60px rgba(35,53,30,.35);}
.price-card .price{font-size:34px; font-weight:700; margin-top:16px; color:var(--text-heading);}
.price-card.featured .price{color:#fff;}
.price-card .price span{font-size:14px; font-weight:400; color:var(--text-secondary);}
.price-card.featured .price span{color:rgba(255,255,255,.6);}
.price-card ul{list-style:none; padding:0; margin:26px 0; font-size:13.5px; color:var(--text-body); line-height:2.3;}
.price-card.featured ul{color:rgba(255,255,255,.8);}
.price-badge{position:absolute; top:-13px; right:28px; background:var(--gold); color:var(--green-dark); font-size:11px; font-weight:700; padding:6px 16px; border-radius:100px;}
.pricing-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:32px;}
@media(max-width:900px){.pricing-grid{grid-template-columns:1fr; gap:22px;}}
.map-embed{height:600px;}
@media(max-width:768px){.map-embed{height:420px;}}

.card-grid{display:grid; grid-template-columns:repeat(auto-fill, minmax(var(--card-min,280px),1fr));}
@media(max-width:640px){.card-grid{grid-template-columns:1fr!important;}}

.blog-content{font-size:16px; line-height:1.85; color:var(--text-body);}
.blog-content p{margin-bottom:20px;}
.blog-content h2{font-size:24px; margin:32px 0 14px; color:var(--text-heading);}
.blog-content h3{font-size:19px; margin:28px 0 12px; color:var(--text-heading);}
.blog-content ul, .blog-content ol{margin:0 0 20px; padding-left:22px;}
.blog-content li{margin-bottom:8px;}
.blog-content a{color:var(--green); font-weight:600; text-decoration:underline;}
.blog-content blockquote{border-left:3px solid var(--gold); padding:4px 0 4px 20px; margin:24px 0; font-style:italic; color:var(--text-heading);}
.blog-content img{border-radius:14px; margin:20px 0;}

::-webkit-scrollbar{width:9px;}
::-webkit-scrollbar-track{background:var(--bg);}
::-webkit-scrollbar-thumb{background:#d4d0c4; border-radius:10px;}

/* ============ galerija + lightbox ============ */
.gallery-grid{display:grid; grid-template-columns:repeat(auto-fill, minmax(110px,1fr)); gap:10px; margin-bottom:10px;}
.gallery-thumb{border:none; padding:0; background:none; cursor:pointer; display:block; border-radius:12px; overflow:hidden; aspect-ratio:1/1; position:relative;}
.gallery-thumb img{width:100%; height:100%; object-fit:cover; transition:transform .5s var(--ease);}
.gallery-thumb:hover img{transform:scale(1.08);}
.gallery-thumb::after{
  content:''; position:absolute; inset:0; background:rgba(0,0,0,0); transition:background .3s;
}
.gallery-thumb:hover::after{background:rgba(0,0,0,.12);}

.lightbox{
  position:fixed; inset:0; z-index:300; background:rgba(10,15,10,.96);
  display:none; align-items:center; justify-content:center; padding:60px;
  backdrop-filter:blur(4px);
}
.lightbox.open{display:flex;}
.lightbox img{
  max-width:88vw; max-height:82vh; border-radius:10px; box-shadow:0 30px 80px rgba(0,0,0,.5);
  animation:lightboxIn .3s var(--ease); object-fit:contain;
}
@keyframes lightboxIn{from{opacity:0; transform:scale(.97);} to{opacity:1; transform:scale(1);}}
.lightbox-close, .lightbox-prev, .lightbox-next{
  position:absolute; background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.25); color:#fff;
  width:48px; height:48px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  cursor:pointer; transition:all .3s var(--ease); backdrop-filter:blur(6px);
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover{background:var(--gold); border-color:var(--gold); color:var(--green-dark);}
.lightbox-close{top:24px; right:24px; z-index:2;}
.lightbox-prev{left:24px; top:50%; transform:translateY(-50%); z-index:2;}
.lightbox-next{right:24px; top:50%; transform:translateY(-50%); z-index:2;}
.lightbox-counter{
  position:absolute; bottom:26px; left:50%; transform:translateX(-50%); color:rgba(255,255,255,.7);
  font-size:12.5px; font-family:'Inter',sans-serif; letter-spacing:.03em;
}
@media(max-width:768px){
  .lightbox{padding:20px;}
  .lightbox-prev,.lightbox-next{width:40px; height:40px;}
  .lightbox-prev{left:10px;} .lightbox-next{right:10px;}
  .lightbox-close{top:14px; right:14px;}
}
