/* ==========================================================================
   Meno.ba — Centar za menopauzu i metaboličko zdravlje
   Dizajn sistem
   ========================================================================== */

:root {
  /* Boje — usklađeno tačno sa bojama iz logotipa (#A06A88 / #D3ADBA / #373435) */
  --mauve-900: #5E3D4D;
  --mauve-700: #A06A88;
  --mauve-500: #B98CA3;
  --rose-200: #D3ADBA;
  --rose-100: #F6EBEF;
  --sage-600: #5C8266;
  --sage-500: #7FA687;
  --sage-200: #DCEAE0;
  --sage-100: #EEF5F0;
  --cream: #FDF9F6;
  --cream-dark: #F7EFEA;
  --ink: #373435;
  --ink-soft: #6E6567;
  --white: #FFFFFF;
  --gold-400: #D9A85C;
  --gold-100: #FAEEDA;

  /* Tipografija */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Razmaci */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.75rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  --space-2xl: 8rem;

  --radius-sm: 10px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --shadow-soft: 0 20px 50px -20px rgba(92, 49, 69, 0.18);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 17px;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--mauve-900);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 4.5vw, 3.6rem); font-weight: 500; }
h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); }
h3 { font-size: 1.3rem; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.75rem;
}

.container-narrow {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 1.75rem;
}

section { position: relative; }

.eyebrow {
  display: inline-block;
  color: var(--sage-600);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: var(--space-sm);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-lg);
}

.section-head p {
  color: var(--ink-soft);
  font-size: 1.1rem;
  margin-top: var(--space-sm);
}

/* Pillars sekcija: eyebrow veći (glavni naslov), h2 manji (podnaslov) */
.pillars .section-head .eyebrow {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  color: var(--mauve-900);
  font-weight: 500;
  margin-bottom: 0.6rem;
}
.pillars .section-head h2 {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0;
}

/* ---------------- Dugmad ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--mauve-700);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { background: var(--mauve-900); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--mauve-700);
  border-color: var(--mauve-700);
}
.btn-outline:hover { background: var(--mauve-700); color: var(--white); }

.btn-light {
  background: var(--white);
  color: var(--mauve-700);
}
.btn-light:hover { transform: translateY(-2px); }

.btn-sage {
  background: var(--sage-600);
  color: var(--white);
}
.btn-sage:hover { background: var(--sage-500); transform: translateY(-2px); }

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

/* ---------------- Header ---------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 249, 246, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(92, 49, 69, 0.08);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
}
.logo img { height: 90px; width: auto; }
.main-nav ul {
  display: flex;
  gap: var(--space-md);
  align-items: center;
}
.main-nav a {
  font-weight: 500;
  color: var(--ink);
  font-size: 0.98rem;
  transition: color 0.15s ease;
  position: relative;
}
.main-nav a:hover { color: var(--mauve-700); }
.main-nav a.is-active { color: var(--mauve-700); }
.header-actions { display: flex; align-items: center; gap: var(--space-sm); }
.header-phone {
  font-weight: 600;
  color: var(--mauve-700);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.header-phone svg { color: var(--mauve-700); flex-shrink: 0; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--mauve-700);
  cursor: pointer;
  padding: 0.3rem;
}
.nav-toggle svg { width: 24px; height: 24px; display: block; }

/* ---------------- Hero (full-width, 3 kolone) ---------------- */
.hero {
  padding: var(--space-md) 0 0;
  background: var(--cream);
}
.hero-banner {
  position: relative;
  width: 100%;
  max-width: 2000px;
  margin: 0 auto;
}
.hero-banner img {
  width: 100%;
  height: auto;
  display: block;
}
.hero-banner .hero-mobile-img { display: none; }
.hero-scrim { display: none; }
.hero-overlay-text {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 42%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 6%;
  padding-right: 4%;
}
.hero-overlay-text h1 { font-size: clamp(1.3rem, 2.1vw, 2.1rem); }
.hero-overlay-text p.lead { font-size: 0.98rem; margin: 0.5rem 0 0.9rem; }
.hero-cta .btn { padding: 0.75rem 1.4rem; font-size: 0.92rem; }
.hero p.lead {
  color: var(--ink-soft);
  max-width: 420px;
}
.hero-cta { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.hero-overlay-quote {
  position: absolute;
  top: 10%;
  right: 4%;
  max-width: 220px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-md);
}
.hero-eyebrow-quote {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--mauve-900);
  font-size: 0.92rem;
  line-height: 1.4;
  margin: 0;
}

