﻿/*
  Zamijeniti neutralne placeholder fotografije stvarnim fotografijama u assets/images/.
  Prije objave aĹľurirati nepotvrÄ‘ena radna vremena i potvrditi placeholder e-mail.
*/
:root {
  --bg: #ffffff;
  --soft: #f2fbfb;
  --soft-blue: #edf8f1;
  --mint: #dff7ef;
  --primary: #00a651;
  --primary-dark: #007a44;
  --accent: #caa052;
  --accent-soft: #fbf3df;
  --green: #00a651;
  --gold: #caa052;
  --text: #18362a;
  --muted: #657985;
  --line: #d9eaef;
  --card: #ffffff;
  --shadow: 0 18px 42px rgba(0, 122, 68, 0.13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(217, 234, 239, 0.8);
  box-shadow: 0 8px 22px rgba(0, 122, 68, 0.06);
  backdrop-filter: blur(14px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--primary-dark);
  font-weight: 900;
  text-decoration: none;
}
.brand-logo {
  display: block;
  width: 52px;
  height: 52px;
  object-fit: contain;
}
.brand-text {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 1.18rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.8px;
}
.menu-toggle {
  display: grid;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--primary-dark);
}
.site-nav {
  position: absolute;
  left: 20px;
  right: 20px;
  top: 70px;
  display: none;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.site-nav.is-open { display: grid; }
.site-nav a {
  padding: 11px 10px;
  color: var(--muted);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.site-nav a:hover { color: var(--primary-dark); }
.home-nav-link {
  min-width: 44px;
}
.home-nav-link img {
  display: block;
  width: 24px;
  height: 24px;
}

.section-inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}
.section-inner.narrow {
  width: min(860px, calc(100% - 40px));
}
.section { padding: 76px 0; }
.muted {
  background:
    radial-gradient(circle at 12% 18%, rgba(202, 160, 82, 0.12), transparent 30%),
    radial-gradient(circle at 88% 6%, rgba(0, 166, 81, 0.12), transparent 34%),
    var(--soft);
}
.hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 74px;
  background: #eaf8ef;
}
.hero-background,
.hero-background::after,
.hero-bg-slide {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.hero-background {
  z-index: 0;
  pointer-events: none;
}
.hero-background::after {
  content: "";
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(248, 253, 249, 0.96) 0%, rgba(248, 253, 249, 0.9) 36%, rgba(248, 253, 249, 0.62) 68%, rgba(248, 253, 249, 0.78) 100%),
    radial-gradient(circle at 82% 20%, rgba(202, 160, 82, 0.18), transparent 28%),
    radial-gradient(circle at 72% 72%, rgba(0, 166, 81, 0.15), transparent 32%);
}
.hero-bg-slide {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 900ms ease;
}
.hero-bg-slide.is-active {
  opacity: 1;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero::before {
  width: 360px;
  height: 360px;
  right: -150px;
  top: 48px;
  background: rgba(0, 166, 81, 0.13);
  border: 34px solid rgba(255, 255, 255, 0.72);
}
.hero::after {
  width: 190px;
  height: 190px;
  left: -72px;
  bottom: 26px;
  background: rgba(202, 160, 82, 0.18);
}
.hero-grid,
.two-column,
.contact-grid,
.footer-grid {
  display: grid;
  gap: 30px;
}
.hero-grid { position: relative; z-index: 2; }
.hero-title-row {
  display: grid;
  grid-template-columns: 76px 1fr;
  align-items: center;
  gap: 16px;
}
.hero-logo {
  width: 76px;
  height: 96px;
  object-fit: contain;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 3px;
  background: var(--gold);
  border-radius: 999px;
}
h1, h2, h3 { line-height: 1.16; margin: 0 0 14px; }
h1, h2, h3,
.hero-panel strong,
.footer-menu strong,
.contact-card h3 {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
}
h1 {
  max-width: 720px;
  color: var(--primary-dark);
  font-size: clamp(2.6rem, 9vw, 5.25rem);
  font-weight: 900;
  letter-spacing: 0.6px;
}
.hero h1 {
  font-size: clamp(2.25rem, 7vw, 4.45rem);
}
h2 {
  color: var(--primary-dark);
  font-size: clamp(1.8rem, 6vw, 3.15rem);
}
h3 { font-size: 1.16rem; }
.privacy-page h1 {
  color: var(--primary-dark);
  font-size: clamp(2rem, 7vw, 3.6rem);
}
.privacy-page h2 {
  margin-top: 34px;
  font-size: clamp(1.35rem, 4vw, 2rem);
}
.privacy-page a {
  color: var(--primary-dark);
  font-weight: 800;
}
p { margin: 0 0 14px; }
.hero-lead {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.2rem;
}
.hero-badge {
  width: min(170px, 42vw);
  margin: 14px 0 2px;
  filter: drop-shadow(0 16px 18px rgba(0, 122, 68, 0.18));
}
.hero-badge-seal {
  display: block;
  width: 100%;
  height: auto;
}
.seal-edge {
  fill: var(--primary);
}
.seal-ring {
  fill: var(--primary-dark);
  stroke: rgba(255, 255, 255, 0.85);
  stroke-width: 5;
}
.seal-inner {
  fill: #fff;
  stroke: var(--gold);
  stroke-width: 4;
}
.seal-ribbon {
  fill: var(--primary-dark);
  stroke: #fff;
  stroke-width: 3;
}
.seal-number,
.seal-text {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-weight: 900;
  letter-spacing: 0.8px;
}
.seal-number {
  fill: #fff;
  font-size: 38px;
}
.seal-text {
  fill: #fff;
  font-size: 11px;
  text-transform: uppercase;
}
.seal-star {
  fill: var(--gold);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.button,
.text-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
  border: 0;
  cursor: pointer;
}
.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 14px 24px rgba(0, 122, 68, 0.22);
}
.secondary {
  color: var(--primary-dark);
  background: #fff;
  border: 1px solid rgba(0, 166, 81, 0.25);
}
.text-button {
  width: 100%;
  margin-top: auto;
  color: var(--primary-dark);
  background: linear-gradient(135deg, var(--soft-blue), var(--mint));
}
.maps-link {
  justify-content: flex-start;
  gap: 10px;
  min-height: 50px;
  padding: 10px 14px;
}
.maps-link img {
  display: block;
  width: 24px;
  height: auto;
}
.maps-link span {
  color: var(--primary-dark);
  font-weight: 900;
}
.hero-panel,
.contact-card,
.card,
.feature-list article,
.service-grid article {
  border: 1px solid rgba(217, 234, 239, 0.95);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}
