/* ============================================================
   MaLo čistilni servis – style.css
   Spremenite barve tukaj, da se posodobijo po vsej strani:
   ============================================================ */
:root {
  --color-primary:       #E06010;  /* oranžna – CTA gumbi, poudarki */
  --color-primary-dark:  #C85208;  /* temnejša oranžna – hover */
  --color-primary-light: #FFF7ED;  /* zelo svetla oranžna – ozadni akcent */
  --color-white:         #FFFFFF;
  --color-bg-gray:       #F9FAFB;
  --color-text-dark:     #111827;
  --color-text-body:     #374151;
  --color-text-muted:    #6B7280;
  --color-border:        #E5E7EB;

  --radius:      12px;
  --radius-sm:   8px;
  --radius-lg:   20px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg:   0 8px 32px rgba(0,0,0,0.12);
  --transition:  200ms ease;
  --container:   1200px;
  --header-h:    72px;
}

/* ── Reset & base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text-body);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media (min-width: 768px)  { .container { padding-inline: 2rem; } }
@media (min-width: 1280px) { .container { padding-inline: 2.5rem; } }

/* ── Typography ── */
h1, h2, h3, h4 {
  color: var(--color-text-dark);
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.4rem); }
h4 { font-size: 1.05rem; }
p  { max-width: 70ch; }

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.6rem;
}
.section-title { margin-bottom: 1rem; }
.section-subtitle {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  max-width: 60ch;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-primary);
  color: #fff;
}
.btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--color-text-dark);
  border: 2px solid var(--color-border);
}
.btn-outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-1px);
}
.btn-white {
  background: #fff;
  color: var(--color-primary);
}
.btn-white:hover {
  background: var(--color-primary-light);
  transform: translateY(-1px);
}
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.875rem; }

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}
.site-header .container {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
  text-decoration: none;
}
.site-logo img {
  height: 44px;
  width: auto;
}
.site-logo .logo-text {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-text-dark);
  letter-spacing: -0.02em;
}
.site-logo .logo-text span { color: var(--color-primary); }

/* Main nav */
.main-nav { flex: 1; display: flex; justify-content: center; }
.main-nav > ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.main-nav a {
  display: block;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-body);
  transition: color var(--transition), background var(--transition);
}
.main-nav a:hover, .main-nav a.active {
  color: var(--color-primary);
  background: var(--color-primary-light);
}
.main-nav li { position: relative; }

