/*
  ZELENI SERVIS – PREMIUM DESIGN SYSTEM v3.0
  Full Landing Page, Service Pages, Professional Layout
*/

/* ─────────────────────────────────────────────── */
/*  DESIGN TOKENS                                  */
/* ─────────────────────────────────────────────── */
:root {
  --primary:       #1b5e30;
  --primary-rgb:   27, 94, 48;
  --primary-light: #26883f;
  --primary-hover: #134421;
  --primary-pale:  #eef6f0;

  --accent:        #f9a825;
  --accent-rgb:    249, 168, 37;
  --accent-hover:  #f57f17;
  --accent-pale:   #fff8e1;

  --bg-white:  #ffffff;
  --bg-soft:   #f5f8f5;
  --bg-dark:   #0d1a0f;
  --bg-dark2:  #112014;

  --border:    #dce8de;
  --text-main: #182119;
  --text-muted:#4f6251;

  --font-heading: 'Outfit', sans-serif;
  --font-body:    'Inter', sans-serif;

  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   32px;
  --radius-full: 9999px;

  --shadow-sm:   0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:   0 8px 24px rgba(0,0,0,0.10);
  --shadow-lg:   0 16px 48px rgba(0,0,0,0.13);
  --shadow-glow: 0 8px 32px rgba(27,94,48,0.30);

  --trans-fast:   0.18s cubic-bezier(.4,0,.2,1);
  --trans-normal: 0.35s cubic-bezier(.4,0,.2,1);
  --trans-slow:   0.55s cubic-bezier(.4,0,.2,1);

  --space-1:  8px;
  --space-2:  16px;
  --space-3:  24px;
  --space-4:  32px;
  --space-6:  48px;
  --space-8:  64px;
  --space-12: 96px;
}

/* ─────────────────────────────────────────────── */
/*  RESET & BASE                                   */
/* ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background: var(--bg-white);
  line-height: 1.65;
  overflow-x: hidden;
}

.loading * { transition: none !important; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
}

a { text-decoration: none; color: inherit; transition: var(--trans-fast); }
ul { list-style: none; }
img { display: block; max-width: 100%; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-3);
}

/* ─────────────────────────────────────────────── */
/*  SKIP LINK                                      */
/* ─────────────────────────────────────────────── */
.skip-link {
  position: absolute; top: -60px; left: var(--space-2);
  background: var(--primary); color: white;
  padding: 12px 20px; z-index: 9999;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}
.skip-link:focus { top: 0; }

/* ─────────────────────────────────────────────── */
/*  HEADER                                         */
/* ─────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; width: 100%; height: 80px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  z-index: 1000;
  display: flex; align-items: center;
  transition: height var(--trans-normal), box-shadow var(--trans-normal);
}
.site-header.scrolled { height: 64px; box-shadow: var(--shadow-sm); }

.header-container {
  display: flex; justify-content: space-between; align-items: center;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 12px; font-family: var(--font-heading); }
.logo-svg { flex-shrink: 0; }
.logo-text { font-size: 1.2rem; line-height: 1; }
.logo-text span { color: var(--text-muted); font-weight: 500; }
.logo-text strong { color: var(--primary); }
.logo-light .logo-text span { color: rgba(255,255,255,0.7); }
.logo-light .logo-text strong { color: white; }

/* Nav */
.nav-links { display: flex; gap: 36px; }
.nav-link {
  font-weight: 500; font-size: 0.95rem;
  color: var(--text-main); position: relative; padding-bottom: 4px;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--primary);
  transition: width var(--trans-normal);
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(12px);
  background: white; min-width: 240px; padding-top: 12px;
  opacity: 0; visibility: hidden; transition: var(--trans-normal);
  pointer-events: none;
}
.has-dropdown:hover .dropdown {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}
.dropdown-inner {
  background: white; border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); border: 1px solid var(--border); overflow: hidden;
}
.dropdown-inner a {
  display: block; padding: 12px var(--space-3);
  font-size: 0.9rem; border-bottom: 1px solid var(--border); color: var(--text-main);
}
.dropdown-inner a:last-child { border-bottom: none; }
.dropdown-inner a:hover { background: var(--bg-soft); color: var(--primary); padding-left: 28px; }

