/* =======================
   Core Reset & Variables
   ======================= */
:root{
  --navy:#0B3A5C;
  --gold:#C9A646;
  --porcelain:#F8F6F0;
  --charcoal:#2B2B2B;
  --gray:#6C7780;

  --container:1200px;
  --radius:16px;
  --shadow:0 6px 24px rgba(11,58,92,.06);
  --header-h:68px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
html,body{margin:0;padding:0}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}

/* =======================
   Typography / Body
   ======================= */
body{
  background:var(--porcelain);
  color:var(--charcoal);
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  line-height:1.6;
  text-rendering:optimizeLegibility;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
h1,h2,h3,h4{
  font-family:"Playfair Display", serif;
  color:var(--navy);
  line-height:1.2;
  margin:0 0 .5rem;
}

/* =======================
   Layout helpers
   ======================= */
.container{max-width:var(--container);margin:0 auto;padding:0 20px}
.section{padding:56px 0}
.hero{padding:96px 0 64px}
.eyebrow{letter-spacing:.12em;text-transform:uppercase;color:var(--gray);font-size:.8rem}
.lead{font-size:1.125rem;max-width:780px;color:#3a3a3a}

/* =======================
   Header / Nav  (FIXED)
   ======================= */
.site-header{
  position:sticky; top:0; z-index:1000;
  backdrop-filter:saturate(120%) blur(6px);
  background:rgba(248,246,240,.9);
  border-bottom:1px solid rgba(201,166,70,.25);
}

.navbar{
  height:var(--header-h);
  display:flex;
  align-items:center;
  gap:20px;
}

/* LOGO LEFT */
.brand{
  order:1;
  display:flex; align-items:center;
  margin-right:24px;
}
.brand img{ height:66px; width:auto }

/* MENU odmah posle logotipa (lijevo), raste do CTA */
nav[aria-label="Primary"]{
  order:2;
  flex:1; /* gura CTA na desnu stranu */
}
.menu{
  display:flex;
  gap:32px;
  align-items:center;
  justify-content:flex-start;
  margin-left:0;
}
.menu a{ font-weight:600; color:var(--navy); opacity:.9; transition:opacity .2s }
.menu a:hover,.menu a:focus{ opacity:1 }
.menu .active{ position:relative }
.menu .active::after{
  content:""; position:absolute; left:0; right:0; bottom:-14px; height:2px;
  background:var(--gold); border-radius:2px;
}

/* CTA DESNO */
.cta{
  order:3;
  margin-left:auto;
  padding:10px 18px;
  border-radius:14px;
  border:1px solid var(--gold);
  background:linear-gradient(180deg,#fff,#fff7e6);
  color:var(--navy); font-weight:700;
  box-shadow:var(--shadow); white-space:nowrap;
}

/* Burger za mobile (desno) */
.burger{
  display:none;
  border:1px solid rgba(11,58,92,.2);
  border-radius:12px;
  padding:10px 12px;
  background:#fff; font-weight:600; color:var(--navy);
}
.burger:focus{ outline:2px solid var(--gold); outline-offset:2px }

/* hidden baseline */
[hidden]{ display:none !important }

/* Mobile panel */
.mobile-panel{
  position:fixed; left:12px; right:12px; top:76px;
  background:#fff; border:1px solid rgba(11,58,92,.12);
  border-radius:14px; padding:8px; box-shadow:var(--shadow);
}
.mobile-panel a{
  display:block; padding:14px 12px;
  border-bottom:1px solid rgba(11,58,92,.08);
  color:var(--navy); font-weight:600;
}
.mobile-panel a:last-child{ border-bottom:0 }

/* =======================
   Responsive (Header)
   ======================= */
@media (max-width:1024px){
  :root{ --header-h:64px }
  .brand img{ height:58px }
}
@media (max-width:900px){
  .menu{ display:none }             /* sakrij meni */
  .cta{ display:none }              /* sakrij CTA na malim ekranima */
  .burger{ display:block; order:3 } /* burger desno; logo ostaje lijevo */
  .navbar{ justify-content:space-between }
}
@media (max-width:540px){
  .brand img{ height:44px }
}

/* =======================
   Footer (dark + app badges)
   ======================= */
:root{
  --footer-bg:#010F1A; /* tamniji navy radi kontrasta */
}

.site-footer{
  background:var(--footer-bg);
  color:#F8F6F0;
  padding:60px 0 0;
  border-top:1px solid rgba(255,255,255,.12);
  font-size:0.95rem;
}

/* glavna mreža: lijevo kontakt, sredina app, desno social */
.footer-grid{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  min-height:170px;
}

/* lijevo */
.footer-left{
  padding-left:20px;
  max-width:520px;
}
.footer-title{
  margin:0 0 12px;
  font-family:"Playfair Display",serif;
  font-weight:700;
  line-height:1.1;
  font-size:1.15rem;
  color:#ffffff;
}
.footer-title span{ display:block; }

.footer-contact{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:8px;
}
.footer-contact a{
  color:#F8F6F0;
  opacity:.95;
  text-decoration:none;
  transition:color .2s, opacity .2s;
}
.footer-contact a:hover{
  color:#C9A646;
  opacity:1;
}

/* sredina – app badges */
.footer-center{
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
}

.footer-center .app-title{
  margin:0 0 8px;
  font-weight:600;
  letter-spacing:.06em;
  text-transform:uppercase;
  font-size:0.85rem;
  color:rgba(255,255,255,.8);
}

/* ikone u JEDNOM redu */
.footer-apps{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;          /* razmak između bedževa */
  flex-wrap:wrap;    /* na jako uskim ekranima mogu u 2 reda */
}

.footer-apps .app-badge{
  display:inline-flex;
}

.footer-apps .app-badge img{
  display:block;
  max-height:44px;   /* ovdje kontrolišeš veličinu ikonice */
  width:auto;
  height:auto;
  transition:transform .2s ease;
}

.footer-apps .app-badge:hover img{
  transform:scale(1.06);
}

/* desno – social ikonice */
.footer-right{
  padding-right:20px;
  display:flex;
  align-items:center;
}
.blog-article-end {
  margin-bottom: 40px;
}

.social{
  display:flex;
  gap:16px;
}
.social a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:46px;
  height:46px;
  border-radius:50%;
  background:rgba(255,255,255,.14);
  color:#fff;
  transition:background .3s, transform .2s;
}
.social a:hover{
  background:rgba(255,255,255,.26);
  transform:translateY(-2px);
}

/* donja traka */
.footer-bottom{
  text-align:center;
  padding:22px 10px 26px;
  margin-top:18px;
  background:var(--footer-bg);
  color:rgba(255,255,255,.9);
  border-top:1px solid rgba(255,255,255,.12);
}
.footer-bottom a{
  color:#C9A646;
  text-decoration:none;
}
.footer-bottom a:hover{
  text-decoration:underline;
}

/* Responsive footer */
@media (max-width:900px){
  .footer-grid{
    flex-direction:column;
    text-align:center;
    min-height:0;
  }
  .footer-left{
    padding-left:0;
  }
  .footer-right{
    padding-right:0;
    justify-content:center;
  }
}


/* =======================
   Responsive (Footer)
   ======================= */
@media (max-width:900px){
  .footer-grid{
    flex-direction:column;
    text-align:center;
    min-height:0;
  }
  .footer-left{ padding-left:0; }
  .footer-right{ padding-right:0; justify-content:center; }
}
/* Hero refinements (text-first + image below) */
.hero { padding: 88px 0 56px; }
.hero h1 { font-size: clamp(2rem, 3vw + 1rem, 3rem); margin: .35rem 0 .75rem; }
.hero .lead { margin: 0 auto 1.25rem; }
.hero .hero-ctas { display: flex; gap: 16px; align-items: center; margin: 16px 0 28px; }
.btn-primary{
  display:inline-block; padding:12px 18px; border-radius:14px;
  border:1px solid var(--gold); background:linear-gradient(180deg,#fff,#fff7e6);
  color:var(--navy); font-weight:700; box-shadow:var(--shadow); text-decoration:none;
}
.btn-link{ font-weight:600; color:var(--navy); opacity:.9; text-decoration:none; }
.btn-link:hover{ opacity:1; text-decoration:underline; }

/* Rounded, elegant hero image */
.hero-figure{ margin: 8px 0 0; }
.hero-figure img{
  width:100%; height:auto; display:block;
  border-radius:28px; border:1px solid rgba(11,58,92,.08);
  box-shadow: 0 12px 40px rgba(11,58,92,.08);
}

/* Tighter on small screens */
@media (max-width: 720px){
  .hero { padding: 72px 0 44px; }
  .hero .hero-ctas { flex-direction: column; align-items: flex-start; gap: 10px; }
  .btn-primary, .btn-link { width: max-content; }
}
/*/* ===== Trust & Philosophy (Refined with soft background) ===== */
.trust {
  background: #F3F4F6; /* nježno siva pozadina sekcije */
  text-align: center;
  padding: 80px 0;
}

.trust-title {
  font-family: "Playfair Display", serif;
  color: var(--navy);
  font-size: clamp(1.8rem, 1.4rem + 1.4vw, 2.4rem);
  margin: 0 auto 1.2rem;
  max-width: 720px;
}

.trust-intro {
  max-width: 880px;
  margin: 0.6rem auto;
  color: #3a3a3a;
  line-height: 1.7;
  text-align: justify;         /* obostrano poravnanje */
  text-align-last: center;     /* centrirani poslednji red */
}

.trust-intro strong {
  color: var(--navy);
  font-weight: 600;
}

/* GRID za tri kartice */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 2.2rem;
  text-align: left;
}

/* KARTICE — sada imaju bež (porcelan) pozadinu */
.trust-card {
  background: var(--porcelain);
  border: 1px solid rgba(11, 58, 92, 0.08);
  border-radius: 18px;
  padding: 26px 22px;
  box-shadow: 0 6px 24px rgba(11, 58, 92, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.trust-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(11, 58, 92, 0.12);
}

.trust-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 166, 70, 0.14);
  color: var(--navy);
  margin-bottom: 14px;
}

.trust-card h3 {
  margin: 0.3rem 0 0.55rem;
  font-size: 1.1rem;
  color: var(--navy);
  font-weight: 700;
}

.trust-card p {
  margin: 0;
  color: #3f3f3f;
  line-height: 1.65;
}

/* Responsive */
@media (max-width: 980px) {
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
}
/* ===== Featured Procedures ===== */
.procedures {
  background: var(--porcelain);
  text-align: center;
  padding: 90px 0;
}

.procedures-title {
  font-family: "Playfair Display", serif;
  color: var(--navy);
  font-size: clamp(1.8rem, 1.3rem + 1.3vw, 2.3rem);
  margin: 0 auto 1rem;
  max-width: 740px;
}

.procedures-intro {
  max-width: 880px;
  margin: 0.8rem auto 2.2rem;
  color: #3a3a3a;
  line-height: 1.7;
  text-align: justify;
  text-align-last: center;
}

.procedures-intro strong {
  color: var(--navy);
  font-weight: 600;
}

/* GRID */
.procedures-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 24px;
}

