/**
 * Globalni stilovi — brand se mijenja kroz :root varijable.
 * Paleta: plava / crna / bijela (logotip). Prilagodite --hero-image.
 */

:root {
  /* Brand — plava / crna / bijela (logotip) */
  --color-primary: #1cb0e8;
  --color-primary-hover: #1596c9;
  --color-accent: #4bd0ff;
  --color-accent-hover: #7adaff;
  --color-heading: #000;
  --color-surface: #f0f7fb;
  --color-surface-dark: #000;
  --color-text: #000;
  --color-text-muted: #2b2b2b;
  --color-border: rgba(0, 0, 0, 0.12);
  --color-white: #fff;
  --color-emergency: #1cb0e8;
  --color-emergency-soft: rgba(28, 176, 232, 0.22);

  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-display: "Fraunces", Georgia, serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.12);

  --header-height: 72px;
  --container-max: 1200px;
  --container-padding-x: 1rem;
  --transition: 0.22s ease;

  /* Hero: rezervirano; stvarna slika iz includes/config.php ($unsplashHero) na početnoj */
  --hero-image: url("../img/brko-zadar-hero-placeholder.svg");
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-white);
  overflow-x: hidden;
}

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

a {
  color: var(--color-primary);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-accent);
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  padding: 0.6rem 1rem;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-sm);
  z-index: 1000;
  transition: top var(--transition);
}

.skip-link:focus {
  top: 1rem;
}

.container {
  box-sizing: border-box;
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding-x);
  padding-right: var(--container-padding-x);
}

/* ----- Header ----- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--transition);
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.brand:hover {
  color: inherit;
}

/* Lik je visok: ograničena visina u navigaciji, širina automatski */
.brand__logo-img {
  flex-shrink: 0;
  height: 48px;
  width: auto;
  object-fit: contain;
  object-position: center bottom;
  display: block;
}

.brand__text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(0.95rem, 2.6vw, 1.12rem);
  line-height: 1.2;
  white-space: normal;
}

.brand__tag {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  line-height: 1.25;
  white-space: normal;
}