.chevron::after { content: ' ▾'; font-size: 0.7rem; }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 12px; }

/* ─────────────────────────────────────────────── */
/*  BUTTONS                                        */
/* ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 13px 26px;
  border-radius: var(--radius-full); font-family: var(--font-body);
  font-weight: 600; font-size: 0.95rem;
  cursor: pointer; border: none; text-decoration: none;
  transition: var(--trans-normal); white-space: nowrap; line-height: 1;
}
.btn-primary {
  background: var(--primary); color: white;
  box-shadow: 0 4px 16px rgba(27,94,48,0.35);
}
.btn-primary:hover {
  background: var(--primary-hover); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27,94,48,0.40);
}
.btn-accent {
  background: var(--accent); color: #1a1a1a;
  box-shadow: 0 4px 16px rgba(249,168,37,0.35);
}
.btn-accent:hover {
  background: var(--accent-hover); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249,168,37,0.40);
}
.btn-outline {
  background: transparent; color: white;
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: white; }
.btn-outline-dark {
  background: transparent; color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline-dark:hover { background: var(--primary); color: white; }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-icon { font-size: 1.1rem; }

/* ─────────────────────────────────────────────── */
/*  MOBILE MENU                                    */
/* ─────────────────────────────────────────────── */
.menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.menu-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--primary); border-radius: 2px; transition: 0.3s transform, 0.3s opacity;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


.mobile-menu {
  position: fixed; inset: 0; background: white;
  z-index: 999; display: none; flex-direction: column; overflow-y: auto;
  padding-top: 90px;
}
.mobile-menu.is-open {
  display: flex !important;
}
.mobile-menu-inner { padding: var(--space-4); }
.mobile-nav a {
  display: block; padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 1.1rem; font-weight: 500; color: var(--text-main);
}
.mobile-nav a:hover { color: var(--primary); }
.mobile-menu-footer {
  padding: var(--space-4); background: var(--bg-soft);
  border-radius: var(--radius-md); margin-top: var(--space-4);
  text-align: center;
}
.mobile-call-link {
  display: block; color: var(--primary);
  font-weight: 700; font-size: 1.1rem; margin-top: 8px;
}

/* ─────────────────────────────────────────────── */
/*  REVEAL ANIMATIONS                              */
/* ─────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity var(--trans-slow), transform var(--trans-slow); }
.reveal.active { opacity: 1; transform: translateY(0); }
.stagger-1 { transition-delay: 0.08s; }
.stagger-2 { transition-delay: 0.16s; }
.stagger-3 { transition-delay: 0.24s; }
.stagger-4 { transition-delay: 0.32s; }

/* ─────────────────────────────────────────────── */
/*  SECTION HELPERS                                */
/* ─────────────────────────────────────────────── */
section { padding: var(--space-12) 0; }
.section-label {
  display: inline-block; color: var(--primary-light);
  font-weight: 700; font-size: 0.78rem;
  text-transform: uppercase; letter-spacing: 0.12em;
  margin-bottom: 12px;
}
.section-title { font-size: clamp(1.9rem, 3.5vw, 2.8rem); margin-bottom: var(--space-3); }
.section-desc { color: var(--text-muted); font-size: 1.1rem; max-width: 620px; margin-bottom: var(--space-6); }
.text-center { text-align: center; }
.text-center .section-desc { margin-left: auto; margin-right: auto; }

/* ─────────────────────────────────────────────── */
/*  HERO                                           */
/* ─────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  color: white; overflow: hidden; padding-top: 80px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: url('https://images.unsplash.com/photo-1592150621744-aca64f48394a?auto=format&fit=crop&q=80&w=1800')
              center / cover no-repeat;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,30,14,0.84) 0%,
    rgba(15,40,20,0.72) 60%,
    rgba(10,25,12,0.55) 100%
  );
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 740px;
}
.hero .section-label { color: var(--accent); }
.hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  color: white; margin-bottom: var(--space-3); line-height: 1.08;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.hero h1 em { color: var(--accent); font-style: normal; }
.hero p {
  font-size: 1.2rem; opacity: 0.9; margin-bottom: var(--space-4);
  max-width: 580px; line-height: 1.7;
}
.hero-actions { display: flex; gap: var(--space-2); flex-wrap: wrap; }

/* Hero badges */
.hero-badges {
  display: flex; gap: var(--space-2); flex-wrap: wrap; margin-top: var(--space-6);
  position: relative; z-index: 1;
}
.hero-badge {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.18);
  padding: 8px 14px; border-radius: var(--radius-full); font-size: 0.85rem;
  color: rgba(255,255,255,0.92); white-space: nowrap;
}

