/* ===== CSS VARIJABLE ===== */
:root {
  --blue:        #0d6efd;
  --blue-dark:   #0a58ca;
  --blue-light:  #e7f0ff;
  --teal:        #0c9e8a;
  --teal-dark:   #097a6b;
  --teal-light:  #e0f5f2;
  --amber:       #f0a500;
  --amber-dark:  #b07800;
  --amber-light: #fff8e6;
  --river:       #1565c0;
  --river-dark:  #0d47a1;
  --river-light: #e3f0ff;
  --purple:      #7c3aed;
  --purple-dark: #5b21b6;
  --purple-light:#ede9fe;
  --red:         #e53e3e;
  --red-dark:    #c53030;
  --red-light:   #fff5f5;
  --bg:          #f4f7fb;
  --text:        #0d1b2e;
  --text-muted:  #4a5c72;
  --text-light:  #8fa0b5;
  --border:      #dce6f0;
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.10);
  --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: 200;
  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); font-weight: 700; font-size: 1.05rem; color: var(--blue); }
.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(--blue); }

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

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #061624 0%, #0d2d4a 45%, #062238 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 20% 50%, rgba(13,110,253,.18) 0%, transparent 55%),
    radial-gradient(circle at 80% 20%, rgba(12,158,138,.12) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 100%, rgba(21,101,192,.22) 0%, transparent 65%);
  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(13,110,253,.2);
  border: 1px solid rgba(13,110,253,.4);
  color: #93c5fd;
  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: #60c6f7; }
.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: 480px;
}
.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: #60c6f7;
  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(--blue);
  margin-bottom: .5rem;
}
.section-tag.teal   { color: var(--teal); }
.section-tag.amber  { color: var(--amber-dark); }
.section-tag.river  { color: var(--river); }
.section-tag.purple { color: var(--purple); }
.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: 640px; }

/* ===== TIME GRID ===== */
.time-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .7rem;
  margin-bottom: 2.5rem;
}
.time-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem .85rem;
  cursor: pointer;
  transition: box-shadow .2s, border-color .2s, transform .15s;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.time-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--teal);
  transform: translateY(-2px);
}
.time-card strong {
  font-family: var(--font-d);
  font-size: .88rem;
  color: var(--text);
}
.time-card span:last-child { font-size: .76rem; color: var(--text-muted); }
.time-badge {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: .7rem;
  font-weight: 700;
  padding: .2rem .6rem;
  border-radius: 8px;
  margin-bottom: .2rem;
}
.time-badge--purple {
  background: var(--purple-light);
  color: var(--purple-dark);
}

/* ===== FILTER BAR ===== */
.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.75rem;
  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: .07em;
  white-space: nowrap;
}
.filter-btn {
  background: var(--bg);
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  font-family: var(--font-b);
  font-size: .82rem;
  font-weight: 700;
  padding: .42rem 1rem;
  border-radius: 9px;
  cursor: pointer;
  transition: all .2s;
  min-height: 38px;
}
.filter-btn:hover  { border-color: var(--teal); color: var(--teal); }
.filter-btn.active { background: var(--teal); border-color: var(--teal); color: white; }
.search-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.search-icon {
  position: absolute;
  left: .75rem;
  font-size: .88rem;
  pointer-events: none;
}
.search-wrap input {
  padding: .48rem 1rem .48rem 2.2rem;
  border: 1.5px solid var(--border);
  border-radius: 9px;
  font-family: var(--font-b);
  font-size: .84rem;
  color: var(--text);
  background: var(--bg);
  outline: none;
  width: 200px;
  transition: border-color .2s;
}
.search-wrap input:focus { border-color: var(--teal); background: white; }

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

