/* ============================================================
   DENT-X DIGITAL – Premium Light Theme
   Kolor šema: crvena #D32F2F · crna #0D0D0D · bela/svetla siva · roze akcent
   ============================================================ */

/* === DESIGN TOKENS ======================================== */
:root {
  /* Glavne korporativne boje */
  --color-primary-red:  #D32F2F;
  --color-dark-black:   #0D0D0D;
  --color-bg-light:     #F8F9FA;
  --color-bg-card:      #FFFFFF;
  --color-border-gray:  #E5E7EB;
  --color-rose-accent:  #FFF0F5;
  --color-rose-glow:    rgba(252, 228, 236, 0.4);

  /* Radni aliasi — koriste se kroz ceo CSS */
  --accent:         #D32F2F;
  --accent-hover:   #B71C1C;
  --accent-glow:    rgba(211, 47, 47, 0.12);
  --accent-subtle:  #FFF0F5;   /* roze highlight pozadina */

  --obsidian:       #FFFFFF;   /* hero, why, contact — čista bela */
  --dark:           #F8F9FA;   /* services, pricing — ultra-svetla siva */
  --dark-2:         #FFFFFF;   /* kartice */
  --dark-3:         #F3F4F6;   /* placeholder, input bg */
  --surface:        #E5E7EB;
  --surface-2:      #D1D5DB;
  --border:         #E5E7EB;
  --border-light:   #D1D5DB;

  --blue:           #1565C0;
  --blue-light:     #1976D2;

  --text:           #0D0D0D;
  --text-muted:     #4B5563;
  --text-dim:       #9CA3AF;

  /* Footer ostaje tamna — crna iz logotipa */
  --footer-bg:      #0D0D0D;
  --footer-border:  rgba(255,255,255,0.09);
  --footer-text:    #6B7280;
  --footer-text-dim:#374151;
  --footer-hover:   #E5E7EB;

  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;
  --font-serif: 'DM Serif Display', Georgia, serif;

  --section-py: clamp(2.5rem, 4.5vw, 4.25rem);
  --r-sm:  8px;
  --r-md:  16px;
  --r-lg:  24px;
  --r-xl:  32px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t:    0.3s var(--ease);
  --tf:   0.15s ease;

  /* Senke — toplije, bez plavičaste primese */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 0 0 1px #E5E7EB;
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 0 0 1px #E5E7EB;
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.10), 0 0 0 1px #E5E7EB;
  --shadow-xl: 0 24px 64px rgba(0,0,0,0.13);
}

/* === RESET / BASE ========================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  background: var(--color-bg-light);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img, iframe { max-width: 100%; }

/* === TIPOGRAFIJA ========================================= */
h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--text);
  margin: 0;
}

h1 { font-size: clamp(2.5rem, 5.5vw, 4.4rem); }
h2 { font-size: clamp(2rem, 3.8vw, 3.1rem); }
h3 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); }

p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}
p:last-child { margin-bottom: 0; }

a { color: var(--accent); text-decoration: none; transition: color var(--tf); }
a:hover { color: var(--accent-hover); }
.text-accent { color: var(--accent) !important; }

/* === ZAJEDNIČKI LAYOUT =================================== */
.section-padding {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-subtle);
  border: 1px solid rgba(211,47,47,0.18);
  padding: 0.38em 0.95em;
  border-radius: 100px;
  margin-bottom: 0.75rem;
}

.section-header h2 { margin-top: 0.6rem; margin-bottom: 0.85rem; }

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
}

/* === DUGMAD ============================================== */
.btn-primary-custom,
.btn-outline-custom,
.btn-nav-cta,
.btn-print {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 600;
  border-radius: 100px;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--t), color var(--t), border-color var(--t),
              transform 0.18s ease, box-shadow var(--t);
  border: 1px solid transparent;
}