/* ─────────────────────────────────────────────── */
/*  TRUST BAR                                      */
/* ─────────────────────────────────────────────── */
.trust-bar-wrap {
  position: relative; z-index: 10; margin-top: -56px;
  padding: 0 var(--space-3);
}
.trust-bar {
  background: white; padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4); border: 1px solid var(--border);
}
.trust-item {
  display: flex; align-items: center; gap: 14px;
  padding: 0 var(--space-2);
}
.trust-item + .trust-item { border-left: 1px solid var(--border); }
.trust-icon { font-size: 2rem; flex-shrink: 0; }
.trust-item h4 { font-size: 0.95rem; color: var(--primary); margin-bottom: 2px; }
.trust-item p { font-size: 0.8rem; color: var(--text-muted); }

/* ─────────────────────────────────────────────── */
/*  SERVICE CARDS (Home Grid)                      */
/* ─────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}
.service-card {
  background: white; border-radius: var(--radius-lg);
  border: 1px solid var(--border); overflow: hidden;
  transition: var(--trans-normal); display: flex; flex-direction: column;
}
.service-card:hover {
  transform: translateY(-8px); box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}
.service-image { height: 220px; overflow: hidden; }
.service-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--trans-slow);
}
.service-card:hover .service-image img { transform: scale(1.07); }
.service-body { padding: var(--space-3); flex-grow: 1; display: flex; flex-direction: column; }
.service-icon-badge {
  width: 44px; height: 44px; border-radius: var(--radius-md);
  background: var(--primary-pale); display: flex;
  align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 12px;
}
.service-body h3 { font-size: 1.15rem; margin-bottom: 8px; }
.service-body p { font-size: 0.9rem; color: var(--text-muted); flex-grow: 1; }
.btn-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--primary); font-weight: 600; font-size: 0.9rem;
  margin-top: var(--space-2);
}
.btn-link:hover { gap: 10px; }
.tag {
  display: inline-block; font-size: 0.7rem; padding: 3px 10px;
  background: var(--primary-pale); color: var(--primary-light);
  border-radius: var(--radius-full); font-weight: 600;
}

/* ─────────────────────────────────────────────── */
/*  PROCESS STEPS                                  */
/* ─────────────────────────────────────────────── */
.process-section { background: var(--bg-soft); }
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4); counter-reset: steps;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute; top: 40px; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
  opacity: 0.18;
}
.process-step { text-align: center; position: relative; }
.step-number {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--primary); color: white;
  font-family: var(--font-heading); font-size: 1.6rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--space-3);
  box-shadow: var(--shadow-glow);
}
.process-step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.process-step p { font-size: 0.88rem; color: var(--text-muted); }

/* ─────────────────────────────────────────────── */
/*  WHY US / ADVANTAGES                            */
/* ─────────────────────────────────────────────── */
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--space-8); align-items: center;
}
.why-img {
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 4/3;
}
.why-img img { width: 100%; height: 100%; object-fit: cover; }
.why-list { display: flex; flex-direction: column; gap: var(--space-3); margin-top: var(--space-4); }
.why-item {
  display: flex; gap: var(--space-2);
  padding: var(--space-3);
  background: white; border-radius: var(--radius-md);
  border: 1px solid var(--border); transition: var(--trans-fast);
}
.why-item:hover { border-color: var(--primary-light); box-shadow: var(--shadow-sm); }
.why-item-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--primary-pale); border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.why-item h4 { font-size: 1rem; margin-bottom: 4px; }
.why-item p { font-size: 0.88rem; color: var(--text-muted); }