/* Dropdown */
.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.2s ease;
  z-index: 200;
}
.dropdown-menu li a {
  display: block;
  padding: 0.6rem 1.1rem;
  font-size: 0.875rem;
  border-radius: 0;
  border-bottom: 1px solid var(--color-border);
}
.dropdown-menu li:last-child a { border-bottom: none; }
.dropdown-menu li a:hover { background: var(--color-primary-light); color: var(--color-primary); }
.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Header right */
.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-text-dark);
  transition: color var(--transition);
}
.header-phone:hover { color: var(--color-primary); }
.header-phone svg { color: var(--color-primary); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: var(--radius-sm);
  margin-left: auto;
  transition: background var(--transition);
}
.hamburger:hover { background: var(--color-bg-gray); }
.hamburger span {
  display: block;
  height: 2px;
  background: var(--color-text-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: #fff;
  z-index: 99;
  overflow-y: auto;
  padding: 1.5rem 1.25rem;
  border-top: 1px solid var(--color-border);
}
.mobile-nav.open { display: block; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-nav a {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text-body);
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}
.mobile-nav a:hover { background: var(--color-primary-light); color: var(--color-primary); }
.mobile-submenu { padding-left: 1rem; }
.mobile-submenu a { font-size: 0.9rem; }
.mobile-nav-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-body);
  background: none;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: inherit;
  transition: background var(--transition), color var(--transition);
}
.mobile-nav-toggle:hover { background: var(--color-primary-light); color: var(--color-primary); }
.mobile-nav-arrow { transition: transform 0.25s ease; flex-shrink: 0; }
.mobile-nav-has-sub.open .mobile-nav-arrow { transform: rotate(180deg); }
.mobile-nav-has-sub .mobile-submenu { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.mobile-nav-has-sub.open .mobile-submenu { max-height: 400px; }
.mobile-submenu-all { font-weight: 600 !important; }
.mobile-nav-cta { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.mobile-nav-cta .btn { justify-content: center; width: 100%; }

@media (max-width: 1023px) {
  .main-nav, .header-phone, .header-right .btn { display: none; }
  .hamburger { display: flex; }
}

/* ── Footer ── */
.site-footer {
  background: var(--color-text-dark);
  color: #9CA3AF;
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
/* short/full label helpers — default: show full, hide short */
.lbl-short { display: none; }
.lbl-full  { display: inline; }

@media (max-width: 639px) {
  .site-footer { padding: 2rem 0 1.25rem; }
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0 1.5rem;
    margin-bottom: 1.5rem;
  }
  .footer-brand {
    grid-column: 1 / -1;
    margin-bottom: 1.25rem;
  }
  .footer-desc { font-size: 0.78rem; max-width: none; }
  .footer-col h4 { font-size: 0.72rem; margin-bottom: 0.5rem; }
  .footer-col ul li + li { margin-top: 0.15rem; }
  .footer-col ul a { font-size: 0.72rem; }
  .footer-contact-item { font-size: 0.72rem; gap: 0.3rem; margin-bottom: 0.4rem; }
  .footer-contact-item svg { width: 13px; height: 13px; }
  .footer-social { gap: 1rem; margin-top: 0.75rem; }
  .footer-social a { width: 30px; height: 30px; }
  .footer-bottom { padding-top: 1rem; font-size: 0.72rem; }
  /* swap to short labels */
  .lbl-short { display: inline; }
  .lbl-full  { display: none; }
}
@media (min-width: 640px)  { .footer-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-brand .logo-text { color: #fff; }
.footer-brand .logo-text span { color: var(--color-primary); }
.footer-desc { margin-top: 0.75rem; font-size: 0.9rem; line-height: 1.7; max-width: 30ch; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #9CA3AF;
  transition: background var(--transition), color var(--transition);
}
.footer-social a:hover { background: var(--color-primary); color: #fff; }

.footer-col h4 { color: #fff; font-size: 0.9rem; font-weight: 600; margin-bottom: 1rem; }
.footer-col ul li + li { margin-top: 0.5rem; }
.footer-col ul a {
  font-size: 0.875rem;
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--color-primary); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 0.6rem;
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--color-primary); }
.footer-contact-item a:hover { color: var(--color-primary); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
}

/* ── Sections ── */
section { padding: 5rem 0; }
.section-alt { background: var(--color-bg-gray); }
.section-dark {
  background: var(--color-text-dark);
  color: #fff;
}
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark .section-label { color: #FDBA74; }
.section-orange {
  background: var(--color-primary);
  color: #fff;
}
.section-orange h2, .section-orange h3, .section-orange .section-label { color: #fff; }

.section-header { margin-bottom: 3rem; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin-inline: auto; }

/* ── Cards ── */
.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.card-body { padding: 1.5rem; }

/* Service cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card { cursor: pointer; }
.service-card-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
}
.service-card-body { padding: 1.25rem 1.5rem 1.5rem; }
.service-card-body h3 { margin-bottom: 0.5rem; }
.service-card-body p { font-size: 0.9rem; color: var(--color-text-muted); margin-bottom: 1rem; }
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
  transition: gap var(--transition);
}
.service-card:hover .service-card-link { gap: 0.65rem; }

/* Feature cards (icons + text) */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.feature-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
  flex: 1 1 220px;
  max-width: 320px;
}
.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--color-primary-light);
  color: var(--color-primary);
  margin-bottom: 1rem;
}
.feature-card h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.feature-card p { font-size: 0.875rem; color: var(--color-text-muted); max-width: none; }

/* Trust bar */
.trust-bar {
  background: var(--color-text-dark);
  padding: 2rem 0;
}
.trust-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 3rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
}
.trust-item svg { color: var(--color-primary); flex-shrink: 0; }
.trust-item-text strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}
.trust-item-text span { font-size: 0.8rem; color: #9CA3AF; }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.3) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 680px;
}
.hero-content h1 { color: #fff; margin-bottom: 1.25rem; }
.hero-content p { font-size: 1.15rem; color: rgba(255,255,255,0.85); margin-bottom: 2rem; max-width: 55ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

/* Service hero (with before/after slider) */
.service-hero {
  position: relative;
  background: var(--color-text-dark);
  padding: 5rem 0 4rem;
  overflow: hidden;
}
.service-hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .service-hero-inner { grid-template-columns: 1fr 1fr; }
}
.service-hero-content { color: #fff; }
.service-hero-content h1 { color: #fff; margin-bottom: 1rem; }
.service-hero-content p { color: rgba(255,255,255,0.8); margin-bottom: 2rem; }
.slider-hint {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-top: 1rem;
}
.slider-hint.hidden { display: none; }

/* ── Before/After Slider ── */
.before-after-slider {
  position: relative;
  user-select: none;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  cursor: ew-resize;
}
.before-after-slider .img-before,
.before-after-slider .img-after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.before-after-slider .img-after { clip-path: inset(0 50% 0 0); transition: clip-path 0.05s linear; }
.slider-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: #fff;
  transform: translateX(-50%);
  transition: left 0.05s linear;
  z-index: 10;
}
.slider-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
  z-index: 11;
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: -1px;
}
.slider-label {
  position: absolute;
  top: 0.75rem;
  padding: 0.3rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0,0,0,0.55);
  border-radius: 50px;
  z-index: 12;
  pointer-events: none;
}
.slider-label-before { right: 0.75rem; }
.slider-label-after  { left: 0.75rem; }

/* ── Gallery ── */
.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  justify-content: center;
}
.filter-btn {
  padding: 0.45rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 2px solid var(--color-border);
  color: var(--color-text-muted);
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn.active, .filter-btn:hover {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: #fff;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.gallery-item:hover .gallery-overlay { background: rgba(0,0,0,0.35); }
.gallery-overlay svg {
  color: #fff;
  opacity: 0;
  transform: scale(0.7);
  transition: all 0.3s ease;
}
.gallery-item:hover .gallery-overlay svg { opacity: 1; transform: scale(1); }
.gallery-label {
  position: absolute;
  bottom: 0;
  inset-inline: 0;
  padding: 0.6rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(transparent, rgba(0,0,0,0.65));
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.gallery-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.gallery-pair .pair-label {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: 50px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.gallery-pair .label-prej { background: rgba(0,0,0,0.65); color: #fff; }
.gallery-pair .label-potem { background: var(--color-primary); color: #fff; }

/* ── Lightbox ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: var(--radius-sm);
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  transition: background var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,0.25); }
.lb-before-after {
  width: min(90vw, 700px);
  max-height: 88vh;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
}

/* ── FAQ Accordion ── */
.faq-list { max-width: 800px; margin-inline: auto; }
.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-question {
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 0;
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-text-dark);
  cursor: pointer;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--color-primary); }
.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-primary-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background var(--transition);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--color-primary);
  color: #fff;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s ease;
}
.faq-item.open .faq-answer { max-height: 600px; }
.faq-answer-inner {
  padding-bottom: 1.25rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}

/* ── Reviews ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .reviews-grid { grid-template-columns: 1fr; }
}
.review-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.review-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.review-meta {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.review-stars { color: #FBBF24; display: flex; gap: 2px; font-size: 1rem; }
.review-text { font-size: 0.9rem; color: var(--color-text-body); font-style: italic; margin: 0; }
.review-author { font-weight: 700; font-size: 0.875rem; color: var(--color-text-dark); }
.review-date { font-size: 0.78rem; color: var(--color-text-muted); }
.rating-summary {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  padding: 1.75rem 2rem;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}
.rating-score {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--color-text-dark);
  line-height: 1;
}
.rating-stars { color: #FBBF24; display: flex; gap: 3px; font-size: 1.3rem; }
.rating-count { font-size: 0.9rem; color: var(--color-text-muted); margin-top: 0.25rem; }

/* ── Contact form ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1.4fr; } }

.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.4rem;
  color: var(--color-text-dark);
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: 0.95rem;
  color: var(--color-text-dark);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.15);
}
.form-input.error, .form-select.error, .form-textarea.error {
  border-color: #EF4444;
}
.form-error {
  font-size: 0.8rem;
  color: #EF4444;
  margin-top: 0.3rem;
  display: none;
}
.form-error.visible { display: block; }
.form-textarea { resize: vertical; min-height: 130px; }
.form-success {
  display: none;
  background: #D1FAE5;
  border: 1px solid #34D399;
  color: #065F46;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  margin-top: 1rem;
  font-weight: 500;
}
.form-success.visible { display: block; }

.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--color-primary-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-text strong { display: block; font-weight: 700; color: var(--color-text-dark); }
.contact-info-text a:hover { color: var(--color-primary); }

/* ── Checklist ── */
.checklist { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
}
.checklist li::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23E06010'%3E%3Cpath fill-rule='evenodd' d='M10 18a8 8 0 100-16 8 8 0 000 16zm3.857-9.809a.75.75 0 00-1.214-.882l-3.483 4.79-1.88-1.88a.75.75 0 10-1.06 1.061l2.5 2.5a.75.75 0 001.137-.089l4-5.5z' clip-rule='evenodd'/%3E%3C/svg%3E") no-repeat center / contain;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── CTA Section ── */
.cta-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  padding: 5rem 0;
  text-align: center;
  color: #fff;
}
.cta-section h2 { color: #fff; margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 2rem; margin-inline: auto; }
.cta-buttons { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ── Floating call button (mobile) ── */
.float-call {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 20px rgba(249,115,22,0.45);
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
}
.float-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(249,115,22,0.55);
}
@media (max-width: 1023px) { .float-call { display: none !important; } }

/* ── Mini stats strip ── */
.stats-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 4rem;
  text-align: center;
}
.stat-item strong {
  display: block;
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--color-primary);
}
.stat-item span { font-size: 0.875rem; color: var(--color-text-muted); }