.btn-primary-custom {
  font-size: 0.95rem;
  padding: 0.85rem 2.1rem;
  background: var(--accent);
  color: #fff;
}
.btn-primary-custom:hover {
  background: var(--accent-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(211,47,47,0.28);
}

.btn-outline-custom {
  font-size: 0.95rem;
  padding: 0.85rem 2.1rem;
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-outline-custom:hover {
  background: var(--dark-3);
  border-color: var(--surface-2);
  color: var(--text);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-nav-cta {
  font-size: 0.84rem;
  padding: 0.52rem 1.3rem;
  background: var(--accent);
  color: #fff !important;
}
.btn-nav-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(211,47,47,0.28);
  color: #fff !important;
}

.btn-print {
  font-size: 0.88rem;
  padding: 0.68rem 1.75rem;
  background: var(--color-bg-card);
  color: var(--text);
  border-color: var(--border);
}
.btn-print:hover {
  background: var(--dark-3);
  color: var(--text);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

/* === NAVBAR ============================================== */
#mainNav {
  padding: 1.35rem 0;
  background: rgba(255,255,255,0);
  transition: background var(--t), backdrop-filter var(--t), padding var(--t), box-shadow var(--t);
  z-index: 1030;
}
#mainNav.scrolled {
  padding: 0.6rem 0;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(24px) saturate(1.8);
  -webkit-backdrop-filter: blur(24px) saturate(1.8);
  box-shadow: 0 1px 0 var(--border), 0 4px 24px rgba(0,0,0,0.05);
}

.nav-logo-wrap { display: flex; align-items: center; }
.nav-logo-img {
  height: 72px;
  width: auto;
  display: block;
  mix-blend-mode: multiply; /* bela pozadina logotipa nestaje na beloj stranici */
}

.brand-logo {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text);
  letter-spacing: -0.04em;
  line-height: 1;
}
.brand-x { color: var(--accent); }

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(13,13,13,0.55) !important;
  padding: 0.5rem 0.8rem !important;
  transition: color var(--tf);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0.8rem; right: 0.8rem;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--t);
}
.nav-link:hover { color: var(--text) !important; }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--text) !important; }

.navbar-toggler {
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 0.42rem 0.65rem;
}
.navbar-toggler:focus { box-shadow: 0 0 0 2px var(--accent-glow); }

@media (max-width: 991.98px) {
  .navbar-collapse.show,
  .navbar-collapse.collapsing {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(24px);
    padding: 1rem 0.5rem;
    border-radius: 0 0 var(--r-lg) var(--r-lg);
    border: 1px solid var(--border);
    border-top: none;
    margin-top: 0.5rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    position: relative;
    z-index: 1031;
  }
  .nav-link { padding: 0.7rem 0.8rem !important; }
  .navbar-nav .ms-lg-3 { margin-top: 0.75rem; padding: 0 0.8rem; }
  .btn-nav-cta { width: 100%; justify-content: center; }
}

/* === HERO ================================================ */
.hero-section {
  position: relative;
  background: var(--obsidian);
  overflow: clip;
  min-height: auto;
}

.hero-bg-grid {
  display: none;
}

.hero-accent-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}
.hero-orb-red {
  width: 680px; height: 680px;
  background: radial-gradient(circle, rgba(211,47,47,0.08) 0%, transparent 65%);
  top: -200px; right: -150px;
}
.hero-orb-blue {
  width: 420px; height: 420px;
  background: radial-gradient(circle, var(--color-rose-glow) 0%, transparent 70%);
  bottom: -60px; left: -80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  background: var(--color-bg-light);
  border: 1px solid var(--border);
  padding: 0.42em 1.05em;
  border-radius: 100px;
}
.hero-badge i { color: var(--accent); font-size: 0.85rem; }

.hero-title {
  color: var(--text);
  font-size: clamp(2.7rem, 6vw, 4.8rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--text-muted);
  max-width: 500px;
  line-height: 1.8;
}

.hero-stats { border-top: 1px solid var(--border); padding-top: 2rem; }
.hero-stat { display: flex; flex-direction: column; gap: 0.2rem; }
.hero-stat-num {
  font-family: var(--font-sans);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.73rem;
  font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.09em;
}
.hero-stat-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
  margin: 0 0.2rem;
}

/* Hero vizual */
.hero-visual { position: relative; max-width: 460px; width: 100%; }
.hero-visual-inner { position: relative; }

.hero-real-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 540px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--r-xl);
  display: block;
  box-shadow: var(--shadow-lg);
}