/* ─────────────────────────────────────────────── */
/*  METRICS                                        */
/* ─────────────────────────────────────────────── */
.metrics-section {
  background: var(--primary);
  background: linear-gradient(135deg, var(--primary-hover) 0%, var(--primary-light) 100%);
  color: white; padding: var(--space-12) 0;
}
.metrics-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4); text-align: center;
}
.metric-value {
  font-family: var(--font-heading); font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 700; color: white; line-height: 1;
}
.metric-value span { color: var(--accent); }
.metric-label { font-size: 0.95rem; opacity: 0.85; margin-top: 8px; }

/* ─────────────────────────────────────────────── */
/*  TESTIMONIALS                                   */
/* ─────────────────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }
.testimonial-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: var(--space-4);
  transition: var(--trans-fast); display: flex; flex-direction: column;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); border-color: var(--primary-light); }
.stars { color: var(--accent); font-size: 1.1rem; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-card blockquote {
  font-size: 0.95rem; color: var(--text-muted);
  line-height: 1.7; flex-grow: 1; margin-bottom: var(--space-3);
}
.testimonial-card blockquote::before { content: '\201C'; }
.testimonial-card blockquote::after { content: '\201D'; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.author-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--primary-pale); display: flex;
  align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: 0.9rem; }
.author-location { font-size: 0.78rem; color: var(--text-muted); }

/* ─────────────────────────────────────────────── */
/*  GUARANTEE / CTA BANNER                         */
/* ─────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-hover) 0%, #1e7a38 100%);
  color: white; border-radius: var(--radius-xl);
  padding: var(--space-8); text-align: center;
  box-shadow: var(--shadow-glow);
  margin: 0 var(--space-3);
}
.cta-banner h2 { color: white; font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: var(--space-2); }
.cta-banner p { opacity: 0.9; font-size: 1.1rem; max-width: 600px; margin: 0 auto var(--space-4); }
.cta-banner .btn-accent { font-size: 1.05rem; padding: 16px 36px; }
.guarantee-badges {
  display: flex; justify-content: center; gap: var(--space-4);
  flex-wrap: wrap; margin-top: var(--space-4);
}
.guarantee-badge {
  display: flex; align-items: center; gap: 8px;
  opacity: 0.85; font-size: 0.88rem;
}
.guarantee-badge::before { content: '✓'; color: var(--accent); font-weight: 700; }

/* ─────────────────────────────────────────────── */
/*  SERVICE LANDING PAGES                          */
/* ─────────────────────────────────────────────── */
.service-hero {
  min-height: 56vh; position: relative;
  display: flex; align-items: flex-end; color: white;
  padding-top: 80px;
}
.service-hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.service-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.service-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,18,8,0.85) 0%, rgba(5,18,8,0.35) 100%);
}
.service-hero-content {
  position: relative; z-index: 1; padding: var(--space-8) 0;
  max-width: 720px;
}
.service-hero-content h1 {
  color: white; font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-bottom: var(--space-2);
}
.service-hero-content p { font-size: 1.15rem; opacity: 0.88; max-width: 560px; }

.service-features {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3); margin-top: var(--space-6);
}
.service-detail-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--space-8); align-items: start;
}
.service-feature {
  background: var(--bg-soft); border-radius: var(--radius-md);
  padding: var(--space-3); border: 1px solid var(--border);
  text-align: center; transition: var(--trans-fast);
}
.service-feature:hover { background: white; box-shadow: var(--shadow-sm); border-color: var(--primary-light); }
.service-feature-icon { font-size: 2rem; margin-bottom: 10px; }
.service-feature h4 { font-size: 0.95rem; margin-bottom: 6px; }
.service-feature p { font-size: 0.83rem; color: var(--text-muted); }

/* USP Checklist */
.usp-check { display: flex; flex-direction: column; gap: 12px; margin: var(--space-4) 0; }
.usp-check li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.95rem;
}
.usp-check li::before {
  content: '✓'; color: var(--primary-light);
  font-weight: 700; font-size: 1rem; flex-shrink: 0; margin-top: 2px;
}

