/* ==========================================================================
   DC Solutions - dcsolutions.hr
   Staticna stranica, bez build koraka. Izvor dizajna: "DC Solutions.dc.html"
   ========================================================================== */

/* --- Tokeni ------------------------------------------------------------- */
:root {
  --ink:        #101828;
  --muted:      #475467;
  --line:       #E4E9F0;
  --line-soft:  #F0F3F8;
  --surface:    #F5F8FC;
  --white:      #FFFFFF;
  --brand:      #2892D6;
  --brand-hi:   #17AEE5;
  --brand-soft: #EAF4FC;
  --dash:       #D7DFEA;

  --grad:      linear-gradient(90deg, #6C409B 0%, #4374C4 35%, #17AEE5 70%, #7CD6FD 100%);
  --grad-tick: linear-gradient(90deg, #4374C4, #17AEE5);

  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body:    Inter, system-ui, -apple-system, "Segoe UI", sans-serif;

  --wrap: 1180px;
  --gutter: clamp(20px, 5vw, 40px);
  --header-h: 76px;

  --r-sm: 10px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 22px;
}

/* --- Reset -------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

/* button/input ne nasljeduju font ni line-height sa stranice nego dobiju
   preglednikove zadane (u Chromeu Arial, line-height normal). Bez ovoga
   <button class="btn"> izgleda drugacije od <a class="btn">, iako imaju
   istu klasu - drugi font i niza visina. */
button, input, select, textarea {
  font-family: inherit;
  line-height: inherit;
}

a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-hi); }

::selection { background: #D9EDFB; }

:focus-visible {
  outline: 2px solid var(--brand-hi);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* --- Pomocne klase ------------------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.container--narrow { max-width: 820px; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 12px; top: -60px;
  z-index: 100;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 12px 18px;
  font-weight: 600;
  color: var(--ink);
  transition: top .18s ease;
}
.skip-link:focus { top: 12px; color: var(--ink); }

/* --- Gumbi -------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 30px;
  border-radius: var(--r-md);
  border: 1px solid transparent;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  /* gumb nikad ne smije biti siri od svog spremnika */
  max-width: 100%;
  transition: filter .18s ease, border-color .18s ease, background-color .18s ease;
}

.btn--primary {
  background: var(--grad);
  color: var(--white);
  box-shadow: 0 14px 30px -14px rgba(67, 116, 196, .9);
}
.btn--primary:hover { color: var(--white); filter: brightness(1.06); }

.btn--ghost {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
  padding: 16px 26px;
}
.btn--ghost:hover { color: var(--ink); border-color: var(--brand-hi); }

.btn--sm {
  font-size: 15px;
  padding: 12px 20px;
  border-radius: var(--r-sm);
  box-shadow: 0 8px 20px -10px rgba(67, 116, 196, .8);
}

.btn--block { width: 100%; }

/* --- Zaglavlje ---------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.site-header__bar {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}
.brand:hover { color: var(--ink); }

.brand__logo {
  width: 46px;
  height: 46px;
  border-radius: var(--r-md);
  flex: none;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
}

.brand__tag {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.nav { display: none; align-items: center; gap: 30px; }

.nav__link {
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
  transition: color .18s ease;
}
.nav__link:hover { color: var(--ink); }

.nav-toggle {
  width: 46px;
  height: 46px;
  flex: none;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
}

.nav-toggle__bar {
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  border-top: 1px solid var(--line);
  background: var(--white);
  padding: 14px var(--gutter) 22px;
  flex-direction: column;
  gap: 2px;
  display: none;
}
.mobile-menu.is-open { display: flex; }

.mobile-menu__link {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
}
.mobile-menu__link:last-child { border-bottom: 0; }
.mobile-menu__link:hover { color: var(--brand); }

@media (min-width: 1024px) {
  .nav { display: flex; }
  .nav-toggle { display: none; }
  .mobile-menu { display: none !important; }
}

/* --- Sekcije ------------------------------------------------------------ */
.section {
  padding: clamp(64px, 9vw, 104px) 0;
  scroll-margin-top: 86px;
}

.section--alt {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section--tight { padding: clamp(56px, 7vw, 84px) 0; }

.section-head {
  max-width: 640px;
  margin-bottom: 46px;
}

.section-head--sm { margin-bottom: 40px; }

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 12px;
}

.h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}

.rule {
  width: 56px;
  height: 3px;
  border-radius: 3px;
  background: var(--grad);
}

.section-head__lead {
  font-size: 16px;
  color: var(--muted);
  margin: 18px 0 0;
}

/* --- Foto slotovi ------------------------------------------------------- */
/* Zamjena: unutar .slot upisi <img src="assets/img/ime.jpg" alt="opis">     */
.slot {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(108, 64, 155, .05), rgba(23, 174, 229, .08)),
    var(--surface);
  border: 1px dashed var(--dash);
  border-radius: inherit;
}