/* Floating kartice */
.hero-floating-card {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 0.65rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  animation: float 4s ease-in-out infinite;
}
.card-top-right { top: 10%; right: -6%; animation-delay: 0s; }
.card-bottom-left { bottom: 12%; left: -6%; animation-delay: 1.6s; }

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-9px); }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  opacity: 0.22;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  pointer-events: none;
}
.scroll-line {
  width: 1px; height: 42px;
  background: linear-gradient(to bottom, transparent, var(--text-dim));
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

/* === SEKCIJA USLUGA ====================================== */
.services-section {
  background: var(--color-rose-accent);
  position: relative;
}
.services-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

/* --- Services: naizmenični redovi slika + tekst boks ----- */
.services-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.svc-row {
  display: flex;
  gap: 1.25rem;
  align-items: stretch;
  min-height: 380px;
}

.svc-cell {
  flex: 0 0 calc(50% - 0.625rem);
  width: calc(50% - 0.625rem);
  border-radius: var(--r-xl);
  overflow: hidden;
}

/* Ćelija sa slikom */
.svc-media {
  flex-shrink: 0;
}
.svc-img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
  display: block;
}
.svc-media:hover .svc-img {
  transform: scale(1.05);
}

/* Ćelija sa tekstom – zajednički stilovi */
.svc-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.1rem;
  padding: 3rem 2.75rem;
}

.svc-eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  padding: 0.3em 0.9em;
  width: fit-content;
}

.svc-text h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.9rem;
  line-height: 1.2;
  margin: 0;
}

.svc-text p {
  font-size: 0.92rem;
  line-height: 1.78;
  margin: 0;
}

/* Varijanta: bela pozadina */
.svc-text--light {
  background: var(--color-bg-card);
  box-shadow: var(--shadow-md);
}
.svc-text--light .svc-eyebrow {
  color: var(--accent);
  background: rgba(211, 47, 47, 0.07);
  border: 1px solid rgba(211, 47, 47, 0.18);
}
.svc-text--light h3 { color: var(--text); }
.svc-text--light p  { color: var(--text-muted); }

/* Varijanta: crna pozadina */
.svc-text--dark {
  background: var(--color-dark-black);
}
.svc-text--dark .svc-eyebrow {
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
}
.svc-text--dark h3 { color: #ffffff; }
.svc-text--dark p  { color: rgba(255,255,255,0.72); }

/* Varijanta: crvena pozadina */
.svc-text--accent {
  background: #D32F2F;
}
.svc-text--accent .svc-eyebrow {
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
}
.svc-text--accent h3 { color: #ffffff; }
.svc-text--accent p  { color: rgba(255,255,255,0.82); }

.svc-text--bordered {
  background: #ffffff;
  border: 2px solid #D32F2F;
  box-shadow: var(--shadow-md);
}
.svc-text--bordered .svc-eyebrow {
  color: var(--accent);
  background: var(--accent-subtle);
  border: 1px solid rgba(211,47,47,0.25);
}
.svc-text--bordered h3 { color: #D32F2F; }
.svc-text--bordered p  { color: var(--text-muted); }

/* Mobilni prikaz: vertikalni stek */
@media (max-width: 767.98px) {
  .svc-row {
    flex-direction: column;
    min-height: unset;
    gap: 1.5rem;
  }
  .svc-cell {
    flex: 1 1 auto;
    width: 100%;
  }
  /* Kod obrnutih redova (tekst-levo, slika-desno) na mobilnom
     slika mora da dođe prva vizualno */
  .svc-row > .svc-text:first-child {
    order: 2;
  }
  .svc-row > .svc-media:last-child {
    order: 1;
  }
  .svc-img {
    min-height: 240px;
    height: 240px;
  }
  .svc-text {
    padding: 1.75rem 1.5rem;
    gap: 0.85rem;
  }
  .svc-text h3 {
    font-size: 1.35rem;
  }
}

/* === SEKCIJA "ZAŠTO MI" ================================== */
.why-section {
  background: var(--obsidian);
  position: relative;
  overflow: hidden;
}
.why-bg-orb {
  position: absolute;
  width: 520px; height: 520px;
  background: radial-gradient(circle, var(--color-rose-glow) 0%, transparent 68%);
  top: 50%; left: -180px;
  transform: translateY(-50%);
  filter: blur(60px);
  pointer-events: none;
}

.why-visual { position: relative; border-radius: var(--r-xl); overflow: visible; }

.why-real-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border-radius: var(--r-xl);
  display: block;
  box-shadow: var(--shadow-md);
}

.why-badge-float {
  position: absolute;
  bottom: -1.25rem; right: -1.25rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 0.9rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-lg);
}
.why-badge-float i { font-size: 1.7rem; color: var(--accent); flex-shrink: 0; }
.why-badge-float strong { display: block; font-size: 0.83rem; color: var(--text); font-weight: 700; }
.why-badge-float span { font-size: 0.72rem; color: var(--text-dim); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
}
@media (max-width: 575.98px) { .why-grid { grid-template-columns: 1fr; } }

.why-item { display: flex; gap: 1rem; align-items: flex-start; }

.why-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  color: var(--accent);
  margin-top: 0.1rem;
  transition: background var(--t), border-color var(--t), box-shadow var(--t);
}
.why-item:hover .why-icon {
  background: var(--accent-subtle);
  border-color: rgba(211,47,47,0.22);
  box-shadow: 0 4px 12px rgba(211,47,47,0.1);
}