/* Call CTA Box */
.call-cta-box {
  background: linear-gradient(135deg, var(--primary-pale) 0%, #d5eedd 100%);
  border-radius: var(--radius-lg); padding: var(--space-6);
  border: 1px solid #b2d9be; text-align: center;
  margin: var(--space-8) 0;
}
.call-cta-box h3 { font-size: 1.5rem; margin-bottom: 8px; }
.call-cta-box p { color: var(--text-muted); margin-bottom: var(--space-3); }

/* ─────────────────────────────────────────────── */
/*  FAQ ACCORDION                                  */
/* ─────────────────────────────────────────────── */
.faq-section { background: var(--bg-soft); }
.faq-accordion { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.accordion-item {
  background: white; border-radius: var(--radius-md);
  border: 1px solid var(--border); overflow: hidden;
  transition: var(--trans-fast);
}
.accordion-item.active { border-color: var(--primary-light); box-shadow: var(--shadow-sm); }
.acc-header {
  cursor: pointer; padding: var(--space-3) var(--space-4);
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 600; font-size: 1rem; color: var(--text-main);
  gap: 12px; transition: background var(--trans-fast);
}
.acc-header:hover { background: var(--bg-soft); }
.accordion-item.active .acc-header { color: var(--primary); }
.acc-icon {
  font-size: 1.4rem; flex-shrink: 0; transition: transform 0.3s;
  color: var(--primary); font-weight: 400;
}
.accordion-item.active .acc-icon { transform: rotate(45deg); }
.acc-body {
  padding: 0 var(--space-4); max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.accordion-item.active .acc-body { max-height: 500px; padding: 0 var(--space-4) var(--space-3); }
.acc-body p { font-size: 0.93rem; color: var(--text-muted); line-height: 1.75; }

/* ─────────────────────────────────────────────── */
/*  GALLERY                                        */
/* ─────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2);
}
.gallery-item {
  border-radius: var(--radius-md); overflow: hidden;
  cursor: pointer; position: relative; aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--trans-slow);
}
.gallery-item::after {
  content: '🔍'; position: absolute; inset: 0;
  background: rgba(0,0,0,0); display: flex;
  align-items: center; justify-content: center;
  font-size: 2rem; opacity: 0;
  transition: var(--trans-normal);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover::after { background: rgba(0,0,0,0.30); opacity: 1; }

/* ─────────────────────────────────────────────── */
/*  PRICING TABLE                                  */
/* ─────────────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }
.pricing-card {
  background: white; border: 2px solid var(--border);
  border-radius: var(--radius-lg); padding: var(--space-4);
  display: flex; flex-direction: column; transition: var(--trans-fast);
  position: relative; overflow: hidden;
}
.pricing-card.featured {
  border-color: var(--primary); box-shadow: var(--shadow-glow);
}
.pricing-card.featured::before {
  content: 'NAJPOPULARNIJE';
  position: absolute; top: 16px; right: -20px;
  background: var(--accent); color: #1a1a1a;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em;
  padding: 4px 36px; transform: rotate(34deg);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-icon { font-size: 2.2rem; margin-bottom: 12px; }
.pricing-name { font-size: 1.15rem; font-family: var(--font-heading); font-weight: 700; color: var(--primary); }
.pricing-price {
  font-size: 2.2rem; font-family: var(--font-heading);
  font-weight: 700; color: var(--text-main);
  margin: var(--space-2) 0 4px;
}
.pricing-price sup { font-size: 1rem; vertical-align: super; }
.pricing-note { font-size: 0.8rem; color: var(--text-muted); margin-bottom: var(--space-3); }
.pricing-features { flex-grow: 1; }
.pricing-features li {
  padding: 8px 0; border-bottom: 1px solid var(--border);
  font-size: 0.88rem; display: flex; align-items: center; gap: 8px;
}
.pricing-features li::before { content: '✓'; color: var(--primary-light); font-weight: 700; flex-shrink: 0; }

/* ─────────────────────────────────────────────── */
/*  CONTACT PAGE                                   */
/* ─────────────────────────────────────────────── */
.contact-layout {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: var(--space-8); align-items: start;
}
.contact-info-cards { display: flex; flex-direction: column; gap: var(--space-3); }
.contact-info-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: var(--space-3);
  display: flex; gap: var(--space-2); align-items: flex-start;
  transition: var(--trans-fast);
}
.contact-info-card:hover { border-color: var(--primary-light); box-shadow: var(--shadow-sm); }
.contact-info-icon {
  font-size: 1.6rem; flex-shrink: 0;
  width: 48px; height: 48px;
  background: var(--primary-pale); border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
}
.contact-info-card h4 { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; margin-bottom: 4px; }
.contact-info-card p { font-weight: 700; font-size: 1rem; color: var(--primary); }
.premium-form {
  background: white; padding: var(--space-6);
  border-radius: var(--radius-xl); box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3); }
.form-group { margin-bottom: var(--space-3); }
.form-group label {
  display: block; margin-bottom: 6px;
  font-size: 0.88rem; font-weight: 600; color: var(--text-main);
}
.form-control {
  width: 100%; padding: 13px 16px;
  border-radius: var(--radius-md); border: 1.5px solid var(--border);
  background: var(--bg-soft); font-family: var(--font-body);
  font-size: 0.95rem; transition: var(--trans-fast); color: var(--text-main);
}
.form-control:focus {
  outline: none; border-color: var(--primary);
  background: white; box-shadow: 0 0 0 4px rgba(27,94,48,0.06);
}
textarea.form-control { resize: vertical; min-height: 120px; }

/* ─────────────────────────────────────────────── */
/*  FOOTER                                         */
/* ─────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-dark);
  background: linear-gradient(180deg, #0d1a0f 0%, #080f09 100%);
  color: white; padding: var(--space-12) 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.5fr;
  gap: var(--space-8); margin-bottom: var(--space-8);
}
.footer-tagline { opacity: 0.6; margin-top: var(--space-2); font-size: 0.9rem; line-height: 1.7; }
.footer-nav h4, .footer-contact h4 { color: white; margin-bottom: var(--space-3); font-size: 0.9rem; letter-spacing: 0.05em; text-transform: uppercase; }
.footer-nav ul li { margin-bottom: 10px; }
.footer-nav ul a { opacity: 0.65; font-size: 0.9rem; }
.footer-nav ul a:hover { opacity: 1; color: var(--accent); }
.footer-contact address p {
  display: flex; gap: 10px; margin-bottom: 10px;
  font-size: 0.88rem; opacity: 0.75; font-style: normal;
}
.footer-contact a { color: var(--accent); font-weight: 600; font-size: 1.05rem; }
.social-icons { display: flex; gap: 10px; margin-top: var(--space-3); }
.social-icons a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 700; opacity: 0.8;
  transition: var(--trans-fast);
}
.social-icons a:hover { background: var(--primary-light); opacity: 1; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: var(--space-4) 0; text-align: center;
  font-size: 0.82rem; opacity: 0.5;
}
.footer-bottom a { color: var(--accent); }

/* ─────────────────────────────────────────────── */
/*  FLOATING CTA BUTTON (Fixed - no white dot)     */
/* ─────────────────────────────────────────────── */
.floating-cta-btn {
  position: fixed; bottom: 24px; right: 24px;
  width: 62px; height: 62px;
  background: var(--primary);
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-hover) 100%);
  border-radius: 50%;
  display: none; /* shown via media query */
  align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(27,94,48,0.5), 0 0 0 0 rgba(27,94,48,0.4);
  z-index: 998;
  animation: btn-pulse 2.5s infinite;
  text-decoration: none;
}
.floating-cta-btn svg { display: block; flex-shrink: 0; }