/* ---------------- Pillars (4 stuba) ---------------- */
.pillars { padding: var(--space-2xl) 0 var(--space-xl); }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}
.trust-item { text-align: center; }
.trust-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--rose-100);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 0.7rem;
}
.trust-icon svg { width: 26px; height: 26px; color: var(--mauve-700); }
.trust-item h4 { font-family: var(--font-body); color: var(--mauve-900); margin-bottom: 0.3rem; font-size: 1rem; }
.trust-item p { color: var(--ink-soft); font-size: 0.9rem; }
.pillar-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  text-align: center;
  border: 1px solid rgba(92,49,69,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.pillar-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.pillar-card p { flex-grow: 1; }
.pillar-link { margin-top: auto; padding-top: 0.5rem; }
.pillar-icon {
  width: 76px; height: 76px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--space-sm);
}
.pillar-icon svg { width: 36px; height: 36px; }
.pillar-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.pillar-card p { color: var(--ink-soft); font-size: 0.94rem; margin-bottom: var(--space-sm); }
.pillar-link { color: var(--mauve-700); font-weight: 600; font-size: 0.92rem; }
.pillar-card:nth-child(1) .pillar-icon { background: var(--rose-200); }
.pillar-card:nth-child(1) .pillar-icon svg { color: var(--mauve-700); }
.pillar-card:nth-child(2) .pillar-icon { background: var(--sage-200); }
.pillar-card:nth-child(2) .pillar-icon svg { color: var(--sage-600); }
.pillar-card:nth-child(3) .pillar-icon { background: #E3D9F0; }
.pillar-card:nth-child(3) .pillar-icon svg { color: #6B4A96; }
.pillar-card:nth-child(4) .pillar-icon { background: var(--gold-100); }
.pillar-card:nth-child(4) .pillar-icon svg { color: var(--gold-400); }

/* ---------------- Wave divider ---------------- */
.wave-divider {
  display: block;
  width: 100%;
  height: 80px;
  margin-bottom: -2px;
}

/* ---------------- Journey / Steps ---------------- */
.journey { padding: var(--space-xl) 0; background: var(--rose-100); }
.journey-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}
.journey-steps::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 8.33%;
  right: 8.33%;
  border-top: 2px dashed var(--mauve-500);
  z-index: 0;
}
.step-card { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--mauve-700);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  margin: 0 auto var(--space-sm);
  font-family: var(--font-display);
}
.step-icon {
  width: 66px; height: 66px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--space-sm);
}
.step-icon svg { width: 30px; height: 30px; }
.step-card:nth-child(1) .step-icon { background: var(--rose-200); color: var(--mauve-700); }
.step-card:nth-child(2) .step-icon { background: var(--sage-200); color: var(--sage-600); }
.step-card:nth-child(3) .step-icon { background: #E3D9F0; color: #6B4A96; }
.step-card:nth-child(4) .step-icon { background: var(--gold-100); color: var(--gold-400); }
.step-card:nth-child(5) .step-icon { background: var(--rose-200); color: var(--mauve-700); }
.step-card:nth-child(6) .step-icon { background: var(--sage-200); color: var(--sage-600); }
.step-card h4 { font-size: 1rem; margin-bottom: 0.4rem; color: var(--mauve-900); font-family: var(--font-body); font-weight: 700; }
.step-card p { font-size: 0.88rem; color: var(--ink-soft); }

/* ---------------- Usluge grid ---------------- */
.services { padding: var(--space-2xl) 0; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  border: 1px solid rgba(92,49,69,0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.service-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-sm);
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 { margin-bottom: 0.6rem; }
.service-card p.desc { color: var(--ink-soft); font-size: 0.96rem; margin-bottom: var(--space-sm); }
.service-card ul { margin-bottom: var(--space-md); flex-grow: 1; }
.service-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.93rem;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.service-card ul li::before {
  content: "✓";
  color: var(--sage-600);
  font-weight: 700;
  flex-shrink: 0;
}
.icon-1 { background: var(--sage-100); color: var(--sage-600); }
.icon-2 { background: var(--sage-100); color: var(--sage-600); }
.icon-3 { background: #EDE6F5; color: #7A5EA8; }
.icon-4 { background: var(--rose-200); color: var(--mauve-700); }
.icon-5 { background: #E3EAF7; color: #4B6BAE; }
.icon-6 { background: var(--gold-100); color: var(--gold-400); }

/* ---------------- Zasto mi (why choose) ---------------- */
.why { padding: var(--space-xl) 0; }
.why .container { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-lg); align-items: center; }
.why-list { display: flex; flex-direction: column; gap: var(--space-md); }
.why-item { display: flex; gap: var(--space-sm); }
.why-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  border-radius: 16px;
  background: var(--sage-100);
  display: flex; align-items: center; justify-content: center;
}
.why-icon svg { width: 24px; height: 24px; color: var(--sage-600); }
.why-item h4 { font-family: var(--font-body); font-weight: 700; color: var(--mauve-900); margin-bottom: 0.3rem; }
.why-item p { color: var(--ink-soft); font-size: 0.95rem; }
.why-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); aspect-ratio: 4/3; }
.why-image img { width: 100%; height: 100%; object-fit: cover; }

