/* ===== CSS VARIJABLE — crveno/grafit paleta (auto otpad BL) ===== */
:root {
  --navy:         #2d3338;
  --navy-dark:    #1a1f23;
  --navy-mid:     #4a5258;
  --navy-light:   #e8eaed;
  --gold:         #c1272d;
  --gold-dark:    #8b1c20;
  --gold-light:   #fde8e9;
  --teal:         #ea7317;
  --teal-dark:    #b8580d;
  --teal-light:   #fef0e0;
  --cream:        #f8f9fa;
  --green:        #065f46;
  --green-light:  #d1fae5;
  --bg:           #f4f5f7;
  --text:         #1a1f23;
  --text-muted:   #4a5258;
  --text-light:   #8a9298;
  --border:       #d6d9de;
  --border-light: #e8eaed;
  --shadow-sm:    0 1px 3px rgba(26,31,35,0.08);
  --shadow-md:    0 4px 18px rgba(26,31,35,0.12);
  --radius:       12px;
  --radius-lg:    18px;
  --font-d: 'Baloo 2', sans-serif;
  --font-b: 'Nunito', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-b);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ===== NAV ===== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248,249,250,0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 0 1.5rem;
  isolation: isolate;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  gap: 1rem;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-main {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--navy);
  letter-spacing: -.01em;
}
.nav-logo-sub {
  font-family: var(--font-b);
  font-weight: 600;
  font-size: .68rem;
  color: var(--text-light);
  letter-spacing: .02em;
}
.nav-links { display: flex; gap: 1.1rem; list-style: none; }
.nav-links a { font-size: .83rem; font-weight: 600; color: var(--text-muted); transition: color .2s; }
.nav-links a:hover { color: var(--gold); }

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background .2s;
}
.hamburger:hover { background: var(--bg); }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: none;
  position: fixed;
  top: 56px;
  left: 0;
  right: 0;
  background: #f8f9fa;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  z-index: 99;
  max-height: calc(100vh - 56px);
  overflow-y: auto;
}
.mobile-menu.open { display: block; }
.mobile-menu ul   { list-style: none; padding: .4rem 0; }
.mobile-menu li a {
  display: block;
  padding: .85rem 1.5rem;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: .92rem;
  color: var(--text);
  border-bottom: 1px solid var(--bg);
  transition: background .15s, color .15s;
}
.mobile-menu li:last-child a { border-bottom: none; }
.mobile-menu li a:hover { background: var(--bg); color: var(--gold); }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #0f1316 0%, #2d3338 50%, #0f1316 100%);
  color: white;
  padding: 3.5rem 1.5rem 2.75rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 60%, rgba(193,39,45,.16) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(234,115,23,.14) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 110%, rgba(15,19,22,.50) 0%, transparent 55%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-dark), var(--gold), transparent);
  opacity: .9;
}
.hero-inner { max-width: 1100px; margin: 0 auto; position: relative; }

.breadcrumb {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: .4rem;
  flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,.65); transition: color .2s; }
.breadcrumb a:hover { color: white; }
.breadcrumb-sep { opacity: .35; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(193,39,45,.18);
  border: 1px solid rgba(193,39,45,.4);
  color: #ff6b71;
  font-size: .8rem;
  font-weight: 700;
  padding: .3rem .85rem;
  border-radius: 20px;
  margin-bottom: 1rem;
  font-family: var(--font-d);
  letter-spacing: .04em;
}
.hero h1 {
  font-family: var(--font-d);
  font-size: clamp(1.85rem, 4.5vw, 2.9rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: .85rem;
}
.hero h1 span { color: var(--gold); }
.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,.72);
  max-width: 640px;
  margin-bottom: 2.25rem;
  line-height: 1.65;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .85rem;
  max-width: 580px;
}
.stat-box {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding: .85rem .75rem;
  text-align: center;
}
.stat-num {
  font-family: var(--font-d);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.stat-label {
  font-size: .7rem;
  color: rgba(255,255,255,.6);
  margin-top: .25rem;
  font-weight: 600;
}

/* ===== HERO IMAGE ===== */
.hero-image-wrap {
  width: 100%;
  max-height: 480px;
  overflow: hidden;
  background: #0f1316;
}
.hero-image {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* ===== LAYOUT ===== */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }

/* ===== INFO BOX ===== */
.info-box {
  display: flex;
  gap: .9rem;
  align-items: flex-start;
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--gold);
  padding: 1.1rem 1.25rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.info-box-icon { font-size: 1.15rem; flex-shrink: 0; margin-top: .05rem; }
.info-box-text { font-size: .88rem; color: var(--text-muted); line-height: 1.65; }
.info-box-text strong { color: var(--navy); }

/* ===== SECTION HEADER ===== */
.section-header { margin: 3rem 0 1.5rem; }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  margin-bottom: .5rem;
}
.section-tag.gold  { color: var(--gold-dark); }
.section-tag.teal  { color: var(--teal-dark); }