.brand__services {
  font-size: 0.68rem;
  color: var(--color-text-muted);
  line-height: 1.2;
  white-space: normal;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: var(--radius-sm);
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.nav-toggle__bar {
  display: block;
  height: 2px;
  width: 24px;
  background: var(--color-primary);
  margin-inline: auto;
  transition: transform var(--transition), opacity var(--transition);
}

.site-nav {
  position: fixed;
  inset: var(--header-height) 0 auto 0;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.site-nav.is-open {
  max-height: 320px;
}

.site-nav__list {
  list-style: none;
  margin: 0;
  padding: 0.5rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.site-nav__list a {
  display: block;
  padding: 0.65rem 0.5rem;
  text-decoration: none;
  color: var(--color-text);
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}

.site-nav__list a:hover {
  background: var(--color-surface);
  color: var(--color-primary);
}

.site-nav__logo-item {
  display: none;
}

.site-nav__urgent-btn {
  position: relative;
  color: #fff !important;
  background: linear-gradient(120deg, #1297df, #1cb0e8, #4bd0ff);
  border: 1px solid rgba(28, 176, 232, 0.65) !important;
  border-radius: 999px !important;
  font-weight: 700;
  padding-inline: 1rem !important;
  box-shadow: 0 6px 14px rgba(28, 176, 232, 0.25);
  animation: urgent-nav-signal 2.6s ease-in-out infinite;
  transition: background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  overflow: visible;
}

.site-nav__urgent-btn::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 999px;
  border: 1px solid rgba(75, 208, 255, 0.55);
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
  animation: urgent-nav-ring 2.6s ease-out infinite;
}

.site-nav__list .site-nav__urgent-btn:hover,
.site-nav__list .site-nav__urgent-btn:focus-visible {
  color: #fff !important;
  background: linear-gradient(120deg, #0e82bf, #1493c2, #34bce8) !important;
  border-color: rgba(22, 156, 205, 0.8) !important;
  box-shadow: 0 6px 14px rgba(28, 176, 232, 0.3);
  text-decoration: none;
}

@keyframes urgent-nav-signal {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 6px 14px rgba(28, 176, 232, 0.24);
  }
  50% {
    opacity: 0.92;
    box-shadow: 0 7px 16px rgba(28, 176, 232, 0.34);
  }
}

@keyframes urgent-nav-ring {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  30% {
    opacity: 0.55;
  }
  100% {
    opacity: 0;
    transform: scale(1.12);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-nav__urgent-btn,
  .site-nav__urgent-btn::after {
    animation: none;
  }
}

body.nav-open .nav-toggle__bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

body.nav-open .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle__bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    max-height: none !important;
    overflow: visible;
    background: transparent;
    border: none;
  }

  .site-nav__list {
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 0.25rem;
  }

  .site-nav__list a {
    padding: 0.5rem 0.85rem;
  }

  .brand__logo-img {
    height: 54px;
  }
}

/* Offset for sticky header + anchor */
section[id] {
  scroll-margin-top: calc(var(--header-height) + 12px);
}

/* ----- Hero ----- */
.hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(26rem, 78vh, 48rem);
  display: grid;
  align-items: center;
  padding: clamp(2.5rem, 7vw, 4.5rem) 0;
  color: var(--color-white);
}

.hero__media {
  position: absolute;
  inset: 0;
  background-color: var(--color-surface-dark);
  transform-origin: center center;
  will-change: transform;
  animation: hero-zoom-loop 22s ease-in-out infinite alternate;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

@keyframes hero-zoom-loop {
  0% {
    transform: scale(1.02);
  }

  100% {
    transform: scale(1.09);
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      115deg,
      rgba(0, 0, 0, 0.82) 0%,
      rgba(0, 24, 36, 0.68) 45%,
      rgba(0, 40, 55, 0.42) 100%
    ),
    radial-gradient(ellipse 80% 60% at 70% 40%, transparent 0%, rgba(0, 0, 0, 0.45) 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero__content {
  max-width: 100%;
}

/* Hitni naglasak — čitljivo na pozadini */
.hero__emergency {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  margin: 0 0 1.35rem;
  padding: 0.55rem 1rem 0.55rem 0.65rem;
  max-width: max-content;
  font-size: 0.8125rem;
  line-height: 1.45;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  background: var(--color-emergency-soft);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-left: 3px solid var(--color-emergency);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
}

.hero__emergency-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-emergency);
  box-shadow: 0 0 0 3px rgba(28, 176, 232, 0.4);
  animation: hero-pulse 2s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .hero__emergency-dot {
    animation: none;
  }

  .hero__media {
    animation: none;
    transform: none;
    will-change: auto;
  }
}

@keyframes hero-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.85;
    transform: scale(0.92);
  }
}

.hero__emergency-label {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.75rem;
  color: #fff;
}

.hero__emergency-sep {
  opacity: 0.55;
  font-weight: 400;
}

.hero__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 5.5vw, 3.05rem);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.35);
}

.hero__lead {
  margin: 0 0 1.85rem;
  font-size: clamp(1rem, 2.4vw, 1.2rem);
  line-height: 1.5;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  max-width: 100%;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.25);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
}

.btn__icon {
  display: inline-flex;
  flex-shrink: 0;
  opacity: 0.95;
}

.btn--primary .btn__icon {
  color: var(--color-white);
}

@media (max-width: 540px) {
  .hero__emergency {
    flex-direction: column;
    align-items: flex-start;
    max-width: 100%;
  }

  .hero__emergency-sep {
    display: none;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn--wide-sm {
    width: 100%;
    justify-content: center;
  }
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.35rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.btn--primary:hover {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  color: var(--color-white);
}

.btn--ghost {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-white);
}

.btn--secondary {
  background: var(--color-white);
  color: var(--color-heading);
  border-color: var(--color-border);
}

.btn--secondary:hover {
  border-color: var(--color-primary);
  color: var(--color-heading);
}

.btn--urgent {
  background: var(--color-primary);
  color: var(--color-heading);
  border-color: var(--color-primary);
  font-size: clamp(1rem, 2vw, 1.1rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 0.95rem 1.4rem;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.12), 0 14px 30px rgba(0, 0, 0, 0.28);
}

.btn--urgent:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-heading);
  transform: translateY(-2px);
}

.btn--sm {
  padding: 0.55rem 1rem;
  font-size: 0.875rem;
}

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

/* ----- Sections ----- */
.section {
  padding: clamp(3.8rem, 7vw, 5.4rem) 0;
}

