/* ===== CSS VARIJABLE ===== */
:root {
  --teal:        #00838f;
  --teal-dark:   #005f6b;
  --teal-light:  #e0f7fa;
  --navy:        #1565c0;
  --navy-dark:   #0d47a1;
  --navy-light:  #e3f2fd;
  --indigo:      #5c35be;
  --indigo-dark: #3a1f9a;
  --indigo-light:#ede7f6;
  --bg:           #f5f9fc;
  --text:         #0d1b2a;
  --text-muted:   #4a6070;
  --text-light:   #8fa5b5;
  --border:       #d6e8ef;
  --shadow-sm:    0 1px 3px rgba(0,60,80,0.07);
  --shadow-md:    0 4px 16px rgba(0,60,80,0.11);
  --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(255,255,255,0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 0 1.5rem;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  gap: 1rem;
}
.nav-logo {
  font-family: var(--font-d);
  color: var(--teal);
  display: inline-flex;
  flex-direction: column;
  line-height: 1.05;
  gap: 2px;
  white-space: nowrap;
}
.nav-logo .logo-main { font-weight: 800; font-size: .98rem; color: var(--teal); letter-spacing: .005em; }
.nav-logo .logo-sub  { font-weight: 600; font-size: .65rem; color: var(--text-muted); letter-spacing: .06em; text-transform: lowercase; }
.nav-logo:hover .logo-main { color: var(--teal-dark); }
.nav-links { display: flex; gap: 1.25rem; list-style: none; }
.nav-links a { font-size: .86rem; font-weight: 600; color: var(--text-muted); transition: color .2s; }
.nav-links a:hover { color: var(--teal); }

/* ===== 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: absolute;
  top: 56px;
  left: 0;
  right: 0;
  background: white;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  z-index: 99;
}
.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(--teal); }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #052942 0%, #0a3d5c 40%, #074557 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 15% 60%, rgba(0,131,143,.2) 0%, transparent 50%),
    radial-gradient(circle at 85% 20%, rgba(21,101,192,.15) 0%, transparent 45%);
  pointer-events: none;
}
.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(0,210,230,.12);
  border: 1px solid rgba(0,210,230,.3);
  color: #7ecfdb;
  font-size: .8rem;
  font-weight: 700;
  padding: .3rem .85rem;
  border-radius: 20px;
  margin-bottom: 1rem;
  font-family: var(--font-d);
}
.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: #7ecfdb; }
.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,.74);
  max-width: 660px;
  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: #7ecfdb;
  display: block;
  line-height: 1;
}
.stat-label {
  font-size: .7rem;
  color: rgba(255,255,255,.6);
  margin-top: .25rem;
  font-weight: 600;
}

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

.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;
  color: var(--teal);
  margin-bottom: .5rem;
}
.section-tag.teal { color: var(--teal-dark); }
.section-header h2 {
  font-family: var(--font-d);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: .45rem;
}
.section-header p { color: var(--text-muted); font-size: .94rem; max-width: 660px; }

.section-divider {
  border: none;
  border-top: 2px dashed var(--border);
  margin: 1rem 0 1.5rem;
}

/* ===== FILTER BAR ===== */
.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1rem 1.25rem;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  flex-wrap: wrap;
}
.filter-buttons {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
}
.filter-label {
  font-size: .76rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  white-space: nowrap;
}
.filter-btn {
  border: 2px solid var(--border);
  background: white;
  color: var(--text-muted);
  font-family: var(--font-b);
  font-size: .84rem;
  font-weight: 600;
  padding: .42rem 1rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all .2s;
}
.filter-btn:hover  { border-color: var(--teal); color: var(--teal); }
.filter-btn.active { background: var(--teal); border-color: var(--teal); color: white; }

.search-wrap input:focus { border-color: var(--teal); }

/* ===== CATEGORY SUB HEADERS ===== */
.section-sub-header {
  margin: 2rem 0 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}
.section-sub-header p {
  font-size: .88rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
  padding-top: .2rem;
}
.cat-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--font-d);
  font-size: .82rem;
  font-weight: 700;
  padding: .35rem .9rem;
  border-radius: 20px;
  white-space: nowrap;
}
.cat-full    { background: var(--navy-light); color: var(--navy-dark); }
.cat-digital { background: var(--teal-light); color: var(--teal-dark); }
.cat-pr      { background: var(--indigo-light); color: var(--indigo-dark); }