/* Vizija intro (O nama) — veća grupna fotografija */
.vision-intro .container { grid-template-columns: 0.85fr 1.35fr; }
.vision-intro .why-image { aspect-ratio: 16/10; }

/* Izvještaj o zdravlju sekcija — slika izjednačena visinom sa tekstom, manji razmak */
.report-section .container { align-items: stretch; }
.report-section .why-list { gap: 0.55rem; }
.report-section .why-image { aspect-ratio: auto; height: 100%; }

/* ---------------- Programi ---------------- */
.programs { padding: var(--space-2xl) 0; background: var(--cream-dark); }
.programs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); }
.program-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}
.program-image { aspect-ratio: 16/10; overflow: hidden; }
.program-image img { width: 100%; height: 100%; object-fit: cover; }
.program-body { padding: var(--space-md); }
.program-body h3 { margin-bottom: var(--space-sm); }
.program-body ul { margin-bottom: var(--space-md); }
.program-body ul li {
  font-size: 0.93rem;
  display: flex; gap: 0.5rem; margin-bottom: 0.45rem;
}
.program-body ul li::before { content: "✓"; color: var(--sage-600); font-weight: 700; }

/* ---------------- Testimonijali ---------------- */
.testimonials { padding: var(--space-xl) 0; }

.testimonial-slider {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
}
.testimonial-slider-clip {
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.testimonial-track {
  display: flex;
  transition: transform 0.45s ease;
}
.testimonial-slide {
  flex: 0 0 100%;
  width: 100%;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  box-shadow: var(--shadow-soft);
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.testimonial-card p.quote {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--mauve-900);
  margin-bottom: var(--space-md);
  line-height: 1.5;
}
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 auto 0.6rem;
}
.testimonial-name { font-weight: 700; color: var(--mauve-900); }
.testimonial-role { color: var(--ink-soft); font-size: 0.9rem; }

.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid rgba(92,49,69,0.12);
  box-shadow: var(--shadow-soft);
  color: var(--mauve-700);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.15s ease;
  z-index: 2;
}
.testimonial-arrow svg { width: 20px; height: 20px; }
.testimonial-arrow:hover { background: var(--rose-100); }
.testimonial-arrow-prev { left: -22px; }
.testimonial-arrow-next { right: -22px; }

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: var(--space-md);
}
.testimonial-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--rose-200);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.testimonial-dot.is-active { background: var(--mauve-700); transform: scale(1.2); }

/* ---------------- CTA band ---------------- */
.cta-band {
  background: var(--mauve-700);
  color: var(--white);
  padding: var(--space-xl) 0;
  text-align: center;
  border-radius: var(--radius-lg);
  margin: 0 1.75rem;
}
.cta-band h2 { color: var(--white); margin-bottom: var(--space-sm); }
.cta-band p { color: rgba(255,255,255,0.85); margin-bottom: var(--space-md); font-size: 1.1rem; }
.cta-band .btn-primary { background: var(--white); color: var(--mauve-700); }
.cta-band .btn-primary:hover { background: var(--rose-100); }