.section--muted {
  background: var(--color-surface);
}

.section--emergency {
  background: linear-gradient(160deg, #000, #0a1a22);
  color: var(--color-white);
  border-top: 3px solid var(--color-primary);
  border-bottom: 3px solid var(--color-primary);
}

.emergency-cta {
  text-align: center;
  display: grid;
  gap: 0.9rem;
  justify-items: center;
}

.emergency-cta__kicker {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
}

.emergency-cta__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 6.5vw, 3.6rem);
  line-height: 1.05;
  font-weight: 700;
  color: var(--color-white);
  text-wrap: balance;
}

.emergency-cta__phone {
  margin: 0;
  font-weight: 800;
  font-size: clamp(1.35rem, 4.2vw, 2.4rem);
  line-height: 1.1;
  letter-spacing: 0.03em;
  color: var(--color-accent);
}

/* ----- Booking CTA (ServiceM8) ----- */
.section--booking {
  background: linear-gradient(180deg, #fff 0%, var(--color-surface) 55%, #fff 100%);
  border-block: 1px solid rgba(28, 176, 232, 0.35);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.booking-cta {
  max-width: 44rem;
  margin-inline: auto;
}

.booking-cta__inner {
  text-align: center;
  display: grid;
  gap: 1rem;
}

.booking-cta__kicker {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-primary);
}

.booking-cta__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 5vw, 2.65rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--color-heading);
  text-wrap: balance;
}

.booking-cta__lead {
  margin: 0;
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  max-width: 36rem;
  margin-inline: auto;
}

.booking-cta__bullets {
  list-style: none;
  margin: 0.25rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  text-align: left;
  max-width: 32rem;
  margin-inline: auto;
}

.booking-cta__bullets li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.95rem;
  color: var(--color-text);
  font-weight: 500;
}

.booking-cta__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(28, 176, 232, 0.35);
}

.booking-cta__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  margin-top: 0.5rem;
}

.btn--booking {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  font-size: clamp(1rem, 2.2vw, 1.12rem);
  font-weight: 700;
  padding: 1rem 1.5rem;
  align-items: center;
  gap: 0.7rem;
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.18);
}

.btn--booking .btn__icon {
  color: var(--color-white);
  opacity: 0.95;
  align-self: center;
}

.btn--booking .btn__icon svg {
  width: 24px;
  height: 24px;
}

.btn--booking__text {
  display: inline-block;
  text-align: left;
  line-height: 1.28;
}

.btn--booking:hover {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
}

@media (max-width: 767px) {
  .btn--booking {
    width: 100%;
    min-width: 0;
    max-width: 24rem;
    justify-content: center;
    padding: 1.05rem 1.35rem;
  }

  .btn--booking .btn__icon svg {
    width: 28px;
    height: 28px;
  }

  .btn--booking__text {
    font-size: 1.08rem;
    font-weight: 700;
  }
}

.booking-cta__servicem8 {
  display: inline-block;
  line-height: 0;
  border-radius: var(--radius-sm);
  transition: opacity var(--transition), transform var(--transition);
}

.booking-cta__servicem8:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.booking-cta__servicem8 img {
  display: block;
  width: min(240px, 88vw);
  height: auto;
}

.booking-cta__fineprint {
  margin: 0;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.45;
  max-width: 34rem;
  margin-inline: auto;
}

/* ----- FAQ (akordeon — kartice kao gumbi) ----- */
.section--faq {
  background: #eceff0;
}

.faq {
  max-width: 38rem;
  margin-inline: auto;
  text-align: center;
}

.faq .section-header {
  text-align: center;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  text-align: left;
}

.faq__item {
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 18px;
  background: var(--color-white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}

.faq__item:hover {
  box-shadow: 0 6px 26px rgba(0, 0, 0, 0.09);
}

.faq__summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.15rem 1.1rem 1.25rem;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.4;
  color: var(--color-heading);
  transition: background var(--transition);
}

.faq__summary::-webkit-details-marker {
  display: none;
}

.faq__q {
  flex: 1;
  min-width: 0;
  text-align: left;
}

.faq__toggle {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.05rem;
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1;
  color: var(--color-heading);
}

.faq__toggle::before {
  content: "+";
}