.why-text h3 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.45rem;
}
.why-text p { font-size: 0.875rem; line-height: 1.72; margin: 0; }

/* === SEKCIJA CENOVNIKA ================================== */
.pricing-section {
  background: var(--dark);
  position: relative;
}
.pricing-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

/* --- Pricing: single sheet with red section labels ------- */
.price-sheet {
  max-width: 720px;
  margin: 0 auto;
  background: var(--color-bg-card);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--accent);
  padding: 2.5rem 3rem;
}

/* Crveni naslovni labeli */
.pt-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 2rem 0 0.6rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}
.pt-label:first-child { padding-top: 0; }

/* Redovi */
.pt-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border-light);
  transition: background var(--tf);
}
.pt-row:hover { background: var(--color-rose-accent); margin: 0 -3rem; padding: 0.9rem 3rem; }

.pt-row--highlight .pt-price { color: var(--text); }

.pt-row-left {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  flex: 1;
  min-width: 0;
}

.pt-num {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
  min-width: 1.25rem;
  padding-top: 0.15rem;
  flex-shrink: 0;
}

.pt-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
}

.pt-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.35;
}

.pt-sub {
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.3;
}

.pt-price {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  flex-shrink: 0;
}
.pt-price em {
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 400;
  color: var(--text-dim);
  margin-left: 0.15em;
}

/* Footer unutar sheeta */
.pt-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.pt-footer-note {
  font-size: 0.78rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.pt-footer-note i { color: var(--accent); }
.pt-footer-note strong { color: var(--text-muted); }

.pt-footer-tagline {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--accent);
  text-transform: uppercase;
}

@media (max-width: 575.98px) {
  .price-sheet { padding: 1.75rem 1.25rem; }
  .pt-row:hover { margin: 0 -1.25rem; padding: 0.9rem 1.25rem; }
  .pt-footer { flex-direction: column; align-items: flex-start; }
}


/* === KONTAKT SEKCIJA ===================================== */
.contact-section {
  background: var(--obsidian);
  position: relative;
}
.contact-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.contact-card {
  background: var(--color-bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-md);
}
.contact-card-title {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.75rem;
}

.contact-info-block { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; }

.contact-info-icon {
  width: 38px; height: 38px;
  flex-shrink: 0;
  background: var(--accent-subtle);
  border: 1px solid rgba(211,47,47,0.14);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--accent);
  margin-top: 0.1rem;
}

.contact-info-item strong {
  display: block;
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 0.28rem;
}
.contact-info-item p { margin: 0; font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

.contact-link { color: var(--text); font-weight: 600; font-size: 1rem; }
.contact-link:hover { color: var(--accent); }

.hours-row {
  display: grid;
  grid-template-columns: 9rem auto;
  gap: 1rem;
  font-size: 0.86rem;
  padding: 0.15rem 0;
}
.hours-time { font-weight: 600; color: var(--text); }
.hours-row.closed .hours-time { color: var(--text-dim); }

.contact-ctas { margin-top: auto; padding-top: 1.5rem; }

.map-wrapper {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 440px;
  background: var(--dark-3);
  box-shadow: var(--shadow-md);
}
.map-wrapper iframe { display: block; width: 100%; height: 100%; min-height: 440px; border: 0; }

/* === FOOTER (tamna) ====================================== */
.site-footer {
  background: var(--footer-bg);
  padding: 3rem 0 1.75rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 3rem;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--footer-border);
  margin-bottom: 1.5rem;
}