/* KARTICE — SVETLOSIVA */
.procedure-card {
  background: #F3F4F6;
  border: 1px solid rgba(11, 58, 92, 0.08);
  border-radius: 16px;
  padding: 26px 20px;
  box-shadow: 0 6px 24px rgba(11, 58, 92, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.procedure-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(11, 58, 92, 0.12);
}

.procedure-card h3 {
  color: var(--navy);
  font-size: 1.15rem;
  margin-bottom: 0.45rem;
  font-weight: 700;
}

.procedure-card p {
  color: #3f3f3f;
  line-height: 1.65;
  margin: 0;
}

.procedures-cta {
  margin-top: 40px;
}

.procedures-cta .btn-primary {
  padding: 12px 24px;
}

/* Responsive */
@media (max-width: 1024px) {
  .procedures-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .procedures-grid {
    grid-template-columns: 1fr;
  }
}
/* ===== Featured Procedures – image cards ===== */
.procedures {
  background: var(--porcelain); /* ✅ sada porcelan-bež pozadina sekcije */
  text-align: center;
  padding: 90px 0;
}

.procedures-title {
  font-family: "Playfair Display", serif;
  color: var(--navy);
  font-size: clamp(1.8rem, 1.3rem + 1.3vw, 2.3rem);
  margin: 0 auto 1rem;
  max-width: 740px;
}

.procedures-intro {
  max-width: 880px;
  margin: 0.8rem auto 2.2rem;
  color: #3a3a3a;
  line-height: 1.7;
  text-align: justify;
  text-align-last: center;
}

.procedures-intro strong {
  color: var(--navy);
  font-weight: 600;
}

/* GRID */
.procedures-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 24px;
}