/* Remove the old broken pulse-ring child element */
.pulse-ring { display: none !important; }

@keyframes btn-pulse {
  0%   { box-shadow: 0 4px 20px rgba(27,94,48,0.5), 0 0 0 0   rgba(27,94,48,0.4); }
  70%  { box-shadow: 0 4px 20px rgba(27,94,48,0.3), 0 0 0 18px rgba(27,94,48,0); }
  100% { box-shadow: 0 4px 20px rgba(27,94,48,0.5), 0 0 0 0   rgba(27,94,48,0); }
}

/* ─────────────────────────────────────────────── */
/*  LIGHTBOX                                       */
/* ─────────────────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0; background: rgba(5, 15, 7, 0.97);
  z-index: 2000; display: none; align-items: center;
  justify-content: center; padding: var(--space-4);
}
.lightbox.open { display: flex; }
.lightbox-content { position: relative; text-align: center; }
#lightbox-img {
  max-width: 92vw; max-height: 82vh;
  border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
}
.lightbox-close {
  position: fixed; top: 20px; right: 24px;
  background: rgba(255,255,255,0.1); border: none;
  color: white; font-size: 2rem; cursor: pointer;
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: var(--trans-fast);
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }
.lightbox-nav {
  position: fixed; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1); border: none;
  color: white; font-size: 2rem; cursor: pointer;
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
#lightbox-caption { color: rgba(255,255,255,0.7); margin-top: 12px; font-size: 0.9rem; }

/* ─────────────────────────────────────────────── */
/*  TOAST                                          */
/* ─────────────────────────────────────────────── */
.toast {
  position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: white;
  padding: 12px 28px; border-radius: var(--radius-full);
  font-size: 0.95rem; font-weight: 500;
  box-shadow: var(--shadow-lg); z-index: 3000;
  display: none; white-space: nowrap;
}