.hero-panel {
  position: relative;
  display: grid;
  gap: 10px;
  align-content: center;
  padding: 28px;
  overflow: hidden;
}
.hero-panel::before {
  content: "";
  position: absolute;
  right: -52px;
  top: -52px;
  width: 150px;
  height: 150px;
  background: var(--accent-soft);
  border-radius: 50%;
}
.hero-panel strong {
  position: relative;
  color: var(--primary-dark);
  font-size: 1.22rem;
}
.hero-panel span {
  position: relative;
  color: var(--muted);
}

.partners-section {
  padding: 30px 0 34px;
  background: #fff;
  border-bottom: 1px solid rgba(217, 234, 239, 0.72);
  --partner-card-width: 152px;
  --partner-card-height: 78px;
  --partner-logo-width: 116px;
  --partner-logo-height: 42px;
}
.partners-slider {
  position: relative;
  overflow: hidden;
  padding: 8px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.partners-track {
  display: flex;
  width: max-content;
  flex-wrap: nowrap;
  gap: 16px;
  animation: partner-scroll 48s linear infinite;
}
.partners-slider:hover .partners-track,
.partners-slider:focus-within .partners-track {
  animation-play-state: paused;
}
.partner-logo {
  flex: 0 0 var(--partner-card-width);
  display: grid;
  place-items: center;
  width: var(--partner-card-width);
  height: var(--partner-card-height);
  padding: 14px 20px;
  border: 1px solid rgba(217, 234, 239, 0.9);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 122, 68, 0.07);
}
.partner-logo img {
  display: block;
  width: var(--partner-logo-width);
  height: var(--partner-logo-height);
  object-fit: contain;
}
@keyframes partner-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 8px)); }
}

.highlights,
.service-grid,
.feature-list,
.location-grid {
  display: grid;
  gap: 15px;
}
.highlights span,
.service-grid article {
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-weight: 800;
}
.highlights span {
  border-left: 5px solid var(--green);
}
.location-grid { margin-top: 26px; }
.card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 16px;
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(0, 122, 68, 0.17);
}
.card h3 { color: var(--primary-dark); }
.card p { color: var(--muted); }
.card strong { color: var(--text); }
.email-line {
  display: flex;
  align-items: center;
  gap: 9px;
  overflow-wrap: anywhere;
}
.icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 22px rgba(0, 122, 68, 0.1);
}
.icon-link img {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
}
.note { color: var(--muted); font-size: 0.92rem; }
.photo-slot {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding: 10px;
  color: var(--primary-dark);
  text-align: center;
  font-size: 0.86rem;
  font-weight: 800;
  background:
    radial-gradient(circle at 16% 20%, rgba(255, 255, 255, 0.92), transparent 18%),
    radial-gradient(circle at 84% 28%, rgba(202, 160, 82, 0.18), transparent 22%),
    linear-gradient(135deg, #edf9f2, #fff8e7);
  border: 1px dashed #8bbec6;
  border-radius: 8px;
}
.photo-slot img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 6px;
}
.photo-slot figcaption { padding: 2px 4px 4px; }
.photo-slot.wide { margin-top: 20px; }
.pharmacy-carousel {
  position: relative;
  overflow: hidden;
  margin: 0 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}