.slot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slot__label {
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
  max-width: 260px;
}

.slot:has(img) { border: 0; padding: 0; }
.slot:has(img) .slot__label { display: none; }

/* --- Hero --------------------------------------------------------------- */
.hero { padding: clamp(48px, 7vw, 92px) 0 clamp(56px, 8vw, 96px); }

.hero__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(360px, 100%), 1fr));
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 999px;
  padding: 7px 14px 7px 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 24px;
}

.badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--grad-tick);
  flex: none;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.07;
  letter-spacing: -0.025em;
  margin: 0 0 22px;
  text-wrap: balance;
}

.hero__lead {
  font-size: clamp(16px, 1.3vw, 18px);
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 32px;
  max-width: 540px;
  text-wrap: pretty;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.hero__note {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

.hero__media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 30px 70px -40px rgba(16, 24, 40, .45);
}

/* --- Traka povjerenja --------------------------------------------------- */
.trust {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}

.trust__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px 40px;
}

.trust__logos {
  display: flex;
  align-items: center;
  gap: 26px;
}

.trust__logo { width: auto; opacity: .62; }
.trust__logo--koch { height: 40px; }
.trust__logo--karcher { height: 22px; filter: grayscale(1); }

.trust__sep {
  width: 1px;
  height: 30px;
  background: var(--line);
}

.trust__points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
}

.point {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
}