/* ===== CARDS ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.15rem;
  margin-bottom: 1rem;
}
.salon-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .22s, transform .22s;
}
.salon-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.cat-full-top    { background: linear-gradient(135deg,#e3f2fd,#f5f9fc); }
.cat-digital-top { background: linear-gradient(135deg,#e0f7fa,#f5f9fc); }
.cat-pr-top      { background: linear-gradient(135deg,#ede7f6,#f5f9fc); }
.card-icon {
  font-size: 1.45rem;
  line-height: 1;
}
.card-badges {
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.badge {
  font-size: .68rem;
  font-weight: 700;
  padding: .2rem .55rem;
  border-radius: 10px;
  white-space: nowrap;
  font-family: var(--font-d);
}
.badge-full  { background: var(--navy-light); color: var(--navy-dark); }
.badge-digital { background: var(--teal-light); color: var(--teal-dark); }
.badge-pr    { background: var(--indigo-light); color: var(--indigo-dark); }
.badge-cert  { background: #fff3e0; color: #e65100; }
.badge-exp   { background: #f3e5f5; color: #6a1b9a; }
.badge-local { background: #e8f5e9; color: #2e7d32; }

.card-title {
  font-family: var(--font-d);
  font-size: 1.04rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
}
.card-addr {
  font-size: .8rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.card-desc {
  font-size: .84rem;
  color: var(--text-muted);
  line-height: 1.58;
  flex: 1;
}

.tag {
  font-size: .71rem;
  font-weight: 700;
  background: var(--bg);
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: .18rem .55rem;
  border-radius: 8px;
  font-family: var(--font-d);
}
.card-footer {
  padding: .8rem 1.1rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: .65rem;
  flex-wrap: wrap;
  background: #fafcfe;
}
.phone-btn {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: var(--teal);
  color: white;
  font-family: var(--font-b);
  font-size: .82rem;
  font-weight: 700;
  padding: .45rem .9rem;
  border-radius: 9px;
  border: none;
  cursor: pointer;
  transition: background .2s;
  text-decoration: none;
  white-space: nowrap;
}
.phone-btn:hover { background: var(--teal-dark); }

.phone-na:hover { background: var(--border); }



/* ===== NO RESULTS ===== */
.no-results {
  display: none;
  text-align: center;
  padding: 2.5rem;
  color: var(--text-muted);
  font-size: .92rem;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px dashed var(--border);
  margin: 1rem 0 2rem;
}
.no-results.show { display: block; }

/* ===== MAP ===== */
#map {
  height: 420px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 3rem;
}
.map-legend {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: .85rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-muted);
}
.legend-item { display: flex; align-items: center; gap: .4rem; }
.legend-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  display: inline-block;
}

/* ===== GUIDE ===== */
.guide-intro-box {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.guide-intro-box p {
  font-size: .93rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.15rem;
  margin-bottom: 3rem;
}
.guide-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 1.4rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}
.guide-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.guide-icon {
  width: 48px; height: 48px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: .9rem;
}
.guide-icon-1 { background: var(--teal-light); }
.guide-icon-2 { background: var(--navy-light); }
.guide-icon-3 { background: #fce4ec; }
.guide-icon-4 { background: #fff8e1; }
.guide-icon-5 { background: #e8f5e9; }
.guide-icon-6 { background: var(--indigo-light); }
.guide-card h3 {
  font-family: var(--font-d);
  font-size: .98rem;
  font-weight: 700;
  margin-bottom: .5rem;
  color: var(--text);
}
.guide-card p {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: .7rem;
}
.guide-why {
  font-size: .78rem;
  color: var(--teal-dark);
  background: var(--teal-light);
  border-radius: 8px;
  padding: .45rem .75rem;
  font-weight: 600;
  line-height: 1.45;
}

/* ===== KARIJERA ===== */
.karijera-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.15rem;
  margin-bottom: 2rem;
}
.karijera-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 1.4rem;
  box-shadow: var(--shadow-sm);
}
.karijera-card.kc-teal { border-top: 3px solid var(--teal); }
.karijera-card.kc-navy { border-top: 3px solid var(--navy); }
.karijera-head {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .85rem;
}
.kc-num {
  width: 34px; height: 34px;
  background: var(--teal);
  color: white;
  border-radius: 50%;
  font-family: var(--font-d);
  font-size: .95rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.kc-navy .kc-num { background: var(--navy); }
.karijera-head h3 {
  font-family: var(--font-d);
  font-size: .98rem;
  font-weight: 700;
  color: var(--text);
}
.karijera-card p {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: .7rem;
}
.karijera-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.karijera-list li {
  font-size: .84rem;
  color: var(--text-muted);
  padding-left: 1.3rem;
  position: relative;
  line-height: 1.5;
}
.karijera-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}
.karijera-list strong { color: var(--text); }

/* ===== ALATI ===== */
.alati-box {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 1.5rem;
  margin-bottom: 3rem;
  box-shadow: var(--shadow-sm);
}
.alati-box h3 {
  font-family: var(--font-d);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
}
.alati-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: .6rem;
}
.alat-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: .55rem .85rem;
  font-size: .83rem;
  font-weight: 600;
  color: var(--text-muted);
}
.alat-ico { font-size: 1rem; }