.footer-logo-wrap {
  background: rgba(255,255,255,0.94);
  border-radius: 8px;
  padding: 6px 12px;
  display: inline-flex;
  align-items: center;
  transition: background var(--tf);
}
.footer-logo-wrap:hover { background: #fff; }
.footer-logo-img { height: 30px; width: auto; display: block; }

.footer-brand p {
  font-size: 0.83rem;
  margin-top: 0.75rem;
  max-width: 220px;
  color: var(--footer-text);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-links a {
  font-size: 0.87rem;
  color: var(--footer-text);
  text-decoration: none;
  transition: color var(--tf);
}
.footer-links a:hover { color: var(--footer-hover); }

.footer-contact { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-contact a, .footer-contact span {
  font-size: 0.87rem;
  color: var(--footer-text);
  text-decoration: none;
  transition: color var(--tf);
}
.footer-contact a:hover { color: var(--footer-hover); }
.footer-contact span { cursor: default; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
}
.footer-bottom p { font-size: 0.76rem; color: var(--footer-text-dim); margin: 0; }

/* === SCROLL REVEAL ======================================= */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.32s; }

/* === SCROLLBAR =========================================== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--color-bg-light); }
::-webkit-scrollbar-thumb { background: var(--surface-2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--surface); }

/* === PRINT TEMPLATE ====================================== */
#printTemplate { display: none; }

@media print {
  @page { size: A4 portrait; margin: 1.5cm 1.8cm; }

  * {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
    color-adjust: exact !important;
  }

  body > *:not(#printTemplate) { display: none !important; }

  #printTemplate {
    display: block !important;
    font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
    color: #111;
    background: #fff;
    font-size: 10.5pt;
    line-height: 1.5;
  }

  .print-header {
    text-align: center;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 3px solid #D32F2F;
  }

  .print-logo-row { margin-bottom: 0.4rem; }

  .print-brand {
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 22pt;
    font-weight: 900;
    color: #111;
    letter-spacing: -0.03em;
  }
  .print-brand span { color: #D32F2F; }

  .print-address { font-size: 9pt; color: #555; margin: 0.3rem 0; }

  .print-title {
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 16pt;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0.6rem 0 0.3rem;
  }

  .print-date { font-size: 9pt; color: #777; font-style: italic; margin: 0; }

  .print-table { width: 100%; border-collapse: collapse; font-size: 10pt; margin-top: 0.5rem; }

  .print-table thead tr { background: #D32F2F !important; }

  .print-table th {
    color: #fff !important;
    font-weight: 700;
    font-size: 9pt;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 8px 10px;
    text-align: left;
    border: 1px solid #B71C1C;
  }
  .print-table th:last-child { text-align: right; }

  .print-table td {
    padding: 7px 10px;
    border: 1px solid #E5E7EB;
    color: #222;
    vertical-align: top;
  }
  .print-table td:last-child {
    text-align: right;
    font-weight: 700;
    white-space: nowrap;
  }

  .print-table tbody tr:nth-child(even):not(.print-category) {
    background: #fafafa !important;
  }

  .print-category td {
    background: #FFF0F5 !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    font-size: 8pt;
    letter-spacing: 0.1em;
    color: #D32F2F !important;
    padding: 6px 10px;
    border-color: #E5E7EB !important;
  }

  .print-footer-note {
    font-size: 8.5pt;
    color: #888;
    text-align: center;
    margin-top: 1.2rem;
    font-style: italic;
    border-top: 1px solid #E5E7EB;
    padding-top: 0.6rem;
  }
}

/* === RESPONZIVNOST ======================================= */
@media (max-width: 767.98px) {
  .hero-section {
    min-height: unset;
  }
  .hero-section .row {
    min-height: unset !important;
    padding-bottom: 2.5rem !important;
  }
  .hero-stats {
    display: grid !important;
    grid-template-columns: 1fr 1px 1fr 1px 1fr;
    gap: 0;
    align-items: center;
  }
  .hero-stat {
    text-align: center;
    padding: 0 0.25rem;
  }
  .hero-stat-divider {
    width: 1px;
    height: 2.5rem;
    background: var(--border);
    margin: 0;
    align-self: center;
    justify-self: center;
  }
  .hero-stat-num { font-size: 1rem; }
  .hero-stat-label { font-size: 0.58rem; }
  .why-badge-float { display: none; }
  .contact-card { padding: 1.5rem; }
}

@media (max-width: 575.98px) {
  .hero-ctas .btn-primary-custom,
  .hero-ctas .btn-outline-custom { width: 100%; }
}