.section-header h2 {
  font-family: var(--font-d);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: .4rem;
}
.section-header p, .section-desc {
  font-size: .9rem;
  color: var(--text-muted);
  max-width: 620px;
}

/* ===== FILTER BAR ===== */
.filter-bar {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  padding: 1.1rem 1.25rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.filter-row {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
}
.filter-label {
  font-size: .78rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  white-space: nowrap;
  min-width: 55px;
}
.filter-buttons { display: flex; gap: .4rem; flex-wrap: wrap; }
.filter-btn {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: .38rem .85rem;
  font-family: var(--font-b);
  font-size: .8rem;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  transition: all .18s;
  white-space: nowrap;
}
.filter-btn:hover  { border-color: var(--gold); color: var(--gold-dark); }
.filter-btn.active { background: var(--gold); border-color: var(--gold); color: white; }
.search-wrap {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: .38rem .75rem;
  flex: 1;
  max-width: 320px;
}
.search-icon { font-size: .85rem; color: var(--text-light); }
.search-wrap input {
  border: none; background: transparent;
  font-family: var(--font-b); font-size: .85rem;
  color: var(--text); outline: none; flex: 1; min-width: 0;
}
.search-wrap input::placeholder { color: var(--text-light); }

/* ===== NO RESULTS ===== */
.no-results {
  display: none;
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  color: var(--text-muted);
  font-size: .9rem;
  margin-bottom: 1.5rem;
}
.no-results.show { display: block; }

/* ===== CARDS GRID ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 1.1rem;
  margin-bottom: 1rem;
}

/* ===== CARD ===== */
.salon-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  padding: 1.2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: .65rem;
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.salon-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--gold);
}
.card-kratko { border-left: 3px solid var(--teal); }
.card-kratko:hover { border-color: var(--teal); }
.card-oboje  { border-left: 3px solid #2563eb; }
.card-oboje:hover  { border-color: #2563eb; }

.card-head {
  display: flex;
  gap: .8rem;
  align-items: flex-start;
}
.card-icon-wrap {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.agent-icon   { background: var(--gold-light); }
.kratko-icon  { background: var(--teal-light); }
.oboje-icon   { background: #dbeafe; }

.card-title-wrap { flex: 1; min-width: 0; }
.card-title {
  font-family: var(--font-d);
  font-size: .97rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: .3rem;
}
.card-badges { display: flex; gap: .3rem; flex-wrap: wrap; }
.badge {
  font-size: .68rem;
  font-weight: 700;
  padding: .18rem .55rem;
  border-radius: 5px;
  letter-spacing: .03em;
  white-space: nowrap;
}
.badge-agent    { background: var(--gold-light);  color: var(--gold-dark);  border: 1px solid rgba(193,39,45,.3); }
.badge-kratko   { background: var(--teal-light);  color: var(--teal-dark);  border: 1px solid rgba(234,115,23,.3); }
.badge-portal   { background: #dbeafe;             color: #1e3a8a;           border: 1px solid rgba(30,58,138,.25); }
.badge-direktno { background: #f3e8ff;             color: #6b21a8;           border: 1px solid rgba(107,33,168,.25); }
.badge-oboje    { background: #dbeafe;             color: #1e40af;           border: 1px solid rgba(30,64,175,.25); }
.badge-premium  { background: #fff7ed;             color: #c2410c;           border: 1px solid rgba(194,65,12,.25); }
.badge-servis   { background: #ecfdf5;             color: #065f46;           border: 1px solid rgba(6,95,70,.25); }

.card-desc {
  font-size: .81rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.card-meta { display: flex; flex-direction: column; gap: .3rem; }
.meta-row {
  display: flex; gap: .45rem; align-items: baseline;
  font-size: .82rem; color: var(--text-muted); line-height: 1.5;
}
.meta-icon { flex-shrink: 0; font-size: .8rem; }
.meta-row a { color: var(--gold-dark); font-weight: 600; transition: color .15s; }
.meta-row a:hover { color: var(--navy); text-decoration: underline; }

.card-footer {
  display: flex;
  align-items: flex-end;
  gap: .45rem;
  padding-top: .35rem;
  border-top: 1px solid var(--border-light);
  margin-top: auto;
}
.phone-stack { display: flex; gap: .4rem; flex-wrap: wrap; width: 100%; }
.phone-btn {
  display: inline-flex; align-items: center; gap: .35rem;
  background: var(--gold); color: white;
  border: none; border-radius: 8px;
  padding: .48rem .9rem;
  font-family: var(--font-b); font-size: .81rem; font-weight: 700;
  cursor: pointer; text-decoration: none;
  transition: background .18s, transform .15s; white-space: nowrap;
}
.phone-btn:hover { background: var(--gold-dark); transform: scale(1.02); color: white; }
.phone-btn-sec {
  background: white; color: var(--navy);
  border: 1.5px solid var(--border);
}
.phone-btn-sec:hover {
  background: var(--navy-light); border-color: var(--navy); color: var(--navy); transform: scale(1.02);
}
.phone-btn-web {
  background: var(--gold-light); color: var(--gold-dark);
  border: 1.5px solid rgba(193,39,45,.3);
}
.phone-btn-web:hover {
  background: var(--gold); color: white; border-color: var(--gold);
}
.phone-btn-mail {
  background: #eff6ff; color: #1e40af;
  border: 1.5px solid #bfdbfe;
}
.phone-btn-mail:hover {
  background: #dbeafe; color: #1e3a8a; border-color: #93c5fd;
}

/* ===== MAP ===== */
.map-wrap {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1rem;
}
.map-legend {
  display: flex; gap: 1.25rem;
  padding: .85rem 1.25rem;
  border-bottom: 1px solid var(--border-light);
  background: var(--gold-light);
  flex-wrap: wrap;
}
.legend-item {
  display: flex; align-items: center; gap: .45rem;
  font-size: .78rem; font-weight: 600; color: var(--text-muted);
}
.legend-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.ld-dugoro  { background: var(--gold-dark); }
.ld-kratko  { background: var(--teal); }
.ld-oboje   { background: #2563eb; }
#map { height: 460px; }
.map-note {
  padding: .7rem 1.25rem;
  font-size: .77rem; color: var(--text-light);
  border-top: 1px solid var(--border-light);
  background: var(--gold-light);
}

/* ===== PRICE TABLE ===== */
.price-table-wrap {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.price-table-wrap h3 {
  font-family: var(--font-d);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}
.price-table { width: 100%; border-collapse: collapse; font-size: .86rem; }
.price-table th {
  background: var(--navy);
  color: white;
  padding: .6rem .9rem;
  text-align: left;
  font-family: var(--font-d);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
}
.price-table td {
  padding: .6rem .9rem;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-muted);
}
.price-table tr:last-child td { border-bottom: none; }
.price-table tr:nth-child(even) td { background: var(--cream); }
.price-note { font-size: .78rem; color: var(--text-light); margin-top: .75rem; font-style: italic; }

/* ===== VODIČ ===== */
.guide-grid { display: flex; flex-direction: column; gap: .65rem; margin-bottom: 3rem; }
.guide-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.guide-card-header {
  width: 100%; text-align: left; background: none; border: none;
  cursor: pointer; padding: 1.15rem 1.3rem;
  display: flex; align-items: center; gap: 1rem;
  transition: background .15s;
}
.guide-card-header:hover { background: var(--cream); }
.guide-card-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; flex-shrink: 0;
}
.guide-card-title-wrap { flex: 1; min-width: 0; }
.guide-card-title {
  font-family: var(--font-d); font-size: 1.02rem; font-weight: 700;
  color: var(--navy); display: block; line-height: 1.25;
}
.guide-card-subtitle { font-size: .8rem; color: var(--text-muted); display: block; margin-top: .15rem; }
.guide-arrow {
  flex-shrink: 0; font-size: 1.25rem; color: var(--text-muted);
  transition: transform .3s; font-weight: 300; line-height: 1;
}
.guide-card-header[aria-expanded="true"] .guide-arrow { transform: rotate(45deg); color: var(--gold-dark); }
.guide-card-header[aria-expanded="true"] .guide-card-title { color: var(--gold-dark); }

.guide-card-body { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.guide-card-inner { padding: 0 1.3rem 1.3rem; border-top: 1px solid var(--border-light); }

.guide-intro { font-size: .88rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1.1rem; padding-top: .9rem; }
.guide-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; padding-top: .9rem; margin-bottom: 1.1rem; }
.guide-sub-heading { font-family: var(--font-d); font-size: .9rem; font-weight: 700; color: var(--navy); margin-bottom: .6rem; }
.guide-list { list-style: none; display: flex; flex-direction: column; gap: .4rem; }
.guide-list li {
  font-size: .83rem; color: var(--text-muted); line-height: 1.55;
  padding-left: 1.1rem; position: relative;
}
.guide-list li::before { content: '›'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

.guide-ordered-list {
  list-style: none; counter-reset: guide-counter;
  display: flex; flex-direction: column; gap: .45rem; margin-bottom: 1.1rem;
}
.guide-ordered-list li {
  counter-increment: guide-counter; font-size: .84rem;
  color: var(--text-muted); line-height: 1.55; padding-left: 1.8rem; position: relative;
}
.guide-ordered-list li::before {
  content: counter(guide-counter); position: absolute; left: 0; top: .05em;
  width: 1.3rem; height: 1.3rem; background: var(--gold); color: white;
  font-size: .72rem; font-weight: 700; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.guide-tip-box {
  background: var(--gold-light); border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0; padding: .85rem 1rem;
  font-size: .84rem; color: var(--text-muted); line-height: 1.65; margin-top: 1rem;
}
.guide-tip-box strong { color: var(--navy); }

.price-signal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem; margin-bottom: 1rem; }
.price-signal {
  border-radius: var(--radius); padding: .85rem;
  display: flex; gap: .6rem; align-items: flex-start;
  font-size: .8rem; line-height: 1.5;
}
.price-signal strong { color: var(--navy); font-size: .82rem; }
.price-signal span   { color: var(--text-muted); font-size: .78rem; }
.ps-ok     { background: #edf7f0; border: 1px solid #b7dcc6; }
.ps-warn   { background: #fef8e8; border: 1px solid #e8d68a; }
.ps-danger { background: #fdf0ef; border: 1px solid #dba8a5; }
.ps-icon {
  width: 24px; height: 24px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .8rem; flex-shrink: 0;
}
.ps-ok .ps-icon     { background: #2e6b50; color: white; }
.ps-warn .ps-icon   { background: #b8920a; color: white; }
.ps-danger .ps-icon { background: #b94040; color: white; }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 3rem; }
.faq-item {
  background: white; border-radius: var(--radius);
  border: 1px solid var(--border-light); overflow: hidden; box-shadow: var(--shadow-sm);
}
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 1rem 1.2rem; font-family: var(--font-d); font-size: .92rem; font-weight: 700;
  color: var(--text); display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; transition: background .15s;
}
.faq-q:hover     { background: var(--bg); }
.faq-q.open      { color: var(--gold-dark); }
.faq-arrow       { flex-shrink: 0; font-size: 1.05rem; color: var(--text-muted); transition: transform .3s; }
.faq-q.open .faq-arrow { transform: rotate(45deg); color: var(--gold-dark); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a-inner {
  padding: 0 1.2rem 1rem; font-size: .88rem;
  color: var(--text-muted); line-height: 1.65;
}
.faq-a-inner strong { color: var(--navy); }

/* ===== SHARE ===== */
.share-box {
  background: white; border-radius: var(--radius-lg);
  border: 1px solid var(--border-light); padding: 1.6rem;
  text-align: center; box-shadow: var(--shadow-sm); margin-bottom: 3rem;
}
.share-box h3 { font-family: var(--font-d); font-size: 1rem; font-weight: 700; margin-bottom: .35rem; color: var(--navy); }
.share-box p  { font-size: .84rem; color: var(--text-muted); margin-bottom: 1rem; }
.share-btns   { display: flex; gap: .55rem; justify-content: center; flex-wrap: wrap; }
.share-btn {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .45rem 1rem; border-radius: 9px;
  font-size: .81rem; font-weight: 700; cursor: pointer;
  border: 2px solid transparent; transition: all .2s; font-family: var(--font-b);
}
.s-fb    { background: #1877f2; color: white; }
.s-fb:hover    { background: #0d65d8; }
.s-viber { background: #665cac; color: white; }
.s-viber:hover { background: #5046a0; }
.s-wa    { background: #25d366; color: white; }
.s-wa:hover    { background: #1db954; }
.s-copy  { background: white; color: var(--text); border-color: var(--border); }
.s-copy:hover  { border-color: var(--gold); color: var(--gold); }

/* ===== UPDATE NOTE ===== */
.update-note {
  display: block; background: white; border-radius: var(--radius);
  border: 1px solid var(--border-light); padding: .85rem 1.2rem;
  margin-bottom: 3rem; font-size: .81rem; color: var(--text-muted);
  line-height: 1.65; box-shadow: var(--shadow-sm);
}
.update-note a { color: var(--gold-dark); font-weight: 700; }
.update-note a:hover { text-decoration: underline; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy-dark); color: rgba(255,255,255,.55);
  padding: 2rem 1.5rem; text-align: center;
}
.footer-links {
  display: flex; justify-content: center; gap: 1.5rem;
  flex-wrap: wrap; margin-bottom: .85rem;
}
.footer-links a { color: rgba(255,255,255,.7); font-size: .83rem; font-weight: 600; transition: color .2s; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: .76rem; }

/* ===== SCROLL MARGIN ===== */
#polovni, #novi, #mapa, #vodic, #faq {
  scroll-margin-top: 70px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .guide-two-col     { grid-template-columns: 1fr; gap: 1rem; }
  .price-signal-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero-stats       { grid-template-columns: repeat(2, 1fr); }
  .hero-image-wrap  { max-height: 240px; }
  .hero-image       { height: 240px; }
  .nav-links        { display: none; }
  .hamburger        { display: flex; }
  .filter-row       { flex-direction: column; align-items: flex-start; }
  .filter-buttons   { flex-wrap: wrap; gap: .4rem; }
  .search-wrap      { width: 100%; max-width: 100%; }
  .search-wrap input{ width: 100%; }
  .cards-grid       { grid-template-columns: 1fr; }
  .section-header   { margin: 2rem 0 1.25rem; }
  .section-header h2{ font-size: 1.45rem; }
  .map-legend       { gap: .75rem; }
  #map              { height: 320px; }
  .filter-btn  { min-height: 44px; display: flex; align-items: center; justify-content: center; padding: .5rem 1rem; }
  .phone-btn   { min-height: 44px; padding: .55rem .9rem; font-size: .82rem; }
  .share-btn   { min-height: 44px; padding: .55rem 1rem; }
  .card-footer { flex-direction: column; align-items: flex-start; }
  .phone-stack { width: 100%; flex-direction: column; }
  .phone-btn   { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .hero         { padding: 2.25rem 1rem 2rem; }
  .container    { padding: 0 1rem; }
  .hero h1      { font-size: 1.65rem; }
  .hero-sub     { font-size: .92rem; }
  .stat-num     { font-size: 1.4rem; }
  .stat-label   { font-size: .65rem; }
  .section-header h2  { font-size: 1.3rem; }
  .guide-card-header  { padding: .9rem 1rem; }
  .guide-card-inner   { padding: 0 1rem 1rem; }
  .hero-image-wrap    { max-height: 180px; }
  .hero-image         { height: 180px; }
}