/* ---------------- Footer ---------------- */
.site-footer {
  background: var(--mauve-900);
  color: rgba(255,255,255,0.85);
  padding: var(--space-xl) 0 var(--space-md);
  margin-top: var(--space-2xl);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.footer-logo img { height: 90px; width: auto; margin-bottom: var(--space-sm); filter: brightness(0) invert(1); }
.footer-grid p { font-size: 0.92rem; opacity: 0.85; font-family: var(--font-body); }
.footer-col h4 { color: var(--white); font-family: var(--font-body); font-weight: 700; margin-bottom: var(--space-sm); font-size: 0.95rem; }
.footer-col ul li { margin-bottom: 0.6rem; font-family: var(--font-body); font-size: 0.92rem; opacity: 0.85; }
.footer-col a { font-size: 0.92rem; font-family: var(--font-body); opacity: 1; transition: opacity 0.15s; }
.footer-col a:hover { opacity: 0.75; text-decoration: underline; }
.footer-contact-list li { display: flex; align-items: center; gap: 0.55rem; }
.footer-contact-list li svg { width: 16px; height: 16px; flex-shrink: 0; opacity: 0.9; }
.footer-hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  opacity: 0.85;
  margin-bottom: 0.45rem;
  white-space: nowrap;
}
.footer-social { display: flex; gap: 1rem; margin-top: var(--space-sm); }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  opacity: 0.85;
  transition: opacity 0.15s ease;
}
.footer-social a:hover { opacity: 1; }
.footer-social svg { width: 22px; height: 22px; color: var(--white); }
.footer-bottom {
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  opacity: 0.7;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ---------------- Booking modal ---------------- */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(51, 43, 48, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1.5rem;
}
.modal-overlay.is-open { display: flex; }
.modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: var(--space-lg);
  position: relative;
}
.modal-close {
  position: absolute; top: 1.2rem; right: 1.2rem;
  background: var(--rose-100);
  border: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--mauve-700);
}
.modal-box h3 { margin-bottom: 0.4rem; }
.modal-box > p { color: var(--ink-soft); margin-bottom: var(--space-md); font-size: 0.95rem; }

.form-group { margin-bottom: var(--space-sm); }
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  height: 0;
  width: 0;
  overflow: hidden;
}
.form-group label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 0.35rem; color: var(--mauve-900); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid #E4D8DD;
  font-family: var(--font-body);
  font-size: 0.96rem;
  background: var(--cream);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--mauve-500);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-sm); }
.form-check { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.85rem; color: var(--ink-soft); margin-bottom: var(--space-md); }
.form-check input { width: auto; margin-top: 0.2rem; }
.form-note { font-size: 0.82rem; color: var(--ink-soft); margin-top: var(--space-sm); text-align: center; }
.form-success {
  display: none;
  text-align: center;
  padding: var(--space-lg) 0;
}
.form-success.is-visible { display: block; }
.form-success .icon-check {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--sage-100);
  color: var(--sage-600);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  margin: 0 auto var(--space-sm);
}

/* ---------------- Page header (interne stranice) ---------------- */
.page-hero {
  padding: var(--space-xl) 0 var(--space-lg);
  background: var(--rose-100);
  text-align: center;
}
.page-hero .eyebrow { display: block; }
.page-hero p { color: var(--ink-soft); font-size: 1.1rem; max-width: 620px; margin: var(--space-sm) auto 0; }
.script-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem !important;
  color: var(--mauve-700) !important;
  max-width: 640px !important;
  margin: var(--space-md) auto 0 !important;
  line-height: 1.5;
}
.breadcrumb { font-size: 0.88rem; color: var(--ink-soft); margin-bottom: var(--space-sm); }
.breadcrumb a { color: var(--mauve-700); }

/* ---------------- Sadrzaj usluge (detail page) ---------------- */
.service-detail { padding: var(--space-xl) 0; }
.service-detail .container { display: grid; grid-template-columns: 1fr 0.85fr; gap: var(--space-xl); }
.service-feature { display: flex; gap: var(--space-sm); margin-bottom: var(--space-lg); }
.service-feature-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
}
.service-feature-icon svg { width: 24px; height: 24px; }
.service-feature h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.service-feature p { color: var(--ink-soft); font-size: 0.95rem; }
.service-sidebar { position: sticky; top: 110px; align-self: start; }
.service-sidebar-quote {
  background: var(--rose-100);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  font-family: var(--font-display);
  font-style: italic;
  color: var(--mauve-900);
  font-size: 1.15rem;
  text-align: center;
  margin-bottom: var(--space-md);
}
.service-sidebar-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/5;
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-soft);
}
.service-sidebar-image img { width: 100%; height: 100%; object-fit: cover; }
.service-sidebar-card {
  background: var(--white);
  border: 1px solid rgba(92,49,69,0.1);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  text-align: center;
}
.service-sidebar-card h4 { font-family: var(--font-body); color: var(--mauve-900); margin-bottom: 0.6rem; font-size: 1.05rem; }