.carousel-track {
  position: relative;
  height: 0;
  padding-top: 75%;
}
.carousel-slide {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 220ms ease;
}
.carousel-slide.is-active {
  opacity: 1;
}
.carousel-control {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--primary-dark);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(217, 234, 239, 0.95);
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(0, 122, 68, 0.16);
  cursor: pointer;
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1;
  transform: translateY(-50%);
}
.carousel-control.prev { left: 10px; }
.carousel-control.next { right: 10px; }
.carousel-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 6px;
}
.carousel-dot {
  width: 7px;
  height: 7px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 0 0 1px rgba(0, 122, 68, 0.2);
}
.carousel-dot.is-active {
  background: var(--primary);
}
.feature-list article {
  padding: 19px;
  border-left: 5px solid var(--primary);
}
.service-grid article {
  min-height: 88px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(0, 166, 81, 0.09), transparent 42%),
    #fff;
}

.contact-form {
  display: grid;
  gap: 14px;
}
label {
  display: grid;
  gap: 7px;
  color: var(--primary-dark);
  font-weight: 800;
}
input,
select,
textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  background: #fff;
}
input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(0, 166, 81, 0.18);
  border-color: var(--primary);
}
.consent {
  grid-template-columns: 20px 1fr;
  align-items: start;
  color: var(--text);
  font-weight: 500;
}
.contact-card {
  align-self: start;
  padding: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(202, 160, 82, 0.18), transparent 32%),
    #fff;
}
.form-status { min-height: 24px; font-weight: 800; }
.form-status.error { color: #a23636; }
.form-status.success { color: var(--green); }

.site-footer {
  padding: 46px 0 22px;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 0%, rgba(202, 160, 82, 0.2), transparent 30%),
    linear-gradient(135deg, #f8fdf9, #e7f6ed 72%, #fff7e5);
}
.site-footer a {
  color: var(--primary-dark);
  text-decoration: none;
  font-weight: 800;
}
.site-footer a:hover { color: var(--primary); }
.footer-layout {
  display: grid;
  gap: 28px;
  align-items: start;
}
.footer-contact {
  max-width: 780px;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.footer-brand img {
  width: 44px;
  height: 52px;
  object-fit: contain;
}
.footer-brand strong {
  color: var(--primary-dark);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 1.22rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0;
}
.footer-contact p {
  margin-bottom: 8px;
}
.footer-menu {
  display: grid;
  gap: 9px;
  align-content: start;
  padding-top: 8px;
}
.footer-menu strong {
  color: var(--primary-dark);
  margin-bottom: 4px;
  font-size: 1rem;
}
.footer-menu a {
  display: inline-flex;
  width: fit-content;
  color: var(--text);
  font-weight: 700;
}
.footer-menu a:hover {
  color: var(--primary-dark);
}
.footer-email {
  margin: 6px 0;
  background: rgba(255, 255, 255, 0.96);
}
.copyright {
  width: min(1160px, calc(100% - 40px));
  margin: 28px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(0, 122, 68, 0.18);
  color: var(--muted);
}
.footer-disclaimer {
  width: min(1160px, calc(100% - 40px));
  margin: 8px auto 0;
  color: var(--muted);
  font-size: 0.94rem;
}

@media (min-width: 760px) {
  .partners-section {
    --partner-card-width: 176px;
    --partner-card-height: 88px;
    --partner-logo-width: 132px;
    --partner-logo-height: 48px;
  }
  .menu-toggle { display: none; }
  .site-header {
    padding: 16px max(28px, calc((100vw - 1160px) / 2));
  }
  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
  }
  .site-nav a {
    border-radius: 8px;
  }
  .site-nav a:hover {
    background: var(--soft-blue);
  }
  .hero-grid,
  .two-column,
  .contact-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
  }
  .location-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-layout {
    grid-template-columns: minmax(0, 1fr) 240px;
  }
}

@media (max-width: 430px) {
  .brand-text {
    font-size: 1.26rem;
  }
  .hero-title-row {
    grid-template-columns: 58px 1fr;
    gap: 12px;
  }
  .hero-logo {
    width: 58px;
    height: 76px;
  }
  .hero-badge {
    margin-top: 10px;
  }
}

@media (min-width: 1020px) {
  .brand-text { font-size: 1.56rem; }
  .location-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}