.faq__item[open] .faq__toggle::before {
  content: "\00d7";
  font-size: 1.65rem;
  line-height: 0.9;
}

.faq__item[open] .faq__summary {
  background: rgba(0, 0, 0, 0.02);
}

.faq__summary:hover {
  background: rgba(0, 0, 0, 0.03);
}

.faq__panel {
  padding: 0 1.25rem 1.15rem;
  background: var(--color-white);
}

.faq__text {
  margin: 0;
  padding-top: 0.15rem;
  font-size: 0.9rem;
  line-height: 1.65;
  color: #4a4a4a;
}

.faq__footer {
  margin: 1.75rem 0 0;
  text-align: center;
}

.section-header {
  margin-bottom: 2.2rem;
}

.section-header--center {
  text-align: center;
  max-width: 40rem;
  margin-inline: auto;
  margin-bottom: 2.8rem;
}

.section-title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.4vw, 2.35rem);
  font-weight: 700;
  color: var(--color-heading);
}

.section-subtitle {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 1rem;
}

.section-header--on-dark .section-title {
  color: var(--color-white);
}

.section-header--on-dark .section-subtitle {
  color: rgba(255, 255, 255, 0.85);
}

/* ----- About ----- */
.about {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.about__highlights {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.about__highlights li {
  padding-left: 1.25rem;
  position: relative;
}

.about__highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-accent);
}

.about__figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about__figure img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

@media (min-width: 900px) {
  .about {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }

  .about--reverse .about__figure {
    order: -1;
  }
}

/* ----- Cards ----- */
.cards-grid {
  display: grid;
  gap: 1.25rem;
}

.cards-grid--services {
  grid-template-columns: 1fr;
}