/* ===== PRICE / ZARADA ===== */
.price-box {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  margin-bottom: 2rem;
}
.price-head {
  padding: 1.1rem 1.4rem;
  border-bottom: 1px solid var(--border);
  background: #fafcfe;
}
.price-head h3 {
  font-family: var(--font-d);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .2rem;
}
.price-head p { font-size: .82rem; color: var(--text-muted); }
.price-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: .85rem 1.4rem;
  border-bottom: 1px solid var(--border);
  font-size: .87rem;
  flex-wrap: wrap;
}
.price-list li:last-child { border-bottom: none; }
.price-list .item { color: var(--text); font-weight: 600; flex: 1; min-width: 200px; }
.price-list .amount {
  color: var(--teal-dark);
  font-family: var(--font-d);
  font-weight: 700;
  font-size: .92rem;
  white-space: nowrap;
}
.price-note {
  padding: .8rem 1.4rem;
  background: #fafcfe;
  border-top: 1px solid var(--border);
  font-size: .76rem;
  color: var(--text-light);
  line-height: 1.55;
}

/* ===== ZARADA INSIGHTS ===== */
.zarada-insight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.15rem;
  margin-bottom: 3rem;
}
.zarada-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 1.35rem;
  box-shadow: var(--shadow-sm);
}
.zarada-icon {
  font-size: 1.5rem;
  margin-bottom: .7rem;
}
.zarada-card h4 {
  font-family: var(--font-d);
  font-size: .95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .5rem;
  line-height: 1.3;
}
.zarada-card p {
  font-size: .84rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== AFFILIATE ===== */
.affiliate-intro {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.affiliate-intro p {
  font-size: .93rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.affiliate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.15rem;
  margin-bottom: 2rem;
}
.affiliate-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 1.4rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}
.affiliate-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.aff-header {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
}
.aff-icon {
  font-size: 1.5rem;
  width: 46px; height: 46px;
  background: var(--teal-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.aff-header h3 {
  font-family: var(--font-d);
  font-size: .98rem;
  font-weight: 700;
  color: var(--text);
}
.aff-steps {
  list-style: none;
  counter-reset: aff;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.aff-steps li {
  counter-increment: aff;
  font-size: .84rem;
  color: var(--text-muted);
  padding-left: 2rem;
  position: relative;
  line-height: 1.55;
}
.aff-steps li::before {
  content: counter(aff);
  position: absolute;
  left: 0;
  top: 0;
  width: 22px; height: 22px;
  background: var(--teal);
  color: white;
  border-radius: 50%;
  font-family: var(--font-d);
  font-size: .72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.aff-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.aff-list li {
  font-size: .84rem;
  color: var(--text-muted);
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.5;
}
.aff-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}
.aff-list strong { color: var(--text); }
.aff-earnings {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.aff-tier {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .6rem .85rem;
  border-radius: 9px;
  font-size: .84rem;
  font-weight: 600;
  flex-wrap: wrap;
  gap: .4rem;
}
.tier-start  { background: #e8f5e9; color: #2e7d32; }
.tier-mid    { background: #e3f2fd; color: #1565c0; }
.tier-pro    { background: var(--teal-light); color: var(--teal-dark); }
.tier-top    { background: #ede7f6; color: #6a1b9a; }
.tier-label  { font-family: var(--font-d); }
.tier-range  { font-family: var(--font-d); font-weight: 800; }
.aff-note {
  font-size: .77rem;
  color: var(--text-muted);
  margin-top: .85rem;
  line-height: 1.55;
  font-style: italic;
}

/* ===== AFFILIATE NICHE ===== */
.affiliate-niche-box {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 1.5rem;
  margin-bottom: 3rem;
  box-shadow: var(--shadow-sm);
}
.affiliate-niche-box h3 {
  font-family: var(--font-d);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
}
.niche-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: .65rem;
}
.niche-item {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: .75rem 1rem;
  font-size: .84rem;
  font-weight: 600;
  color: var(--text);
}
.niche-item span:first-child { font-size: 1.2rem; }
.niche-comm { font-size: .74rem; color: var(--teal-dark); font-weight: 700; }

/* ===== 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);
  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(--teal); }
.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(--teal); }
.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;
}

/* ===== SHARE ===== */
.share-box {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  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; }
.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(--teal); color: var(--teal); }

/* ===== UPDATE NOTE ===== */
.update-note {
  display: block;
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  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(--teal); font-weight: 700; }
.update-note a:hover { text-decoration: underline; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--text);
  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: #7ecfdb; }
.footer-copy { font-size: .76rem; }

/* ===== SCROLL MARGIN ===== */
#agencije, #mapa, #vodic, #karijera, #zarada, #affiliate, #faq {
  scroll-margin-top: 70px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-stats        { grid-template-columns: repeat(2, 1fr); }
  .nav-links         { display: none; }
  .hamburger         { display: flex; }
  .filter-bar        { flex-direction: column; align-items: stretch; gap: .75rem; }
  .filter-buttons    { flex-wrap: wrap; gap: .4rem; }
  .search-wrap       { width: 100%; }
  .search-wrap input { width: 100%; }
  .cards-grid        { grid-template-columns: 1fr; }
  .guide-grid        { grid-template-columns: 1fr; }
  .karijera-grid     { grid-template-columns: 1fr; }
  .zarada-insight-grid { grid-template-columns: 1fr; }
  .affiliate-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-web-link     { min-height: 36px; padding: .4rem .7rem; }
  .card-footer       { flex-direction: column; align-items: flex-start; gap: .6rem; }
  .phone-btn         { width: 100%; justify-content: center; }
  .alati-grid        { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
  .niche-grid        { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
}

@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; }
  .nav-logo .logo-main { font-size: .85rem; }
  .nav-logo .logo-sub  { font-size: .58rem; }
  .section-sub-header { flex-direction: column; gap: .5rem; }
}

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

/* ===== CARD TOP — override: no coloured bg, just clean white bar ===== */
.card-top {
  padding: .75rem 1.1rem .65rem;
  background: #fafcfe;
}

/* ===== CARD BODY — proper inner padding ===== */
.card-body {
  padding: 1rem 1.1rem .85rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

/* ===== WEB link — compact, never wraps ===== */
.card-web-link {
  display: inline-flex;
  align-items: center;
  font-size: .73rem;
  font-weight: 800;
  font-family: var(--font-d);
  color: var(--teal-dark);
  background: var(--teal-light);
  border: 1.5px solid var(--teal);
  padding: .25rem .6rem;
  border-radius: 7px;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: background .18s, color .18s;
}
.card-web-link:hover { background: var(--teal); color: white; }

/* ===== META ROW (adresa, email) ===== */
.card-meta {
  display: flex;
  flex-direction: column;
  gap: .28rem;
  padding: 0 1.1rem .75rem;
}
.meta-row {
  display: flex;
  align-items: flex-start;
  gap: .4rem;
  font-size: .8rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.meta-icon { flex-shrink: 0; }

/* ===== CARD TAGS — padding-aware ===== */
.card-tags {
  padding: 0 1.1rem .85rem;
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
}

/* ===== PAID badge ===== */
.badge-paid {
  background: #fff3e0;
  color: #bf360c;
  font-size: .65rem;
  font-weight: 700;
  padding: .2rem .55rem;
  border-radius: 10px;
  white-space: nowrap;
  font-family: var(--font-d);
}

/* ===== PHONE-NA (no phone available) ===== */
.phone-na {
  font-size: .8rem;
  color: var(--text-light);
  font-weight: 600;
}

/* ===== SEARCH icon in filter bar ===== */
.search-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.search-icon {
  position: absolute;
  left: .85rem;
  width: 16px;
  height: 16px;
  color: var(--text-light);
  pointer-events: none;
}
.search-wrap input {
  padding-left: 2.4rem;
}

/* ===== KARIJERA & AFFILIATE links ===== */
.karijera-list a,
.aff-list a,
.aff-steps a {
  color: var(--teal-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.karijera-list a:hover,
.aff-list a:hover,
.aff-steps a:hover { color: var(--teal); }

/* ===== RESPONSIVE additions ===== */
@media (max-width: 768px) {
  .hero-image-wrap { max-height: 240px; }
  .hero-image      { height: 240px; }
}
@media (max-width: 480px) {
  .hero-image-wrap { max-height: 180px; }
  .hero-image      { height: 180px; }
}

/* ===== FILTER SECTION WRAPPER (JS-controlled visibility) ===== */
.content-section { display: block; }