.point__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex: none;
}
.point:nth-child(1) .point__dot { background: linear-gradient(90deg, #6C409B, #4374C4); }
.point:nth-child(2) .point__dot { background: linear-gradient(90deg, #4374C4, #17AEE5); }
.point:nth-child(3) .point__dot { background: linear-gradient(90deg, #17AEE5, #7CD6FD); }

/* --- Kartice paketa ----------------------------------------------------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(290px, 100%), 1fr));
  gap: 24px;
  align-items: stretch;
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--white);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  box-shadow: 0 2px 4px rgba(16, 24, 40, .02);
}

.card--featured {
  border: 0;
  border-radius: var(--r-xl);
  background: var(--grad);
  padding: 2px;
  box-shadow: 0 24px 50px -30px rgba(67, 116, 196, .75);
  position: relative;
  gap: 0;
}

.card--featured .card__inner {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 34px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  flex: 1;
}

.card__flag {
  position: absolute;
  top: -13px;
  left: 28px;
  background: linear-gradient(90deg, #6C409B 0%, #4374C4 45%, #17AEE5 100%);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 8px 18px -8px rgba(67, 116, 196, .9);
}

.card__kicker {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

.card__price {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}

.card__promo {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--brand);
  background: var(--brand-soft);
  border-radius: 6px;
  padding: 4px 9px;
}

.card__divider {
  height: 1px;
  background: var(--line);
}

.card__foot {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card__meta {
  background: var(--surface);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  font-size: 13px;
  color: var(--muted);
}

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature {
  display: flex;
  gap: 11px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.5;
}

.tick {
  flex: none;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  border-radius: 50%;
  background: var(--grad-tick);
  color: var(--white);
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- Pojedinacne usluge ------------------------------------------------- */
.extras {
  margin-top: 32px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--surface);
  padding: clamp(24px, 3vw, 34px);
}

.extras__title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 20px;
}

.extras__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 0 40px;
}

.extra {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}

.extra__name { color: var(--muted); }
.extra__price { font-weight: 600; white-space: nowrap; }

.extras__meta {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  font-size: 14px;
  color: var(--muted);
}

.extras__meta strong { color: var(--ink); font-weight: 600; }

/* --- Proces ------------------------------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr));
  gap: 24px;
}

.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 24px;
}

.step__num {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.step:nth-child(1) .step__num { background: linear-gradient(135deg, #6C409B, #4374C4); }
.step:nth-child(2) .step__num { background: linear-gradient(135deg, #4374C4, #17AEE5); }
.step:nth-child(3) .step__num { background: linear-gradient(135deg, #17AEE5, #4374C4); }
.step:nth-child(4) .step__num { background: linear-gradient(135deg, #17AEE5, #7CD6FD); }

.step__title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}

.step__text {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

.section__note {
  margin: 24px 0 0;
  font-size: 14px;
  color: var(--muted);
}

/* --- Ozonizacija -------------------------------------------------------- */
.ozone {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--white);
  padding: clamp(26px, 3.4vw, 38px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 26px 34px;
  box-shadow: 0 2px 4px rgba(16, 24, 40, .02);
}

.ozone__icon {
  flex: none;
  width: 62px;
  height: 62px;
  border-radius: 16px;
  background: linear-gradient(135deg, #6C409B, #17AEE5);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ozone__body { flex: 1 1 380px; }

.ozone__title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
}

.ozone__text {
  font-size: 16px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
  max-width: 620px;
}

.link-arrow {
  font-size: 15px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.link-arrow span { font-size: 17px; transition: transform .18s ease; }
.link-arrow:hover span { transform: translateX(3px); }

/* --- Galerija ----------------------------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
  gap: 20px;
}

.shot {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
}

.tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  pointer-events: none;
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
}
.tag--before { background: rgba(16, 24, 40, .72); }
.tag--after  { background: var(--grad-tick); }

/* Prikazana su prva 4 para; ostalo otkriva gumb "Prikazi vise slika".
   Klasu .is-collapsed dodaje JS, pa bez JS-a ostaju vidljive sve fotografije. */
.gallery-grid.is-collapsed .shot[data-extra] { display: none; }

.gallery-more {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

/* --- Rezervacija -------------------------------------------------------- */
/* Dok Cal.com nije aktivan, ovdje stoji kontakt CTA. Kad se u main.js upise
   CAL_LINK, JS dodaje .is-live, CTA se sakriva i kalendar se montira ovdje.  */
.booking {
  border-radius: var(--r-xl);
  background: var(--grad);
  padding: 2px;
  box-shadow: 0 24px 50px -30px rgba(67, 116, 196, .6);
}

.booking.is-live {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 8px;
  box-shadow: none;
  min-height: 460px;
}
.booking.is-live .booking__placeholder { display: none; }

.booking__placeholder {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 46px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: clamp(28px, 4vw, 52px);
  align-items: center;
}

.booking__title {
  font-family: var(--font-display);
  font-size: clamp(21px, 2.4vw, 27px);
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 0 0 12px;
}

.booking__text {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 26px;
}

.booking__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.booking__facts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: var(--surface);
  border-radius: var(--r-md);
  padding: 24px 26px;
}

.booking__fact {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.booking__fact:last-child { border-bottom: 0; }

.booking__fact-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.booking__fact-value {
  font-size: 16px;
  color: var(--ink);
  font-weight: 500;
}

@media (max-width: 560px) {
  .booking__actions .btn { width: 100%; }
}

/* --- O nama ------------------------------------------------------------- */
.about {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: clamp(32px, 5vw, 60px);
  align-items: center;
}

.about__media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px -40px rgba(16, 24, 40, .45);
}

.about__text {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 16px;
}
.about__text:last-of-type { margin-bottom: 24px; }

.checks {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.check {
  display: flex;
  gap: 11px;
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
}

/* --- FAQ ---------------------------------------------------------------- */
.faq { border-top: 1px solid var(--line); }

.faq__item { border-bottom: 1px solid var(--line); }

.faq__q {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
}
.faq__q:hover { color: var(--brand); }

.faq__sign {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--surface);
  color: var(--brand);
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq__a { display: none; }
.faq__a.is-open { display: block; }

.faq__a p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 24px;
  max-width: 640px;
}

/* --- Kontakt ------------------------------------------------------------ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 24px;
  align-items: stretch;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(26px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-card__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.contact-card__phone {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
}
.contact-card__phone:hover { color: var(--brand); }

.contact-card__mail {
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
}
.contact-card__mail:hover { color: var(--brand); }

.contact-card__value { font-size: 16px; color: var(--ink); }

.contact-card__note {
  background: var(--surface);
  border-radius: var(--r-md);
  padding: 14px 16px;
  font-size: 14px;
  color: var(--muted);
}

.map {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--white);
  min-height: 340px;
  overflow: hidden;
  position: relative;
}

.map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* --- Podnozje ----------------------------------------------------------- */
.site-footer { background: var(--white); }

.site-footer__accent {
  height: 3px;
  background: var(--grad);
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: 36px;
  padding: clamp(44px, 6vw, 64px) var(--gutter) 32px;
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer__brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
}

.footer__about {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
  max-width: 280px;
  line-height: 1.6;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.footer__link, .footer__item {
  font-size: 15px;
  color: var(--muted);
}
.footer__link:hover { color: var(--ink); }

.footer__bottom {
  border-top: 1px solid var(--line);
  padding: 20px 0 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: space-between;
  font-size: 13px;
  color: var(--muted);
}

/* --- Podstranice -------------------------------------------------------- */
.page-hero {
  padding: clamp(34px, 5vw, 60px) 0 clamp(26px, 3.5vw, 40px);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
}
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--ink); }
.breadcrumbs span[aria-hidden] { opacity: .5; }

.page-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 4.2vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 0 16px;
  text-wrap: balance;
}

.page-lead {
  font-size: clamp(16px, 1.3vw, 18px);
  color: var(--muted);
  line-height: 1.65;
  margin: 18px 0 0;
  max-width: 640px;
  text-wrap: pretty;
}

.page-figure {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 30px 70px -40px rgba(16, 24, 40, .45);
  margin: 0 0 clamp(36px, 5vw, 56px);
}

.prose {
  max-width: 720px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--muted);
}

.prose > p { margin: 0 0 20px; }

.prose h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.25;
  color: var(--ink);
  margin: 44px 0 14px;
}

.prose h2:first-child { margin-top: 0; }

.prose strong { color: var(--ink); font-weight: 600; }

.prose ul {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.prose ul li {
  display: flex;
  gap: 12px;
  line-height: 1.6;
}

.prose ul li::before {
  content: "";
  flex: none;
  width: 8px;
  height: 8px;
  margin-top: 11px;
  border-radius: 50%;
  background: var(--grad-tick);
}

.pull {
  border-left: 3px solid transparent;
  border-image: var(--grad) 1;
  padding: 4px 0 4px 22px;
  margin: 32px 0;
  font-family: var(--font-display);
  font-size: clamp(19px, 2vw, 23px);
  font-weight: 600;
  line-height: 1.4;
  color: var(--ink);
  letter-spacing: -0.01em;
}

/* dvije slike jedna uz drugu unutar teksta */
.duo {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: 16px;
  margin: 32px 0 36px;
}

.duo figure { margin: 0; }

.duo .shot { aspect-ratio: 4 / 3; }

.duo figcaption {
  font-size: 13px;
  color: var(--muted);
  margin-top: 9px;
}

/* zavrsni CTA na podstranici */
.page-cta {
  border-radius: var(--r-xl);
  background: var(--grad);
  padding: 2px;
  box-shadow: 0 24px 50px -30px rgba(67, 116, 196, .6);
  margin-top: clamp(48px, 6vw, 72px);
}

.page-cta__inner {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 44px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px 36px;
}

.page-cta__title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 25px);
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 0 0 8px;
}