/* ---------------- Tim (O nama) ---------------- */
.team { padding: var(--space-xl) 0; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 260px));
  justify-content: center;
  gap: var(--space-lg) var(--space-md);
}
.team-row-wide {
  max-width: 1280px;
  margin: 0 auto var(--space-lg);
  padding: 0 1.75rem;
}
.team-row-wide .team-grid-3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: none;
}
.team-row-wide .team-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 806px;
  margin-left: auto;
  margin-right: auto;
}
.team-grid-2 { margin-top: var(--space-sm); }
.team-card { text-align: center; }
.team-photo {
  aspect-ratio: 1/1;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-sm);
  box-shadow: var(--shadow-soft);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h4 { font-family: var(--font-body); font-weight: 700; color: var(--mauve-900); margin-bottom: 0.2rem; }
.team-role { color: var(--sage-600); font-weight: 600; font-size: 0.9rem; margin-bottom: 0.6rem; }
.team-bio { color: var(--ink-soft); font-size: 0.88rem; text-align: left; }
.team-card-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}
.team-fb {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--mauve-700);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.team-fb svg { width: 16px; height: 16px; }
.team-bio-toggle {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--mauve-700);
  color: var(--white);
  border: none;
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
}
.team-bio-toggle svg { width: 14px; height: 14px; transition: transform 0.2s ease; }
.team-bio-toggle.is-open svg { transform: rotate(180deg); }
.team-bio-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.team-bio-panel.is-open { max-height: 300px; margin-top: 0.8rem; }

.founder-block { padding: var(--space-xl) 0; }
.founder-block .container { display: grid; grid-template-columns: 1.05fr 1.15fr; gap: var(--space-xl); align-items: center; }
.founder-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); }
.founder-image-large img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/4.6; }
.founder-credentials { display: flex; gap: var(--space-md); margin: var(--space-md) 0; flex-wrap: wrap; }
.credential { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; font-weight: 600; color: var(--mauve-700); }
.credential svg { width: 18px; height: 18px; color: var(--sage-600); flex-shrink: 0; }

/* ---------------- Vizija / Misija paneli ---------------- */
.vm-panels {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-bottom: 60px;
}
.vm-panel {
  padding: var(--space-2xl) max(2rem, calc((100vw - 1180px) / 2 + 2rem)) var(--space-xl);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 480px;
}
.vm-vizija { background: linear-gradient(135deg, var(--mauve-700), var(--mauve-900)); padding-left: max(2rem, calc((100vw - 1180px) / 2 + 2rem)); padding-right: var(--space-lg); }
.vm-misija { background: linear-gradient(135deg, var(--sage-600), #3E6B49); padding-right: max(2rem, calc((100vw - 1180px) / 2 + 2rem)); padding-left: var(--space-lg); }
.vm-panel h3 { color: var(--white); font-size: 2rem; margin-bottom: var(--space-lg); text-align: center; }
.vm-panel ul { display: flex; flex-direction: column; gap: 1.1rem; max-width: 480px; margin: 0 auto; }
.vm-panel li {
  position: relative;
  padding-left: 1.8rem;
  font-size: 1.05rem;
  line-height: 1.55;
  opacity: 0.95;
}
.vm-panel li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
}
.vm-wave { position: absolute; bottom: 0; left: 0; width: 100%; height: 60px; display: block; }

/* ---------------- FAQ ---------------- */
.faq { padding: var(--space-xl) 0; }
.faq-item {
  border-bottom: 1px solid rgba(92,49,69,0.12);
  padding: var(--space-sm) 0;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
  color: var(--mauve-900);
  font-size: 1.05rem;
  padding: 0.5rem 0;
}
.faq-question .plus { transition: transform 0.2s ease; color: var(--sage-600); font-size: 1.3rem; }
.faq-item.is-open .faq-question .plus { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  color: var(--ink-soft);
  font-size: 0.96rem;
}
.faq-item.is-open .faq-answer { max-height: 300px; padding-bottom: 1rem; }

/* ---------------- Kontakt ---------------- */
.contact-section { padding: var(--space-xl) 0; }
.contact-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: var(--space-xl); }
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  border: 1px solid rgba(92,49,69,0.08);
  margin-bottom: var(--space-sm);
}
.contact-info-card h4 { font-family: var(--font-body); color: var(--mauve-900); margin-bottom: 0.4rem; font-size: 1rem; display: flex; align-items: center; gap: 0.5rem; }
.contact-info-card h4 svg { width: 18px; height: 18px; color: var(--sage-600); flex-shrink: 0; }
.contact-info-card p, .contact-info-card a { color: var(--ink-soft); font-size: 0.95rem; }
.map-frame { border-radius: var(--radius-md); overflow: hidden; margin-top: var(--space-md); box-shadow: var(--shadow-soft); }
.map-frame iframe { width: 100%; height: 320px; border: 0; display: block; }
.contact-photo { border-radius: var(--radius-md); overflow: hidden; margin-bottom: var(--space-sm); box-shadow: var(--shadow-soft); }
.contact-photo img { width: 100%; height: 220px; object-fit: cover; display: block; }
.map-section { width: 100%; margin-top: var(--space-xl); margin-bottom: var(--space-xl); padding: 0 1.75rem; }
.map-frame-full { max-width: 1280px; margin: 0 auto; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-soft); }
.map-frame-full iframe { width: 100%; height: 420px; border: 0; display: block; }