/* ── Breadcrumb ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}
.breadcrumb a:hover { color: var(--color-primary); }
.breadcrumb-sep { opacity: 0.5; }

/* ── Utilities ── */
.text-center { text-align: center; }
.text-muted { color: var(--color-text-muted); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.hidden { display: none !important; }

/* ── Page header (inner pages) ── */
.page-header {
  background: var(--color-text-dark);
  padding: 4rem 0 3rem;
  color: #fff;
  text-align: center;
}
.page-header h1 { color: #fff; margin-bottom: 0.75rem; }
.page-header p { color: rgba(255,255,255,0.75); font-size: 1.1rem; margin-inline: auto; }

/* ── Maps placeholder ── */
.map-placeholder {
  width: 100%;
  height: 320px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-bg-gray);
  border: 2px dashed var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  text-align: center;
  font-size: 0.9rem;
}
.map-iframe {
  width: 100%;
  height: 320px;
  border-radius: var(--radius);
  border: none;
}

/* ── Responsive: reduce section padding on mobile ── */
@media (max-width: 640px) {
  section { padding: 3rem 0; }
  .service-hero { padding: 3rem 0 2.5rem; }
  .cta-section { padding: 3.5rem 0; }
}

/* ── Focus states (accessibility) ── */
:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── Mobile optimizations (max 767px) ── */
@media (max-width: 767px) {

  /* 1+9. Hero – pokaži oba fanta: zmanjšaj višino, premakni izrez desno in višje */
  .hero {
    min-height: 58vh;
    align-items: stretch;
  }
  .hero-bg img {
    object-position: 85% 20%;
  }

  /* 2. Hero napis zgoraj, gumba spodaj */
  .hero .container {
    display: flex;
    flex-direction: column;
  }
  .hero-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    max-width: 100%;
    padding-top: 0.5rem;
    padding-bottom: 3.5rem;
  }
  .hero-content h1 {
    font-size: clamp(1.35rem, 6vw, 1.75rem);
    margin-bottom: 0.5rem;
  }
  .hero-content p {
    font-size: 0.9rem;
    margin-bottom: 0;
  }
  .hero-cta {
    margin-top: auto;
    padding-top: 1.25rem;
  }
  .hero-cta .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }

  /* 3. Trust bar – manjša pisava + 2 postavki v vrsto */
  .trust-bar {
    padding: 1.25rem 0;
  }
  .trust-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 0.75rem;
  }
  .trust-item {
    gap: 0.5rem;
  }
  .trust-item svg {
    width: 20px;
    height: 20px;
  }
  .trust-item-text strong {
    font-size: 0.9rem;
  }
  .trust-item-text span {
    font-size: 0.7rem;
  }

  /* 4. Kartice storitev – 2 stolpca */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.875rem;
  }
  .service-card-body {
    padding: 0.75rem 0.875rem 1rem;
  }
  .service-card-body h3 {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
  }
  .service-card-body p {
    font-size: 0.78rem;
    margin-bottom: 0.6rem;
  }
  .service-card-link {
    font-size: 0.78rem;
  }
  .service-card-badge {
    font-size: 0.68rem;
    padding: 0.2rem 0.55rem;
  }

  /* 5. Prej/Potem slider – 2 v vrsto */
  .ba-home-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 0.875rem !important;
  }
  .ba-home-grid h3 {
    font-size: 0.78rem !important;
    margin-bottom: 0.5rem !important;
  }

  /* 7. O nas – stats-strip 2 v vrsto, manjše številke */
  .stats-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem 1rem;
    text-align: center;
  }
  .stat-item strong {
    font-size: 1.6rem;
  }
  .stat-item span {
    font-size: 0.78rem;
  }

  /* 8. Zakaj MaLo – feature kartice 2 v vrsto, manjše */
  .features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.875rem;
  }
  .feature-card {
    padding: 1.25rem 0.875rem;
    flex: none;
    max-width: none;
  }
  .feature-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 0.6rem;
  }
  .feature-icon svg {
    width: 20px;
    height: 20px;
  }
  .feature-card h3 {
    font-size: 0.875rem;
  }
  .feature-card p {
    font-size: 0.78rem;
  }

  /* 6. Mnenja strank – manjše kartice in tekst */
  .review-card {
    padding: 1rem 0.875rem;
    gap: 0.5rem;
  }
  .review-avatar {
    width: 36px;
    height: 36px;
    font-size: 0.78rem;
  }
  .review-text {
    font-size: 0.8rem;
  }
  .review-author {
    font-size: 0.78rem;
  }
  .review-date {
    font-size: 0.7rem;
  }
  .review-stars {
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  /* Storitve mini galerija – 2 v vrsto */
  .storitve-gallery-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 0.75rem !important;
  }

  /* Galerija – 2 v vrsto */
  .gallery-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 0.75rem !important;
  }

  /* Galerija before/after sliderji – 2 v vrsto, enako kot gallery-grid */
  .ba-grid-3 {
    grid-template-columns: 1fr 1fr !important;
    gap: 0.75rem !important;
  }

  /* Kontakt – obrazec pred kontaktnimi podatki */
  .contact-grid > div:first-child { order: 1; }
  .contact-grid > div:last-child  { order: -1; }
}