/* KARTICE – SVETLOSIVE */
.proc-image-grid .proc-card {
  display: block;
  border-radius: 18px;
  overflow: hidden;
  background: #F3F4F6; /* ✅ svetlosiva kartica */
  border: 1px solid rgba(11, 58, 92, 0.08);
  box-shadow: 0 6px 24px rgba(11, 58, 92, 0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.proc-image-grid .proc-card figure {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 0;
}

.proc-image-grid .proc-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

.proc-image-grid .proc-card figcaption {
  padding: 16px 12px 18px;
  font-weight: 700;
  color: var(--navy);
  font-size: 1.05rem;
}

.proc-image-grid .proc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 34px rgba(11, 58, 92, 0.14);
  border-color: rgba(201, 166, 70, 0.35);
}

.proc-image-grid .proc-card:hover img {
  transform: scale(1.04);
}

/* CTA dugme */
.procedures-cta {
  margin-top: 40px;
}

.procedures-cta .btn-primary {
  padding: 12px 24px;
}

/* Responsive */
@media (max-width: 1024px) {
  .procedures-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .procedures-grid {
    grid-template-columns: 1fr;
  }
}
/* ===== About the Doctor Teaser ===== */
.about-teaser {
  background: #F3F4F6; /* bijela pozadina */
  padding: 90px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 48px;
}

.about-photo img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 8px 28px rgba(11, 58, 92, 0.1);
}

.about-text {
  color: #3a3a3a;
  text-align: left;
}

.about-title {
  font-family: "Playfair Display", serif;
  color: var(--navy);
  font-size: clamp(1.8rem, 1.3rem + 1.3vw, 2.3rem);
  margin-bottom: 1.2rem;
}

.about-text p {
  line-height: 1.7;
  margin-bottom: 1.1rem;
  text-align: justify;
}

.about-text strong {
  color: var(--navy);
}

.about-text .btn-primary {
  margin-top: 0.8rem;
}

/* Responsive */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about-text {
    text-align: center;
  }
  .about-text p {
    text-align: justify;
    text-align-last: center;
  }
  .about-photo img {
    max-width: 400px;
    margin: 0 auto 24px;
  }
}
/* ===== Before & After Showcase ===== */
.before-after {
  background: var(--porcelain);
  text-align: center;
  padding: 90px 0;
}

.ba-title {
  font-family: "Playfair Display", serif;
  color: var(--navy);
  font-size: clamp(1.8rem, 1.3rem + 1.3vw, 2.3rem);
  margin-bottom: 0.4rem;
}

.ba-subtitle {
  color: var(--gray);
  font-size: 1rem;
  margin-bottom: 2rem;
}

.ba-slider {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  max-width: 900px;
  margin: 0 auto 40px;
  box-shadow: 0 8px 24px rgba(11, 58, 92, 0.1);
}