/* ---------------- Blog ---------------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); }
.blog-card { background: var(--white); border-radius: var(--radius-md); overflow: hidden; border: 1px solid rgba(92,49,69,0.08); }
.blog-card-image { aspect-ratio: 16/10; overflow: hidden; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: var(--space-md); }
.blog-tag { color: var(--sage-600); font-weight: 600; font-size: 0.82rem; }
.blog-card h3 { font-size: 1.1rem; margin: 0.5rem 0; }
.blog-card h3 a { color: var(--mauve-900); transition: color 0.15s ease; }
.blog-card h3 a:hover { color: var(--mauve-700); }
.blog-card p { color: var(--ink-soft); font-size: 0.9rem; }
.blog-card .btn { margin-top: var(--space-sm); padding: 0.6rem 1.3rem; font-size: 0.9rem; }

/* ---------------- Pojedinačni blog članak ---------------- */
.article-hero { padding: var(--space-lg) 0 0; background: var(--rose-100); }
.article-hero .container-narrow { padding-bottom: var(--space-lg); }
.article-breadcrumb { font-size: 0.88rem; color: var(--ink-soft); margin-bottom: var(--space-sm); }
.article-breadcrumb a { color: var(--mauve-700); }
.article-tag {
  display: inline-block;
  background: var(--white);
  color: var(--sage-600);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  margin-bottom: var(--space-sm);
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: var(--space-md);
  color: var(--ink-soft);
  font-size: 0.92rem;
}
.article-meta img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }
.article-meta strong { color: var(--mauve-900); }
.article-featured-image {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.75rem;
  transform: translateY(40px);
}
.article-featured-image img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  display: block;
}
.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: calc(var(--space-xl) + 40px) 1.75rem var(--space-xl);
}
.article-body p { color: var(--ink); font-size: 1.05rem; line-height: 1.75; margin-bottom: 1.3rem; }
.article-body h3 {
  font-size: 1.3rem;
  margin: var(--space-lg) 0 0.8rem;
  color: var(--mauve-900);
}
.article-body ul { margin: 0 0 1.3rem; padding-left: 0; list-style: none; }
.article-body ul li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.7rem;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.6;
}
.article-body ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55rem;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--sage-600);
}
.article-body ul li strong { color: var(--mauve-900); }
.article-pullquote {
  background: var(--rose-100);
  border-left: 3px solid var(--mauve-700);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.2rem 1.5rem;
  margin: var(--space-lg) 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--mauve-900);
  line-height: 1.5;
}
.article-author-card {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--cream-dark);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin-top: var(--space-lg);
}
.article-author-card img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.article-author-card h4 { font-family: var(--font-body); color: var(--mauve-900); margin-bottom: 0.2rem; }
.article-author-card p { margin: 0; font-size: 0.9rem; color: var(--ink-soft); }
.article-cta {
  background: linear-gradient(135deg, var(--mauve-700), var(--mauve-900));
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  margin-top: var(--space-xl);
  color: var(--white);
}
.article-cta h3 { color: var(--white); margin-bottom: 0.5rem; }
.article-cta p { color: rgba(255,255,255,0.85); margin-bottom: var(--space-md); }
.article-cta .btn-primary { background: var(--white); color: var(--mauve-700); }
.article-cta .btn-primary:hover { background: var(--rose-100); }
.article-nav {
  display: flex;
  justify-content: space-between;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(92,49,69,0.12);
}
.article-nav a {
  color: var(--mauve-700);
  font-weight: 600;
  font-size: 0.95rem;
  max-width: 45%;
}
.article-nav a.next { text-align: right; margin-left: auto; }