.page-cta__text {
  font-size: 16px;
  color: var(--muted);
  margin: 0;
  max-width: 460px;
}

.page-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 560px) {
  .page-cta__actions .btn { width: 100%; }
}

/* --- Mobilna donja traka ------------------------------------------------ */
.mobile-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 70;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  display: flex;
  gap: 10px;
}

.mobile-bar .btn {
  font-size: 15px;
  padding: 14px 12px;
  box-shadow: none;
}
.mobile-bar__call { flex: 1; }
.mobile-bar__book { flex: 1.4; }

.mobile-bar__spacer { height: 74px; }

@media (min-width: 1024px) {
  .mobile-bar,
  .mobile-bar__spacer { display: none; }
}

/* --- Uski ekrani --------------------------------------------------------
   Uzrok "trganja" rubova na mobitelu: .btn ima white-space:nowrap, a natpis
   "Nazovi +385 91 6060221" trazi ~254px. Na 360px sirine unutrasnjost panela
   nudi ~260px, pa je gumb prelazio preko ruba. Kako body ima overflow-x:hidden,
   visak se nije vidio kao scroll nego je odrezan - nestajali su rub i padding.
   Rjesenje: ispod 620px natpisi u gumbima smiju prelomiti redak.
   ------------------------------------------------------------------------ */
@media (max-width: 620px) {
  .btn {
    white-space: normal;
    padding-left: 20px;
    padding-right: 20px;
    line-height: 1.3;
  }
  .btn--ghost { padding-left: 18px; padding-right: 18px; }
  .btn--sm { padding-left: 16px; padding-right: 16px; }
}

@media (max-width: 560px) {
  .hero__actions .btn { width: 100%; }
  .trust__inner { gap: 22px; }
  .trust__logos { gap: 18px; }
  .card__price { font-size: 40px; }

  /* manje unutarnjeg razmaka da sadrzaju ostane vise sirine */
  .booking__placeholder { padding: 24px 20px; }
  .booking__facts { padding: 18px 18px; }
  .card { padding: 26px 20px; }
  .card--featured .card__inner { padding: 28px 20px 26px; }
  .extras { padding: 22px 18px; }
  .contact-card { padding: 24px 20px; }
  .page-cta__inner { padding: 26px 20px; }
  .step { padding: 24px 20px; }
  .ozone { padding: 24px 20px; }

  /* donja fiksna traka: kratki natpisi, bez prelamanja */
  .mobile-bar { gap: 8px; padding-left: 12px; padding-right: 12px; }
  .mobile-bar .btn { padding-left: 10px; padding-right: 10px; font-size: 14px; }
}

/* Vrlo uski uredaji (npr. 320px) */
@media (max-width: 380px) {
  .booking__placeholder { padding: 22px 16px; }
  .extras { padding: 20px 15px; }
  .card { padding: 24px 17px; }
  .card--featured .card__inner { padding: 26px 17px 24px; }
  .extra { font-size: 14px; }
  .mobile-bar .btn { font-size: 13px; }
}