.ba-slide {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.ba-slide.active {
  display: grid;
  animation: fadeIn 1s ease;
}

.ba-slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.ba-prev, .ba-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.8);
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 1.4rem;
  color: var(--navy);
  cursor: pointer;
  transition: background .3s;
}

.ba-prev:hover, .ba-next:hover {
  background: rgba(255,255,255,1);
}

.ba-prev { left: 10px; }
.ba-next { right: 10px; }

.ba-cta { margin-top: 20px; }

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

/* Responsive */
@media (max-width: 700px) {
  .ba-slide { grid-template-columns: 1fr; }
  .ba-slide img:first-child { border-bottom: 1px solid rgba(0,0,0,0.08); }
}
/* ===== CTA Strip ===== */
.cta-strip{
  background:#0B3A5C; /* var(--navy) */
  color:#fff;
  padding:28px 0;
}
.cta-strip__wrap{
  display:flex; align-items:center; justify-content:space-between; gap:18px;
}
.cta-strip__text{
  margin:0; font-size:1.05rem; line-height:1.5; max-width:760px;
}
.cta-strip .btn-primary{
  background: linear-gradient(180deg, #ffffff, #fff7e6);
  color: var(--navy);
  border: 1px solid var(--gold);
  font-weight: 700;
  border-radius: 14px;
  padding: 10px 20px;
  box-shadow: var(--shadow);
}

@media (max-width:900px){
  .cta-strip__wrap{ flex-direction:column; text-align:center; }
  .cta-strip__actions{ display:flex; gap:12px; flex-wrap:wrap; justify-content:center; }
}
.cta-strip__wrap a:last-child {
  color: #ffffff !important;      /* bijeli telefon na tamnoj pozadini */
  font-weight: 600;
}
/* ===== PATIENT JOURNEY ===== */
.journey{
  background:#F3F4F6;
  padding:90px 0;
}

.journey-title{
  text-align:center;
  margin-bottom:12px;
  font-size:2rem;
  font-family:"Playfair Display", serif;
  color:var(--navy);
}

.journey-intro{
  text-align:center;
  max-width:780px;
  margin:0 auto 48px;
  font-size:1.05rem;
  color:#3a3a3a;
}

.journey-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:28px;
}

.journey-card{
  background:var(--porcelain);       /* kartice BEZ = bijela / porcelan */
  padding:32px;
  border-radius:16px;
  box-shadow:0 4px 16px rgba(0,0,0,.04);
  text-align:center;
}

.journey-icon{
  width:56px; height:56px;
  border-radius:50%;
  background:var(--gold);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  font-size:1.2rem;
  margin:0 auto 16px;
}

.journey-card h3{
  font-family:"Playfair Display", serif;
  color:var(--navy);
  margin-bottom:10px;
  font-size:1.25rem;
}

.journey-card p{
  color:#474747;
  line-height:1.55;
  font-size:0.98rem;
}

/* Responsive */
@media(max-width:900px){
  .journey-grid{
    grid-template-columns:1fr;
  }
}
/* === HERO: centriran naslov, 2 reda, tekst justified, split dugmad === */
.hero{ text-align:center; }

.hero h1{
  max-width: 980px;
  margin: .35rem auto .75rem;
  /* lep raspored reči gde je podržano */
  text-wrap: balance;
}

/* prikaz kontrolisanog <br> samo na većim ekranima */
.hero-br{ display:none; }
@media (min-width:900px){ .hero-br{ display:block; } }

/* tekst centriran ali poravnat obostrano */
.lead-centered{
  max-width: 880px;
  margin: 0 auto 1.25rem;
  text-align: justify;
  text-align-last: center;
}

/* dugmad: levo "Meet", desno "Book" */
.hero-ctas-split{
  display:flex;
  align-items:center;
  gap:16px;
  max-width:760px;
  margin:16px auto 28px;
}
.hero-ctas-split .btn-link{ order:1; }
.hero-ctas-split .btn-primary{ order:2; margin-left:auto; }

/* mobilno: jedno ispod drugog, centrirano */
@media (max-width:720px){
  .hero-ctas-split{
    flex-direction:column;
    align-items:center;
  }
  .hero-ctas-split .btn-primary{ margin-left:0; }
}
/* HERO buttons aligned to the right */
.hero-ctas-right {
  max-width: 900px;          /* širina bloka kao pasus */
  margin: 24px auto 32px;    /* centriranje bloka, ali sadržaj ide desno */
  display: flex;
  justify-content: flex-end; /* GURA DUGMAD DESNO */
  gap: 18px;
}