@media (min-width: 960px) {
  .cards-grid--services {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cards-grid--offers {
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .cards-grid--offers {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .cards-grid--offers {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(28, 176, 232, 0.4);
}

.card--service {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card__service-media {
  margin: 0;
  aspect-ratio: 5 / 3;
  overflow: hidden;
}

.card__service-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card--service .card__title,
.card--service .card__desc {
  padding-inline: 1.25rem;
}

.card--service .card__title {
  margin-top: 1rem;
}

.card--service .card__desc {
  padding-bottom: 1.2rem;
}

.card__title {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-heading);
}

.card__desc {
  margin: 0;
  flex: 1;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.card__meta {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  font-weight: 600;
}

.price {
  color: var(--color-heading);
}

.card--offer {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0;
}

.card--offer:hover .card__media img {
  transform: scale(1.03);
}

.card__media {
  overflow: hidden;
  aspect-ratio: 5 / 3;
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.card__body .btn {
  align-self: flex-start;
  margin-top: auto;
}

.section--muted .card {
  background: var(--color-white);
}

/* ----- Stats ----- */
.section--stats {
  background: linear-gradient(160deg, var(--color-surface-dark), #0d2530);
  color: var(--color-white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem 1.5rem;
  }
}

.stat {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1.1;
}

.stat-block__label {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

/* ----- Reviews ----- */
.section--reviews {
  background: linear-gradient(180deg, #fff 0%, #f8fcff 100%);
}

.section--reviews .container {
  max-width: 100%;
  padding-inline: 0;
}

.section--reviews .section-header,
.section--reviews .reviews__cta {
  padding-inline: clamp(1rem, 2.8vw, 2.5rem);
}

.reviews-slider {
  position: relative;
  overflow: hidden;
  padding: 1rem 0 1.1rem;
  cursor: grab;
}

.reviews-slider.is-dragging {
  cursor: grabbing;
}

.cards-grid--reviews {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  width: max-content;
  will-change: transform;
  padding-inline: clamp(0.75rem, 1.8vw, 1.5rem);
}

.card--review {
  flex: 0 0 clamp(250px, 24vw, 360px);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  border-radius: 16px;
  border: 1px solid rgba(28, 176, 232, 0.22);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
  min-height: 188px;
}

.card__stars {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #f7b500;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.card__title--review {
  font-size: 1.05rem;
}

.reviews__cta {
  margin: 1.8rem 0 0;
  text-align: center;
}

/* ----- Contact ----- */
.contact {
  display: grid;
  gap: 2.5rem;
}

.contact__list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact__list a {
  font-weight: 600;
}

.contact__label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  margin-bottom: 0.2rem;
}

.contact__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.contact-form {
  background: var(--color-white);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.contact-form__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.8rem, 4.2vw, 3rem);
  font-family: var(--font-sans);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-heading);
}

.contact-form__note {
  margin: 0 0 1.25rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.field {
  display: block;
  margin-bottom: 1rem;
}

.field__label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--color-text);
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  font: inherit;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(28, 176, 232, 0.22);
}

.contact-form.form--was-validated .field input:invalid,
.contact-form.form--was-validated .field textarea:invalid {
  border-color: #d92d20;
  box-shadow: 0 0 0 3px rgba(217, 45, 32, 0.14);
  background: #fff8f7;
}

.field--checkbox {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  margin-top: -0.15rem;
}

.field--checkbox input[type="checkbox"] {
  margin-top: 0.2rem;
  width: 1.05rem;
  height: 1.05rem;
  flex: 0 0 1.05rem;
  appearance: none;
  -webkit-appearance: none;
  border: 2px solid rgba(11, 35, 52, 0.32);
  border-radius: 3px;
  background: #fff;
  cursor: pointer;
  transition: border-color var(--transition), background-color var(--transition), box-shadow var(--transition);
}

.field--checkbox input[type="checkbox"]:checked {
  border-color: var(--color-primary);
  background-color: var(--color-primary);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='white' d='M6.2 11.5 2.9 8.2l1.1-1.1 2.2 2.2 5-5 1.1 1.1z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.82rem 0.82rem;
}

.field--checkbox input[type="checkbox"]:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(28, 176, 232, 0.24);
}

.contact-form.form--was-validated .field--checkbox input[type="checkbox"]:invalid {
  border-color: #d92d20;
  box-shadow: 0 0 0 3px rgba(217, 45, 32, 0.14);
}

.field--checkbox span {
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--color-text-muted);
}

.field--checkbox a {
  color: var(--color-primary-dark);
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.hp {
  display: none !important;
}

.ajax-contact-card .fields {
  display: flex;
  flex-direction: column;
  gap: 0.72rem;
}

.ajax-contact-card .field {
  margin-bottom: 0.1rem;
}

.ajax-contact-card .field input,
.ajax-contact-card .field textarea {
  padding: 0.58rem 0.78rem;
  border-radius: 10px;
  font-size: 0.96rem;
}

.ajax-contact-card .field textarea {
  min-height: 96px;
}

.ajax-contact-card .contact-form__title {
  margin-bottom: 0.6rem;
}

.ajax-contact-card .checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-top: 0.05rem;
}

.ajax-contact-card .custom-checkbox {
  position: relative;
  flex-shrink: 0;
  margin-top: 1px;
}

.ajax-contact-card .custom-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 22px;
  height: 22px;
  cursor: pointer;
  margin: 0;
}

.ajax-contact-card .custom-checkbox .box {
  width: 22px;
  height: 22px;
  border: 2px solid var(--color-border);
  border-radius: 5px;
  background: var(--color-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.18s, background 0.18s;
  pointer-events: none;
}

.ajax-contact-card .custom-checkbox input:checked + .box {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.ajax-contact-card .custom-checkbox input:checked + .box::after {
  content: "";
  display: block;
  width: 5px;
  height: 9px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translateY(-1px);
}

.ajax-contact-card .custom-checkbox input:focus + .box {
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.2);
}

.ajax-contact-card .checkbox-label {
  font-size: 0.84rem;
  color: #555;
  line-height: 1.5;
  cursor: pointer;
}

.ajax-contact-card .status {
  display: none;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
}

.ajax-contact-card .status.success {
  display: block;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #16a34a;
}

.ajax-contact-card .status.error {
  display: block;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: #ef4444;
}

.ajax-contact-card .field-error {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12) !important;
}

.form-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(7, 13, 18, 0.58);
}

.form-modal[hidden] {
  display: none;
}

.form-modal__dialog {
  width: min(100%, 32rem);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  padding: 1.2rem 1.2rem 1.1rem;
}

.form-modal__dialog h3 {
  margin: 0 0 0.45rem;
  color: var(--color-heading);
}

.form-modal__dialog p {
  margin: 0 0 1rem;
  color: var(--color-text);
}

body.modal-open {
  overflow: hidden;
}

@media (min-width: 900px) {
  .contact {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

/* ----- Footer ----- */
.site-footer {
  background: var(--color-surface-dark);
  color: rgba(255, 255, 255, 0.9);
  padding: 3rem 0 0;
}

.site-footer a {
  color: var(--color-white);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--color-accent);
}

.footer-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 768px) and (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-map-col {
    grid-column: 1 / -1;
    max-width: 28rem;
    margin-inline: auto;
    width: 100%;
  }
}

@media (min-width: 992px) {
  .footer-grid {
    grid-template-columns: 1.15fr 0.9fr 0.95fr minmax(200px, 1.05fr);
  }
}

.footer-map-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 0;
}