/* ─────────────────────────────────────────────── */
/*  PAGE TRANSITIONS                               */
/* ─────────────────────────────────────────────── */
.page-transition-wrapper { animation: pageIn 0.38s ease-out; }
@keyframes pageIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─────────────────────────────────────────────── */
/*  RESPONSIVE                                     */
/* ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-6); }
  .contact-layout { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-bar { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-img { max-height: 320px; }
  .service-features { grid-template-columns: 1fr 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; gap: var(--space-6); }
}

@media (max-width: 768px) {
  .floating-cta-btn { display: flex; }
  .trust-bar { grid-template-columns: 1fr 1fr; padding: var(--space-3); }
  .trust-item + .trust-item { border-left: none; }
  .trust-bar-wrap { margin-top: -32px; }
  .services-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.3rem; }
  .hero-badges { flex-direction: column; align-items: flex-start; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .metrics-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner { margin: 0; border-radius: var(--radius-lg); padding: var(--space-6) var(--space-3); }
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-4); }
  .service-features { grid-template-columns: 1fr; }
  .service-detail-grid { gap: var(--space-4); }
}

@media (max-width: 480px) {
  .trust-bar { grid-template-columns: 1fr; gap: var(--space-2); }
  .gallery-grid { grid-template-columns: 1fr; }
  .metrics-grid { grid-template-columns: 1fr 1fr; }
}

/* ─────────────────────────────────────────────── */
/*  DESIGN TOKENS (Postojeći)                      */
/* ─────────────────────────────────────────────── */
:root {
  --primary:       #1b5e30;
  --primary-light: #26883f;
  --primary-hover: #134421;
  --bg-white:      #ffffff;
  --bg-soft:       #f5f8f5;
  --border:        #dce8de;
  --text-main:     #182119;
  --radius-md:     16px;
  --trans-normal:  0.35s cubic-bezier(.4,0,.2,1);
}

/* Osnovni reset i podrazumevani stilovi */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; overflow-x: hidden; }

/* ─────────────────────────────────────────────── */
/*  HEADER & NAV                                   */
/* ─────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; width: 100%; height: 80px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(14px);
  z-index: 1000;
  display: flex; align-items: center;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.header-container {
  display: flex; justify-content: space-between; align-items: center; width: 100%;
}

/* Sakrivanje mobilnih elemenata na desktopu */
.menu-toggle, .mobile-menu { display: none; }

/* Desktop Navigacija */
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-link { font-weight: 500; text-decoration: none; color: var(--text-main); }

/* ─────────────────────────────────────────────── */
/*  MOBILE STYLES (Gde se dešava magija)           */
/* ─────────────────────────────────────────────── */
@media (max-width: 991px) {
  /* Skaliranje za desktop nav na manjim ekranima */
  .nav-links { gap: 16px; }
  .nav-link { font-size: 0.9rem; }
  .header-actions { gap: 8px; }
  .btn-sm { padding: 6px 12px; font-size: 0.8rem; }
}

/* Floating Button Z-Index popravka */
.floating-cta-btn { z-index: 900; }