/* Mobilna verzija — dugmad ispod sebe centrirana */
@media (max-width: 720px) {
  .hero-ctas-right {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
/* ===== FAQ (Safety & Expectations) ===== */
.faq{
  background: var(--porcelain);         /* kontrast u odnosu na Journey */
  padding: 90px 0;
}

.faq-title{
  text-align:center;
  font-family:"Playfair Display", serif;
  color: var(--navy);
  font-size: clamp(1.8rem, 1.3rem + 1.3vw, 2.3rem);
  margin: 0 0 .6rem;
}

.faq-intro{
  max-width: 880px;
  margin: 0 auto 2rem;
  color: #3a3a3a;
  text-align: justify;
  text-align-last: center;
}

.faq-list{
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

/* Card look for each item */
.faq-item{
  background: #fff;
  border: 1px solid rgba(11,58,92,.08);
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(11,58,92,.06);
  overflow: hidden;
}

.faq-item summary{
  list-style: none;           /* hide default arrow */
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 700;
  color: var(--navy);
  position: relative;
}
.faq-item summary::-webkit-details-marker{ display:none; }

/* custom chevron */
.faq-item summary::after{
  content: "▾";
  position: absolute;
  right: 16px; top: 18px;
  font-size: 1.1rem;
  color: var(--gray);
  transition: transform .25s ease;
}
.faq-item[open] summary::after{ transform: rotate(180deg); }

.faq-content{
  padding: 0 20px 18px 20px;
  color: #3a3a3a;
}
.faq-content p{ margin: .25rem 0 .75rem; line-height: 1.7; }
.faq-content ul{
  margin: .25rem 0 .75rem 1.1rem;
  padding: 0;
}
.faq-content li{ margin: .25rem 0; }

/* CTA below FAQ */
.faq-cta{
  margin-top: 26px;
  text-align: center;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
/* ===== Procedures Page ===== */
.page-hero{ padding:72px 0 28px; }
.breadcrumb{ font-size:.9rem; color:var(--gray); display:flex; gap:8px; align-items:center; }
.breadcrumb a{ color:var(--navy); opacity:.85; }
.breadcrumb a:hover{ opacity:1; text-decoration:underline; }
.page-title{ font-size: clamp(1.9rem,1.2rem + 2vw,2.6rem); margin:.4rem 0 .35rem; }
.page-sub{ color:#3a3a3a; max-width:780px; margin:0; }

.proc-filter{ background:var(--porcelain); padding:14px 0; border-top:1px solid rgba(11,58,92,.06); border-bottom:1px solid rgba(11,58,92,.06); }
.proc-filter__wrap{ display:flex; gap:10px; flex-wrap:wrap; }
.chip{
  appearance:none; border:1px solid rgba(11,58,92,.18); background:#fff;
  padding:8px 12px; border-radius:999px; font-weight:600; color:var(--navy); cursor:pointer;
}
.chip.is-active{ border-color:var(--gold); box-shadow:0 2px 10px rgba(11,58,92,.06); }

.proc-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:24px;
}

.p-card{
  background:#fff;
  border:1px solid rgba(11,58,92,.08);
  border-radius:18px;
  overflow:hidden;
  display:flex; flex-direction:column;
  box-shadow:0 6px 24px rgba(11,58,92,.06);
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.p-card:hover{
  transform:translateY(-4px);
  border-color:rgba(201,166,70,.35);
  box-shadow:0 14px 34px rgba(11,58,92,.14);
}
.p-media img{ width:100%; aspect-ratio:4/3; object-fit:cover; display:block; }

.p-body{ padding:18px 18px 20px; display:flex; flex-direction:column; gap:10px; }
.p-title{ font-size:1.2rem; margin:2px 0 0; }
.p-text{ color:#3f3f3f; line-height:1.65; margin:0; }
.p-bullets{ margin:4px 0 0 18px; color:#3f3f3f; }
.p-bullets li{ margin:.25rem 0; }
.p-cta{ margin-top:auto; display:flex; justify-content:flex-end; }

/* Responsive */
@media (max-width:1024px){
  .proc-grid{ grid-template-columns:1fr 1fr; }
}
@media (max-width:640px){
  .proc-grid{ grid-template-columns:1fr; }
  .page-hero{ padding:62px 0 22px; text-align:center; }
  .page-sub{ margin:0 auto; text-align:justify; text-align-last:center; }
  .proc-filter__wrap{ justify-content:center; }
	}
	/* ===== About Doctor (alternating blocks) ===== */
.section-plain{ background:var(--navy);}
.section-alt{ background:#F3F4F6; }

.split{
  display:grid;
  grid-template-columns: 1.1fr 1fr;
  gap:48px;
  align-items:center;
}
.split.reverse{ grid-template-columns: 1fr 1.1fr; }
.split.reverse .photo{ order:2; }
.split.reverse .text{ order:1; }

.photo img{
  width:100%;
  border-radius:20px;
  border:1px solid rgba(11,58,92,.08);
  box-shadow:0 10px 32px rgba(11,58,92,.10);
}

.about-h{
  font-family:"Playfair Display", serif;
  color:var(--navy);
  font-size: clamp(1.6rem, 1.1rem + 1.6vw, 2.2rem);
  margin:0 0 .6rem;
}

.text p{
  color:#3a3a3a;
  line-height:1.7;
  margin:.7rem 0;
  text-align:justify;
  text-align-last:left;
}

.about-bullets{
  margin: .2rem 0 1rem 1rem;
  color:#3f3f3f;
  line-height:1.65;
}
.about-bullets li{ margin:.25rem 0; }

.btn-row{ display:flex; gap:14px; flex-wrap:wrap; margin-top:12px; }

/* credentials strip */
.creds{ background:var(--porcelain); padding:44px 0; }
.creds-wrap{
  display:grid; gap:18px;
  grid-template-columns: repeat(3, 1fr);
  align-items:stretch;
}
.cred{
  background:#fff; border:1px solid rgba(11,58,92,.08);
  border-radius:16px; padding:18px 20px; box-shadow:var(--shadow);
}
.cred-title{ display:block; font-weight:700; color:var(--navy); margin-bottom:4px; }
.cred-text{ margin:0; color:#3a3a3a; }

/* responsive */
@media (max-width: 980px){
  .split, .split.reverse{ grid-template-columns: 1fr; }
  .split .photo img{ max-width:480px; margin:0 auto; }
  .text p{ text-align:justify; text-align-last:center; }
  .btn-row{ justify-content:center; }
  .creds-wrap{ grid-template-columns: 1fr; }
}

/* ===== About Doctor (alternating blocks) ===== */
.section-plain{ background:var(--navy); }
.section-alt{ background:#F3F4F6; }

.split{
  display:grid;
  grid-template-columns: 1.1fr 1fr;
  gap:48px;
  align-items:center;
}
.split.reverse{ grid-template-columns: 1fr 1.1fr; }
.split.reverse .photo{ order:2; }
.split.reverse .text{ order:1; }

.photo img{
  width:100%;
  border-radius:20px;
  border:1px solid rgba(11,58,92,.08);
  box-shadow:0 10px 32px rgba(11,58,92,.10);
}

.about-h{
  font-family:"Playfair Display", serif;
  color:var(--navy);
  font-size: clamp(1.6rem, 1.1rem + 1.6vw, 2.2rem);
  margin:0 0 .6rem;
}

.text p{
  color:#3a3a3a;
  line-height:1.7;
  margin:.7rem 0;
  text-align:justify;
  text-align-last:left;
}

.about-bullets{
  margin: .2rem 0 1rem 1rem;
  color:#3f3f3f;
  line-height:1.65;
}
.about-bullets li{ margin:.25rem 0; }

.btn-row{ display:flex; gap:14px; flex-wrap:wrap; margin-top:12px; }

/* credentials strip */
.creds{ background:var(--porcelain); padding:44px 0; }
.creds-wrap{
  display:grid; gap:18px;
  grid-template-columns: repeat(3, 1fr);
  align-items:stretch;
}
.cred{
  background:#fff; border:1px solid rgba(11,58,92,.08);
  border-radius:16px; padding:18px 20px; box-shadow:var(--shadow);
}
.cred-title{ display:block; font-weight:700; color:var(--navy); margin-bottom:4px; }
.cred-text{ margin:0; color:#3a3a3a; }

/* responsive */
@media (max-width: 980px){
  .split, .split.reverse{ grid-template-columns: 1fr; }
  .split .photo img{ max-width:480px; margin:0 auto; }
  .text p{ text-align:justify; text-align-last:center; }
  .btn-row{ justify-content:center; }
  .creds-wrap{ grid-template-columns: 1fr; }
}/* ===== About Doctor ===== */
.about-block{ padding:90px 0; }
/* ===== About Doctor ===== */
.about--alt-left { 
  background: var(--porcelain);   /* ✅ svijetla bež pozadina za blokove 1 i 3 */
}
.about--alt-right { 
  background: #fff;               /* ostaje čisto bijelo za blok 2 (kontrast) */
}
.about-flex{
  display:grid;
  grid-template-columns: 1.1fr 1fr;
  gap:40px;
  align-items:center;
}
.about--alt-right .about-flex{
  grid-template-columns: 1fr 1.1fr;
}

.about-media img{
  width:100%; display:block; border-radius:20px;
  border:1px solid rgba(11,58,92,.08);
  box-shadow:0 10px 30px rgba(11,58,92,.10);
}

.about-copy{ color:#3a3a3a; }
.about-h{
  font-family:"Playfair Display", serif;
  color:var(--navy);
  font-size:clamp(1.6rem,1.1rem + 1.6vw,2.2rem);
  margin:0 0 .6rem;
}
.about-copy p{ line-height:1.75; margin:.65rem 0; text-align:justify; }
.about-note{ color:#2f2f2f; opacity:.95; }

.about-list{ margin:.6rem 0 0 1rem; line-height:1.7; }
.about-cta{ margin-top:14px; display:flex; gap:14px; flex-wrap:wrap; }

.t-center{text-align:center}

.about-credentials{ background:var(--porcelain); }
.cred-grid{
  display:grid;
  grid-template-columns: repeat(4,1fr);
  gap:20px;
  margin-top:18px;
}
.cred{
  background:#fff; border:1px solid rgba(11,58,92,.08); border-radius:16px;
  padding:22px; box-shadow:var(--shadow);
}
.cred h3{ margin:.1rem 0 .4rem; color:var(--navy); font-size:1.05rem; }
.cred p{ margin:0; color:#3f3f3f; line-height:1.6; }

.about-locations{ background:#0B3A5C; color:#fff; padding:28px 0; }
.locations-wrap{
  display:flex; gap:24px; align-items:center; justify-content:center; flex-wrap:wrap;
}
.loc{
  background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.18);
  border-radius:14px; padding:14px 18px; min-width:220px; text-align:center;
}
.loc h3{ margin:.1rem 0 .2rem; font-size:1rem; }
.loc p{ margin:0; opacity:.95; }

/* Responsive */
@media (max-width:1024px){
  .about-flex{ grid-template-columns:1fr; }
  .about--alt-right .about-flex{ grid-template-columns:1fr; }
  .cred-grid{ grid-template-columns:1fr 1fr; }
}
@media (max-width:640px){
  .cred-grid{ grid-template-columns:1fr; }
}
/* ===== Contact / Locations ===== */
.loc-section{ padding:56px 0; background:#fff; }
.loc-section.alt{ background: var(--porcelain); }

.loc-grid{
  display:grid;
  grid-template-columns: 1.05fr 1fr; /* lijevo tekst, desno mapa */
  gap:36px;
  align-items:start;
}

.loc-title{
  font-family:"Playfair Display", serif;
  color:var(--navy);
  margin:0 0 .6rem;
  font-size: clamp(1.4rem, 1.1rem + .9vw, 1.9rem);
}

.loc-list{
  list-style:none; padding:0; margin:0;
  display:grid; gap:8px;
  color:#3a3a3a;
}
.loc-list a{ color:var(--navy); font-weight:600; text-decoration:none; }
.loc-list a:hover{ text-decoration:underline; }

.loc-map iframe{
  width:100%;
  height:360px;
  border:0;
  border-radius:16px;
  box-shadow: 0 8px 28px rgba(11,58,92,.10);
}

/* forma: 2 kolone pa full width poruka */
.form-modern{
  margin:26px auto 0;
  max-width:860px;
  background:#fff;
  border:1px solid rgba(11,58,92,.08);
  border-radius:18px;
  padding:28px;
  box-shadow: var(--shadow);
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:18px 22px;
}
.form-modern .form-row{ display:grid; gap:8px; }
.form-modern .form-row--full{ grid-column:1 / -1; }

.form-modern label{
  font-size:.92rem; color:var(--navy); font-weight:700;
}
.form-modern input,
.form-modern select,
.form-modern textarea{
  width:100%;
  border:1px solid rgba(11,58,92,.15);
  border-radius:12px;
  padding:12px 14px;
  font:inherit; color:var(--charcoal); background:#fff;
  transition: box-shadow .2s, border-color .2s;
}
.form-modern input:focus,
.form-modern select:focus,
.form-modern textarea:focus{
  outline:none;
  border-color: rgba(201,166,70,.7);
  box-shadow: 0 0 0 4px rgba(201,166,70,.15);
}

.form-actions{
  grid-column:1 / -1;
  display:flex; gap:14px; align-items:center; justify-content:center;
  margin-top:6px;
}
.form-note{
  grid-column:1 / -1;
  text-align:center; color:#6C7780; margin-top:8px; font-size:.95rem;
}

/* Responsive */
@media (max-width: 980px){
  .loc-grid{ grid-template-columns: 1fr; }
  .loc-map iframe{ height:300px; }
  .form-modern{ grid-template-columns: 1fr; padding:22px; }
}

/* ===== Contact form (clean / modern) ===== */
.contact-card{
  background: #F3F4F6;        /* malo tamnija, kao blok u About */
  padding: 80px 0;
}
.contact-card .container{
  max-width: 820px;
	}

/* Naslov iznad forme */
.card-title{
  text-align:center;
  font-family:"Playfair Display", serif;
  color: var(--navy);
  font-size: clamp(1.8rem, 1.3rem + 1.3vw, 2.2rem);
  margin: 0 0 6px;
}
.card-lead{
  text-align:center;
  color:#3a3a3a;
  max-width: 720px;
  margin: 0 auto 22px;
}

/* Forma – uvijek JEDNA kolona, i na desktopu i na mobilnom */
.contact-form{
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;   /* jedno polje po redu */
  gap: 16px;
}

/* velika, zaobljena polja kao na slici */
.contact-form input,
.contact-form textarea{
  width:100%;
  padding: 16px 18px;
  font-size: 1.05rem;           /* veći font u poljima */
  line-height: 1.4;
  border-radius: 14px;          /* zaobljeni uglovi */
  border: 1px solid rgba(11,58,92,.18);
  background:#fff;
  color: var(--charcoal);
  box-shadow: 0 4px 14px rgba(11,58,92,.06) inset;
  transition: border-color .2s, box-shadow .2s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder{
  color:#8b8f94;
}

/* fokus u zlatnoj nijansi */
.contact-form input:focus,
.contact-form textarea:focus{
  outline:none;
  border-color: var(--gold);
  box-shadow:
    0 0 0 3px rgba(201,166,70,.16),
    0 4px 14px rgba(11,58,92,.06) inset;
}

/* polje za poruku – veće i bez resize ručice */
.contact-form textarea{
  min-height: 190px;
  resize: none;
}

/* dugme preko cijele širine u tvom stilu */
.contact-form .btn-block{
  width: 100%;
  padding: 14px 20px;
  font-size: 1.05rem;
  border-radius: 14px;
}
/* ===== SAME background as contact form block ===== */
.contact-bg{
  background:#F3F4F6; /* ista boja kao contact-card ako postoji */
}

/* ako nema var(--porcelain-dark), koristi direktnu boju: */
.contact-bg{
  background:#F3F4F6;   /* tačno kontakt-form bež nijansa */
}
.about-block.about--alt-left.about--contact-bg {
  background: #F3F4F6 !important;
}

/* ===== Gallery – filter ===== */
.gal-filter{
  background: var(--porcelain);
  padding: 14px 0;
  border-top: 1px solid rgba(11,58,92,.06);
  border-bottom: 1px solid rgba(11,58,92,.06);
}
.gal-filter__wrap{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

/* ===== Gallery – sekcije ===== */
.gallery-section{
  padding: 56px 0;
  background: var(--porcelain);
}
.gallery-section.alt{
  background: #F3F4F6;   /* siva kao ostali blokovi */
}

.gallery-head{
  max-width: 820px;
  margin: 0 auto 20px;
  text-align: center;
}
.gallery-title{
  font-family:"Playfair Display", serif;
  color:var(--navy);
  font-size: clamp(1.5rem, 1.1rem + 1.2vw, 2rem);
  margin:0 0 .35rem;
}
.gallery-text{
  margin:0;
  color:#3a3a3a;
  line-height:1.7;
  text-align:justify;
  text-align-last:center;
}

/* ===== GRID ===== */
.gallery-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr)); /* 4 u redu na desktopu */
  gap: 20px;
}

/* Kartica */
.g-thumb{
  background:#fff;
  border-radius:16px;
  overflow:hidden;                 /* da slika ne viri ako malo “šeta” */
  box-shadow: 0 6px 20px rgba(11,58,92,.06);
}

/* Slika – UVIJEK cijela vidljiva, bez cropovanja */
.g-thumb img{
  display:block;
  width:100%;
  height:auto;                     /* visina ide po proporciji slike */
}

/* Responsive – 2 u redu, pa 1 u redu */
@media (max-width: 1024px){
  .gallery-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 640px){
  .gallery-grid{ grid-template-columns: 1fr; }
}
/* ========== FLOATING WHATSAPP + VIBER ========== */

.chat-floating{
  position: fixed;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1500; /* iznad headera i svih blokova */
}

/* jedno dugme (krug) */
.chat-btn{
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(0,0,0,.28);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

/* ikona unutra */
.chat-btn img{
  display: block;
  width: 62%;   /* da ima mali “padding” unutar kruga */
  height: auto;
}

/* boje po brendu (ako želiš blagi tint) */
.chat-btn--wa{
  background: #25D366;   /* WhatsApp zelena */
}
.chat-btn--viber{
  background: #7360F2;   /* Viber ljubičasta */
}

/* hover efekat na desktopu */
.chat-btn:hover{
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 14px 34px rgba(0,0,0,.32);
  opacity: .96;
}

/* Manje na mobilnim uređajima */
@media (max-width: 768px){
  .chat-floating{
    right: 16px;
    gap: 10px;
  }
  .chat-btn{
    width: 54px;
    height: 54px;
  }
}
@media (max-width: 480px){
  .chat-btn{
    width: 48px;
    height: 48px;
  }
}

.form-status{
  margin-top: 8px;
  font-size: 0.95rem;
  text-align: center;
  color: var(--navy);
}

/* mobilni prikaz footer-a */
@media (max-width: 900px) {
  .footer-grid {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
}


/* =======================
   Blog listing
   ======================= */
.blog-section{
  padding: 72px 0;
  background: var(--porcelain);
}

.blog-section .container{
  max-width: 1100px;
}

/* mreža kartica */
.blog-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

/* kartica */
.blog-card{
  background:#fff;
  border-radius:18px;
  border:1px solid rgba(11,58,92,.08);
  padding:20px 20px 22px;
  box-shadow: var(--shadow);
  display:flex;
  flex-direction:column;
  gap:8px;
  height:100%;
}

.blog-eyebrow{
  font-size:.78rem;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--gray);
  margin:0;
}

.blog-title{
  font-family:"Playfair Display", serif;
  font-size:1.15rem;
  margin:2px 0 4px;
}

.blog-title a{
  color:var(--navy);
  text-decoration:none;
}

.blog-title a:hover{
  text-decoration:underline;
}

.blog-meta{
  font-size:.85rem;
  color:var(--gray);
  margin:0 0 4px;
}

.blog-excerpt{
  margin:0;
  color:#3a3a3a;
  line-height:1.7;
}

/* Read article link na dnu kartice */
.blog-card .btn-link{
  margin-top:auto;
}

/* Responsive: 2 kolone na tablet, 1 kolona na mobilnom */
@media (max-width: 1024px){
  .blog-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px){
  .blog-grid{
    grid-template-columns: 1fr;
  }
}
.blog-excerpt,
.article-body p,
.article-block p {
  text-align: justify;
  text-justify: inter-word;
}
/* Blog article blocks */
.article-block {
  padding: 36px 32px;
  margin-bottom: 20px;
  border-radius: 16px;
  background: var(--porcelain);
}

.article-block.alt {
  background: #F3F4F6;
  padding: 36px 32px;
  margin-bottom: 20px;
  border-radius: 16px;
}

.article-block h2 {
  margin-top: 0;
  margin-bottom: 18px;
  font-family: "Playfair Display", serif;
  color: var(--navy);
}

.article-block h3 {
  margin-top: 16px;
  margin-bottom: 10px;
  color: var(--navy);
}

.article-body p,
.article-block p,
.article-block ul {
  text-align: justify;
  text-justify: inter-word;
}

.article-image {
  width: 100%;
  height: auto;
  max-width: 900px;
  display: block;
  margin: 40px auto;
  border-radius: 18px;
}