/* ---------------- Mobile meni overlay ---------------- */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(51, 43, 48, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.mobile-menu-overlay.is-open { opacity: 1; visibility: visible; }
.mobile-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(320px, 85vw);
  background: var(--cream);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: -10px 0 40px rgba(0,0,0,0.15);
}
.mobile-menu-overlay.is-open .mobile-menu-panel { transform: translateX(0); }
.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-menu-logo { height: 48px; width: auto; }
.mobile-menu-close {
  background: var(--rose-100);
  border: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  color: var(--mauve-700);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.mobile-menu-close svg { width: 18px; height: 18px; }
.mobile-menu-nav ul { display: flex; flex-direction: column; gap: 0.3rem; }
.mobile-menu-nav a {
  display: block;
  padding: 0.8rem 0.2rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--mauve-900);
  border-bottom: 1px solid rgba(92,49,69,0.1);
}
.mobile-menu-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--mauve-700);
  font-weight: 600;
  font-size: 1.05rem;
}
.mobile-menu-social {
  display: flex;
  gap: 1rem;
  margin-top: auto;
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(92,49,69,0.1);
}
.mobile-menu-social a {
  color: var(--mauve-700);
  display: flex; align-items: center; justify-content: center;
}
.mobile-menu-social svg { width: 24px; height: 24px; }


@media (max-width: 980px) {
  .main-nav, .header-phone { display: none; }
  .nav-toggle { display: block; }
  .logo img { height: 56px; }
  .site-header .container { flex-wrap: nowrap; gap: 0.6rem; }
  .header-actions { gap: 0.5rem; }
  .header-actions .btn-primary { padding: 0.6rem 1rem; font-size: 0.85rem; }
  .hero-banner img { -webkit-mask-image: none; mask-image: none; }
  .hero-scrim { display: none; }
  .hero-desktop-img { display: none !important; }
  .hero-mobile-img { display: block !important; }
  .hero-overlay-text {
    position: static;
    width: 100%;
    height: auto;
    padding: var(--space-md) 1.75rem 0;
  }
  .hero-cta { flex-wrap: nowrap; gap: 0.6rem; }
  .hero-cta .btn { padding: 0.65rem 0.9rem; font-size: 0.82rem; white-space: nowrap; }
  .hero-overlay-quote {
    position: static;
    max-width: none;
    margin: var(--space-md) 1.75rem 0;
    background: var(--rose-100);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .journey-steps { grid-template-columns: repeat(3, 1fr); }
  .journey-steps::before { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why .container { grid-template-columns: 1fr; }
  .why-image { order: -1; }
  .programs-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-detail .container { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .team-grid { grid-template-columns: repeat(2, minmax(0, 260px)); }
  .team-row-wide .team-grid-3 { grid-template-columns: repeat(2, minmax(0, 260px)); justify-content: center; }
  .team-row-wide .team-grid-2 { grid-template-columns: repeat(2, minmax(0, 260px)); max-width: none; }
  .vm-panels { grid-template-columns: 1fr; }
  .vm-vizija, .vm-misija { padding-left: 1.75rem; padding-right: 1.75rem; }
  .founder-block .container { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .pillars-grid { grid-template-columns: 1fr; }
  .journey-steps { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: minmax(0, 280px); }
  .team-row-wide .team-grid-3 { grid-template-columns: minmax(0, 280px); }
  .team-row-wide .team-grid-2 { grid-template-columns: minmax(0, 280px); max-width: none; }
  .blog-grid { grid-template-columns: 1fr; }
  .cta-band { margin: 0 1rem; }
  .testimonial-slider { padding: 0 2.6rem; }
  .testimonial-arrow-prev { left: -6px; width: 38px; height: 38px; }
  .testimonial-arrow-next { right: -6px; width: 38px; height: 38px; }
  .testimonial-card { padding: var(--space-md); min-height: 300px; }
  .testimonial-card p.quote { font-size: 1.05rem; }
}