.footer-map {
  width: 100%;
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  aspect-ratio: 4 / 3;
  background: rgba(0, 0, 0, 0.2);
}

.footer-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.footer-address {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
  text-align: left;
}

.footer-brand__logo-img {
  height: 72px;
  width: auto;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 0.5rem;
  display: block;
}

.footer-brand__name {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-white);
}

.footer-brand__desc {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.55;
}

.footer-heading {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
}

.footer-nav ul,
.footer-contact__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.95rem;
}

.footer-bottom {
  margin-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1rem 0;
}

.footer-bottom__inner {
  text-align: center;
  display: flex;
  justify-content: center;
}

.footer-bottom__line {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
  max-width: none;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.footer-bottom__line a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.footer-bottom__line a:hover {
  color: var(--color-accent);
}

.footer-bottom__credit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.24rem 0.62rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1;
  color: #fff !important;
  text-decoration: none !important;
  background: linear-gradient(120deg, #1297df, #1cb0e8, #4bd0ff, #1cb0e8);
  background-size: 240% 240%;
  box-shadow: 0 4px 10px rgba(28, 176, 232, 0.2);
  transform: translateZ(0);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
  animation: footer-credit-gradient 5s ease infinite;
}

.footer-bottom__credit-btn:hover {
  color: #fff !important;
  transform: scale(1.08);
  box-shadow: 0 6px 14px rgba(28, 176, 232, 0.28);
}

.footer-bottom__credit-btn:focus-visible {
  outline: 2px solid rgba(75, 208, 255, 0.95);
  outline-offset: 2px;
}

@keyframes footer-credit-gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* ----- Floating WhatsApp button ----- */
.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1100;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #25d366;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.26);
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.whatsapp-float svg {
  width: 1.55rem;
  height: 1.55rem;
  display: block;
}

.whatsapp-float:hover {
  background: #1ebe5a;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.3);
}

.whatsapp-float:focus-visible {
  outline: 3px solid rgba(28, 176, 232, 0.45);
  outline-offset: 2px;
}

@media (min-width: 768px) {
  .whatsapp-float {
    display: none;
  }
}

/* ----- Scroll reveal ----- */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ----- 2026 refresh: moderniji, uredniji layout (bez promjene sadržaja) ----- */
:root {
  --font-display: var(--font-sans);
  --container-max: 1140px;
  --radius-md: 16px;
  --radius-lg: 26px;
  --shadow-sm: 0 10px 24px rgba(9, 22, 35, 0.08);
  --shadow-md: 0 20px 46px rgba(9, 22, 35, 0.14);
}

body {
  background: linear-gradient(180deg, #f7fbfd 0%, #f4f9fc 40%, #ffffff 100%);
  color: #0e1a24;
}

p {
  max-width: 68ch;
}

.section {
  padding: clamp(4.2rem, 8vw, 6.6rem) 0;
}

.section-header {
  margin-bottom: clamp(1.8rem, 4vw, 3rem);
}

.section-title {
  font-size: clamp(1.8rem, 4.2vw, 3rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.section-subtitle {
  max-width: 70ch;
  margin-inline: auto;
  font-size: clamp(1rem, 2vw, 1.12rem);
  line-height: 1.65;
  color: #314657;
}

.hero {
  min-height: clamp(33rem, 82vh, 46rem);
  padding: clamp(3rem, 9vw, 7rem) 0;
}

.hero__overlay {
  background:
    linear-gradient(112deg, rgba(5, 16, 24, 0.84) 8%, rgba(5, 21, 33, 0.62) 52%, rgba(8, 33, 48, 0.38) 100%),
    radial-gradient(circle at 82% 22%, rgba(28, 176, 232, 0.2) 0%, rgba(0, 0, 0, 0) 44%);
}

.hero__content {
  max-width: min(780px, 100%);
  padding: clamp(1.2rem, 2.4vw, 1.8rem);
  border-radius: 22px;
  background: linear-gradient(165deg, rgba(7, 18, 27, 0.5), rgba(7, 18, 27, 0.22));
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(4px);
}

.hero__title {
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1.05;
  margin-bottom: 0.95rem;
}

.hero__lead {
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 2.2vw, 1.22rem);
}

.btn {
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 0.82rem 1.4rem;
}

.btn--primary {
  box-shadow: 0 10px 22px rgba(28, 176, 232, 0.3);
}

.section--emergency {
  border-top: 0;
  border-bottom: 0;
  background: linear-gradient(140deg, #031019, #0b2a39);
}

.emergency-cta {
  gap: 1.1rem;
}

.emergency-cta__title {
  font-size: clamp(2rem, 5.5vw, 3.8rem);
}

.about {
  gap: clamp(1.4rem, 3.2vw, 3.4rem);
}

.about__text {
  max-width: 72ch;
}

.about__text > p {
  margin: 0 0 1rem;
}

.about__highlights {
  margin-top: 1.5rem;
  gap: 0.75rem;
}

.about__highlights li {
  padding: 0.9rem 1rem 0.9rem 2rem;
  border-radius: 12px;
  background: #f3f9fd;
  border: 1px solid rgba(28, 176, 232, 0.2);
}

.about__highlights li::before {
  left: 0.95rem;
  top: 1.38rem;
  width: 8px;
  height: 8px;
}

.about__figure img {
  aspect-ratio: 5 / 4;
}

.section--muted {
  background: linear-gradient(180deg, #f2f8fc 0%, #eef6fb 100%);
}

.cards-grid--services {
  gap: clamp(1rem, 2.2vw, 1.5rem);
}

@media (min-width: 700px) {
  .cards-grid--services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1120px) {
  .cards-grid--services {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.card {
  border-color: rgba(13, 33, 48, 0.12);
}

.card--service {
  height: 100%;
}

.card--service .card__title {
  font-size: 1.08rem;
  line-height: 1.25;
}

.card--service .card__desc {
  font-size: 0.93rem;
  line-height: 1.58;
  padding-bottom: 1.35rem;
}

.section--booking {
  border-block: 0;
  background: transparent;
}

.booking-cta__inner {
  background: #fff;
  border: 1px solid rgba(28, 176, 232, 0.2);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  padding: clamp(1.4rem, 4vw, 2.4rem);
}

.section--faq {
  background: transparent;
}

.faq {
  max-width: 52rem;
}

.faq__item {
  border-radius: 14px;
}

.faq__summary {
  font-size: 1.02rem;
}

.faq__text {
  color: #33495a;
  font-size: 0.95rem;
}

.section--stats {
  background: linear-gradient(160deg, #071a27, #0c3245);
}

.stat-block {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1rem 0.6rem;
}

.stat {
  font-family: var(--font-sans);
  font-weight: 800;
}

.section--reviews .container {
  width: 100%;
  max-width: 100%;
  padding-inline: 0;
}

.section--reviews .section-header,
.section--reviews .reviews__cta {
  padding-inline: 0;
}

.reviews__cta {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: none;
  margin-inline: auto;
  text-align: center;
}

.reviews__cta .btn {
  margin-inline: auto;
}

.cards-grid--reviews {
  width: 100%;
  padding-inline: 0;
  gap: 1.1rem;
}

.card--review {
  max-width: 24rem;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.contact {
  gap: clamp(1.3rem, 3.4vw, 2.8rem);
}

.contact__info,
.contact__form-wrap {
  background: #fff;
  border: 1px solid rgba(10, 33, 49, 0.12);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  padding: clamp(1.15rem, 2.5vw, 1.8rem);
}

.contact-form {
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
}

.contact__list {
  gap: 0.8rem;
}

.field input,
.field textarea {
  border-radius: 12px;
  background: #fbfdff;
  border-color: rgba(11, 35, 52, 0.2);
}

.field input:focus,
.field textarea:focus {
  box-shadow: 0 0 0 4px rgba(28, 176, 232, 0.18);
}

@media (max-width: 767px) {
  .hero__content {
    padding: 1rem;
  }

  .section {
    padding: 3.8rem 0;
  }

  .card--review {
    max-width: 86vw;
  }

  .section--reviews .section-header,
  .section--reviews .reviews__cta {
    padding-inline: 1rem;
  }
}

/* Elegantni signal za točku u hero traci */
.hero__emergency-dot {
  position: relative;
  animation: emergency-dot-blink 2.2s ease-in-out infinite;
}

.hero__emergency-dot::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 999px;
  border: 1px solid rgba(75, 208, 255, 0.65);
  opacity: 0;
  transform: scale(0.75);
  animation: emergency-dot-ring 2.2s ease-out infinite;
}

@keyframes emergency-dot-blink {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(28, 176, 232, 0.55);
  }

  35% {
    opacity: 0.45;
    transform: scale(0.86);
    box-shadow: 0 0 0 4px rgba(28, 176, 232, 0.12);
  }

  55% {
    opacity: 1;
    transform: scale(1.03);
    box-shadow: 0 0 0 1px rgba(28, 176, 232, 0.25);
  }
}

@keyframes emergency-dot-ring {
  0% {
    opacity: 0;
    transform: scale(0.75);
  }

  28% {
    opacity: 0.75;
  }

  100% {
    opacity: 0;
    transform: scale(1.7);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__emergency-dot,
  .hero__emergency-dot::after {
    animation: none;
  }

  .hero__emergency-dot::after {
    display: none;
  }
}

/* Mobilna navigacija: fullscreen light blur + čisti linkovi */
@media (max-width: 767px) {
  body.nav-open {
    overflow: hidden;
  }

  body.nav-open .nav-toggle {
    position: fixed;
    top: 14px;
    right: 14px;
    z-index: 130;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(28, 176, 232, 0.28);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  body.nav-open .nav-toggle__bar {
    background: var(--color-primary-hover);
  }

  .site-nav {
    inset: 0;
    z-index: 120;
    max-height: 100dvh;
    height: 100dvh;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow-y: auto;
    border: 0;
    background: rgba(244, 250, 255, 0.94);
    backdrop-filter: blur(20px) saturate(135%);
    -webkit-backdrop-filter: blur(20px) saturate(135%);
    transition: opacity 0.28s ease, visibility 0.28s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    max-height: 100dvh;
  }

  .site-nav__list {
    min-height: 100dvh;
    justify-content: center;
    align-items: center;
    gap: 0.9rem;
    padding: calc(var(--header-height) + 1.5rem) 1.1rem 2rem;
  }

  .site-nav__logo-item {
    display: block;
    list-style: none;
    margin: 0 0 0.45rem;
    padding: 0;
  }

  .site-nav__logo-img {
    display: block;
    width: 88px;
    height: auto;
    margin-inline: auto;
    opacity: 0.92;
    filter: drop-shadow(0 6px 12px rgba(28, 176, 232, 0.18));
  }

  .site-nav__list a {
    width: auto;
    text-align: center;
    font-size: clamp(1.35rem, 5.6vw, 2rem);
    line-height: 1.2;
    font-weight: 800;
    padding: 0.42rem 0.6rem;
    color: var(--color-primary);
    background: transparent;
    border: 0;
    border-radius: 0;
  }

  .site-nav__list a:hover,
  .site-nav__list a:focus-visible {
    color: var(--color-primary-hover);
    background: transparent;
    border: 0;
    text-decoration: underline;
    text-underline-offset: 0.2em;
  }

  .site-nav__urgent-btn {
    margin-top: 0.35rem;
    padding: 0.82rem 1.4rem !important;
    border-radius: 999px !important;
    color: #fff !important;
    background: linear-gradient(120deg, #1297df, #1cb0e8, #4bd0ff) !important;
    box-shadow: 0 10px 20px rgba(28, 176, 232, 0.28);
    text-decoration: none !important;
  }

  .site-nav__urgent-btn:hover,
  .site-nav__urgent-btn:focus-visible {
    color: #fff !important;
    background: linear-gradient(120deg, #1087c8, #169ccd, #3ac9f7) !important;
    text-decoration: none !important;
  }
}