.tour-card-header {
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 1.2rem;
  justify-content: space-between;
}
.tc-red    { background: linear-gradient(90deg, #fff5f5, #ffe4e4); }
.tc-green  { background: linear-gradient(90deg, #e0f5f2, #c6ede8); }
.tc-blue   { background: linear-gradient(90deg, #e7f0ff, #cfe2ff); }
.tc-amber  { background: linear-gradient(90deg, #fff8e6, #fdefc3); }
.tc-purple { background: linear-gradient(90deg, #ede9fe, #ddd6fe); }

.tc-emoji { font-size: 1.75rem; }
.tc-route-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 2.5px solid white;
  box-shadow: 0 1px 4px rgba(0,0,0,.2);
}

.tour-card-body { padding: 1.1rem 1.2rem; flex: 1; }
.tc-tags { display: flex; gap: .4rem; flex-wrap: wrap; margin-bottom: .6rem; }
.tc-tag {
  font-size: .7rem;
  font-weight: 700;
  padding: .15rem .55rem;
  border-radius: 6px;
  background: var(--blue-light);
  color: var(--blue-dark);
}
.tc-tag--green  { background: var(--teal-light);   color: var(--teal-dark); }
.tc-tag--amber  { background: var(--amber-light);  color: var(--amber-dark); }
.tc-tag--purple { background: var(--purple-light); color: var(--purple-dark); }
.tc-tag--easy   { background: #e8f5e9; color: #2e7d32; }
.tc-tag--medium { background: #fff3e0; color: #e65100; }
.tc-tag--access { background: #e1f5fe; color: #01579b; }

.tc-title {
  font-family: var(--font-d);
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: .4rem;
  line-height: 1.25;
}
.tc-desc { font-size: .83rem; color: var(--text-muted); line-height: 1.55; margin-bottom: .7rem; }
.tc-meta-row {
  display: flex;
  gap: .85rem;
  font-size: .77rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: .25rem;
  flex-wrap: wrap;
}
.tc-best {
  margin-top: .65rem;
  font-size: .78rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.tc-best-label { font-weight: 700; color: var(--text); }

.tour-card-footer {
  padding: .9rem 1.2rem;
  border-top: 1px solid var(--border);
  display: flex;
  gap: .5rem;
  align-items: center;
}
.btn-show-map {
  flex: 1;
  background: var(--teal);
  color: white;
  border: none;
  border-radius: 9px;
  font-family: var(--font-b);
  font-size: .8rem;
  font-weight: 700;
  padding: .5rem .8rem;
  cursor: pointer;
  transition: background .2s;
  min-height: 38px;
}
.btn-show-map:hover { background: var(--teal-dark); }
.btn-details {
  padding: .5rem .85rem;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 9px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: all .2s;
  white-space: nowrap;
  min-height: 38px;
  display: flex;
  align-items: center;
}
.btn-details:hover { border-color: var(--blue); color: var(--blue); }

.no-results {
  text-align: center;
  padding: 2rem;
  color: var(--text-muted);
  background: white;
  border-radius: var(--radius-lg);
  border: 1px dashed var(--border);
  margin-bottom: 2rem;
}

/* ===== MAP ===== */
.map-wrap {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  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);
  background: #fafcff;
  flex-wrap: wrap;
  align-items: center;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  user-select: none;
}
.legend-toggle input[type="checkbox"] {
  width: 15px;
  height: 15px;
  cursor: pointer;
  accent-color: var(--teal);
}
.legend-line {
  display: inline-block;
  width: 28px;
  height: 4px;
  border-radius: 2px;
  flex-shrink: 0;
}
.legend-show-all {
  margin-left: auto;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-b);
  font-size: .76rem;
  font-weight: 700;
  color: var(--text-muted);
  padding: .3rem .8rem;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}
.legend-show-all:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-light); }
#map { height: 500px; }
.map-note {
  padding: .7rem 1.25rem;
  font-size: .77rem;
  color: var(--text-light);
  border-top: 1px solid var(--border);
  background: #fafcff;
}
.map-note a { color: var(--blue); }

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

/* ===== INFO BOX ===== */
.info-box {
  background: var(--blue-light);
  border: 1.5px solid rgba(13,110,253,.2);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.4rem;
  margin-bottom: 2rem;
  display: flex;
  gap: .85rem;
  align-items: flex-start;
}
.info-box-icon { font-size: 1.25rem; flex-shrink: 0; margin-top: 2px; }
.info-box-text { font-size: .86rem; color: #0d3870; line-height: 1.6; }
.info-box-text strong { font-weight: 700; }

/* ===== ŠTA POSLIJE / AFTER GRID ===== */
.after-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: .85rem;
  margin-bottom: 2.5rem;
}
.after-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: .85rem;
  align-items: flex-start;
  font-size: .84rem;
  line-height: 1.55;
  color: var(--text-muted);
}
.after-card strong { color: var(--text); }
.after-num {
  font-family: var(--font-d);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ===== ROUTE DETAILS (ACCORDIONS) ===== */
.route-detail {
  background: white;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
  margin-bottom: .75rem;
  overflow: hidden;
}
.route-detail-header {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1.1rem 1.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  border-left: 5px solid transparent;
  transition: background .15s;
}
.route-detail-header:hover { background: var(--bg); }
.route-detail-header[aria-expanded="true"] { background: var(--bg); }

.rd-red    { border-left-color: var(--red); }
.rd-green  { border-left-color: var(--teal); }
.rd-blue   { border-left-color: var(--blue); }
.rd-amber  { border-left-color: var(--amber); }
.rd-purple { border-left-color: var(--purple); }

.rd-header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.rd-num {
  font-family: var(--font-d);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--border);
  line-height: 1;
  min-width: 36px;
}
.rd-name {
  display: block;
  font-family: var(--font-d);
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
}
.rd-meta {
  display: block;
  font-size: .77rem;
  color: var(--text-muted);
  margin-top: .1rem;
}
.rd-arrow {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--text-muted);
  transition: transform .3s;
  flex-shrink: 0;
  line-height: 1;
}
.route-detail-header[aria-expanded="true"] .rd-arrow { transform: rotate(45deg); }

.route-detail-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.route-detail-body.open { max-height: 2000px; }

.rd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  padding: 1.25rem 1.3rem;
}

.rd-info-table h4,
.rd-steps h4 {
  font-family: var(--font-d);
  font-size: .88rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: .75rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.rd-info-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: .82rem;
}
.rd-info-table td {
  padding: .38rem .5rem;
  border-bottom: 1px solid var(--bg);
  vertical-align: top;
}
.rd-info-table td:first-child {
  color: var(--text-muted);
  font-weight: 600;
  white-space: nowrap;
  width: 45%;
}
.rd-info-table td:last-child { color: var(--text); }

.steps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}
.steps-list li {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  font-size: .84rem;
  line-height: 1.55;
}
.step-num {
  background: var(--teal);
  color: white;
  font-family: var(--font-d);
  font-weight: 800;
  font-size: .72rem;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.steps-list strong { color: var(--text); }
.steps-list div { color: var(--text-muted); }

.rd-notes {
  padding: 0 1.3rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.rd-note {
  padding: .65rem 1rem;
  border-radius: var(--radius);
  font-size: .82rem;
  line-height: 1.55;
}
.rd-note--warning { background: #fff8e6; color: #7c5000; border-left: 3px solid var(--amber); }
.rd-note--info    { background: var(--blue-light); color: #0d3870; border-left: 3px solid var(--blue); }
.rd-note--tip     { background: var(--teal-light); color: #044d3e; border-left: 3px solid var(--teal); }

/* ===== TIPS GRID ===== */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.15rem;
  margin-bottom: 2rem;
}
.tip-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: .9rem;
  align-items: flex-start;
}
.tip-icon {
  width: 42px; height: 42px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.ti-1 { background: var(--blue-light); }
.ti-2 { background: var(--teal-light); }
.ti-3 { background: var(--amber-light); }
.ti-4 { background: #e8f5e9; }
.ti-5 { background: #f3e5f5; }
.ti-6 { background: #fff3e0; }
.tip-content h3 { font-family: var(--font-d); font-size: .93rem; font-weight: 700; margin-bottom: .25rem; }
.tip-content p  { font-size: .82rem; color: var(--text-muted); line-height: 1.55; }

/* ===== GUIDE BOX ===== */
.guide-box {
  background: linear-gradient(135deg, #0d2d4a, #0d6efd);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  margin-bottom: 2.5rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  color: white;
}
.guide-box-icon { font-size: 2.5rem; flex-shrink: 0; }
.guide-box-content h3 {
  font-family: var(--font-d);
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: .4rem;
}
.guide-box-content p {
  font-size: .86rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 1rem;
}
.guide-contacts { display: flex; gap: .5rem; flex-wrap: wrap; }
.guide-contact-btn {
  display: inline-block;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: white;
  font-size: .8rem;
  font-weight: 700;
  padding: .42rem .9rem;
  border-radius: 9px;
  transition: background .2s;
  min-height: 38px;
  display: flex;
  align-items: center;
}
.guide-contact-btn:hover { background: rgba(255,255,255,.22); }

/* ===== 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.2rem;
  font-weight: 300;
  color: var(--text-muted);
  transition: transform .3s;
  line-height: 1;
}
.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: 1.5rem;
}
.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);
  min-height: 42px;
}
.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 {
  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: #60c6f7; }
.footer-copy { font-size: .76rem; }

/* ===== SCROLL MARGIN ===== */
#ture, #mapa, #detalji, #savjeti, #faq { scroll-margin-top: 70px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .time-grid { grid-template-columns: repeat(3, 1fr); }
  .rd-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-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; }
  .tips-grid       { grid-template-columns: 1fr; }
  .after-grid      { grid-template-columns: 1fr; }
  .section-header  { margin: 2rem 0 1.25rem; }
  .section-header h2 { font-size: 1.45rem; }
  .map-legend      { gap: .75rem; }
  .legend-show-all { margin-left: 0; width: 100%; justify-content: center; }
  #map             { height: 360px; }
  .time-grid       { grid-template-columns: repeat(2, 1fr); }
  .guide-box       { flex-direction: column; }
  .filter-btn { min-height: 44px; display: flex; align-items: center; justify-content: center; padding: .5rem 1rem; }
  .share-btn  { min-height: 44px; }
  .btn-show-map, .btn-details { min-height: 44px; }
  .guide-contact-btn { min-height: 44px; }
  .legend-show-all { min-height: 38px; display: flex; align-items: 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; }
  .time-grid   { grid-template-columns: 1fr 1fr; }
  .rd-header-left { gap: .6rem; }
  .rd-num      { font-size: 1.2rem; }
  .hero-image-wrap { max-height: 180px; }
  .hero-image      { height: 180px; }
}
