/* ZLERON — zajednički stilovi (izvučeno iz onepage dizajna) */

/* ─── RESET & BASE ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --black:   #09090b;
  --dark:    #0f1013;
  --card:    #14161b;
  --card2:   #191c22;
  --border:  #22262f;
  --border2: #2a2f3a;
  --yellow:  #f5c518;
  --yellow2: #d4a900;
  --yellow3: #fff3b0;
  --white:   #f0ede6;
  --grey:    #7a7f8e;
  --light:   #c8c4bc;
  --red:     #e85d4a;
}
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}

/* GRAIN */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 9998; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
  opacity: 0.03;
}

/* ─── SCROLL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ─── LOGO ─── */
.zleron-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}
.zleron-logo__bolt {
  width: 36px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 10px #F5C30044);
  transition: filter 0.3s ease;
}
.zleron-logo:hover .zleron-logo__bolt {
  filter: drop-shadow(0 0 20px #F5C300aa);
}
.zleron-logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.zleron-logo__name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 5px;
  color: #FFFFFF;
  line-height: 0.92;
}
.zleron-logo__sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 5px;
  color: #F5C300;
  text-transform: uppercase;
  margin-top: 5px;
}
/* Footer logo — larger */
.footer-logo-wrap .zleron-logo__bolt { width: 44px; }
.footer-logo-wrap .zleron-logo__name { font-size: 42px; }
.footer-logo-wrap .zleron-logo__sub { font-size: 11px; letter-spacing: 6px; margin-top: 6px; }
/* Mobile logo — same as nav */
.mobile-logo-wrap .zleron-logo__bolt { width: 28px; }
.mobile-logo-wrap .zleron-logo__name { font-size: 26px; letter-spacing: 4px; }
.mobile-logo-wrap .zleron-logo__sub { font-size: 9px; letter-spacing: 4px; margin-top: 4px; }

/* ─── NAV ─── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 52px;
  background: rgba(9,9,11,0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px; letter-spacing: 4px;
  color: var(--white); text-decoration: none;
  display: flex; align-items: center; gap: 2px;
}
.nav-logo em { color: var(--yellow); font-style: normal; }
.nav-logo sup { font-size: 10px; color: var(--grey); letter-spacing: 2px; font-family: 'Barlow', sans-serif; margin-top: 6px; }

.nav-links {
  display: flex; align-items: center; gap: 8px; list-style: none;
}
.nav-links a {
  color: var(--grey); text-decoration: none;
  font-size: 12px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; padding: 8px 14px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--white); background: var(--card); }
.nav-links a.active { color: var(--yellow); }

.nav-cta {
  background: var(--yellow); color: var(--black);
  padding: 10px 24px; font-size: 11px;
  font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; text-decoration: none;
  transition: all 0.2s; border: 2px solid var(--yellow);
}
.nav-cta:hover { background: transparent; color: var(--yellow); }

/* Mobile nav toggle */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px;
}
.nav-toggle span {
  width: 24px; height: 2px; background: var(--white);
  transition: all 0.3s;
}
.nav-toggle span:last-child { width: 16px; background: var(--yellow); }

.mobile-menu {
  display: none; position: fixed;
  top: 68px; left: 0; right: 0; z-index: 999;
  background: var(--dark);
  border-bottom: 1px solid var(--border);
  padding: 24px 24px 32px;
  flex-direction: column; gap: 4px;
}
.mobile-menu a {
  color: var(--grey); text-decoration: none;
  font-size: 13px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  display: block; transition: color 0.2s;
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--yellow); }
.mobile-menu .mob-cta {
  background: var(--yellow); color: var(--black);
  text-align: center; margin-top: 16px; border: none;
  font-weight: 700;
}
.mobile-menu.open { display: flex; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 100px 52px 80px;
  position: relative; overflow: hidden;
}
.hero-grid-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    repeating-linear-gradient(90deg, var(--border) 0, var(--border) 1px, transparent 1px, transparent 80px),
    repeating-linear-gradient(0deg, var(--border) 0, var(--border) 1px, transparent 1px, transparent 80px);
  opacity: 0.35;
}
.hero-glow {
  position: absolute; top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(245,197,24,0.07) 0%, transparent 65%);
  z-index: 0;
}
/* Hero inline SVG pozadina */
.hero-bg-svg {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  opacity: 0.42;
}
.hero-bg-svg + .hero-grid-bg {
  /* Sakrij stari grid jer SVG već ima vlastiti */
  display: none;
}
.hero-line-h {
  position: absolute; left: 0; top: 72%;
  width: 50%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--yellow));
  z-index: 0;
}
.hero-content { position: relative; z-index: 1; max-width: 820px; }

.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--yellow);
  margin-bottom: 28px;
  animation: fadeInUp 0.8s ease both;
}
.hero-tag::before { content: ''; width: 28px; height: 2px; background: var(--yellow); }
.hero-tag-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--yellow); margin-left: auto;
  animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }

h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(70px, 10vw, 140px);
  line-height: 0.88; letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 32px;
  animation: fadeInUp 0.8s 0.1s ease both;
}
h1 em { color: var(--yellow); font-style: normal; }
h1 .outline {
  -webkit-text-stroke: 1px var(--border2);
  color: transparent;
}

.hero-desc {
  font-size: 18px; line-height: 1.75;
  color: var(--grey); max-width: 520px;
  margin-bottom: 48px; font-weight: 300;
  animation: fadeInUp 0.8s 0.2s ease both;
}

.hero-btns {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.3s ease both;
}
.btn-primary {
  background: var(--yellow); color: var(--black);
  padding: 17px 40px; font-size: 12px;
  font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; text-decoration: none;
  border: 2px solid var(--yellow);
  transition: all 0.25s; display: inline-block;
}
.btn-primary:hover {
  background: transparent; color: var(--yellow);
  transform: translateY(-2px);
}
.btn-ghost {
  border: 1px solid var(--border2); color: var(--light);
  padding: 17px 40px; font-size: 12px;
  font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; text-decoration: none;
  transition: all 0.25s; display: inline-block;
}
.btn-ghost:hover { border-color: var(--yellow); color: var(--yellow); }

.hero-stats {
  position: absolute; right: 52px; bottom: 80px; z-index: 1;
  display: flex; flex-direction: column; gap: 0;
  animation: fadeInUp 0.8s 0.4s ease both;
}
.hero-stat {
  padding: 20px 28px; border: 1px solid var(--border);
  border-bottom: none; background: rgba(15,16,19,0.8);
  backdrop-filter: blur(8px);
  text-align: right;
}
.hero-stat:last-child { border-bottom: 1px solid var(--border); }
.hero-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px; color: var(--yellow); line-height: 1;
}
.hero-stat-label {
  font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--grey);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── MARQUEE ─── */
.marquee-wrap {
  background: var(--yellow); overflow: hidden;
  padding: 14px 0; border-top: 2px solid var(--yellow2);
}
.marquee-track {
  display: flex; white-space: nowrap;
  animation: marquee 25s linear infinite;
}
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.marquee-item {
  display: inline-flex; align-items: center; gap: 16px;
  padding: 0 28px; font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--black);
}
.marquee-item .sep { width: 4px; height: 4px; background: rgba(0,0,0,0.3); border-radius: 50%; }

/* ─── SECTION BASE ─── */
section { padding: 100px 52px; }
.section-eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--yellow);
  margin-bottom: 18px;
}
.section-eyebrow::after { content:''; flex:1; height:1px; background:var(--border); }
h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.95; letter-spacing: 1px;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 16px; color: var(--grey); line-height: 1.7;
  font-weight: 300; max-width: 540px; margin-bottom: 60px;
}

/* ─── SERVICES ─── */
.services { background: var(--dark); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  margin-top: 60px;
}
.service-card {
  background: var(--card); padding: 48px 36px;
  border-top: 3px solid transparent;
  position: relative; overflow: hidden;
  transition: border-color 0.3s, background 0.3s;
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(245,197,24,0.04), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.service-card:hover { border-top-color: var(--yellow); background: var(--card2); }
.service-card:hover::before { opacity: 1; }

.service-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 80px; color: var(--border2);
  line-height: 1; margin-bottom: 16px;
  transition: color 0.3s;
}
.service-card:hover .service-num { color: rgba(245,197,24,0.15); }
.service-icon { font-size: 28px; margin-bottom: 16px; }
.service-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 20px;
}
.service-list { list-style: none; }
.service-list li {
  font-size: 14px; color: var(--grey); padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 12px;
  font-weight: 300; transition: color 0.2s;
}
.service-list li:last-child { border: none; }
.service-list li::before { content:'—'; color:var(--yellow); font-size:11px; flex-shrink:0; }
.service-card:hover .service-list li { color: var(--light); }

/* ─── ABOUT ─── */
.about-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-visual { position: relative; }
.about-img {
  background: var(--card);
  aspect-ratio: 4/3; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.about-img::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(245,197,24,0.05), transparent);
}
.about-img-placeholder {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px; color: var(--border2); letter-spacing: 4px;
  position: relative; z-index: 1;
}
.about-img-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.05) saturate(0.9);
}
.about-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--yellow); color: var(--black);
  padding: 20px 28px;
}
.about-badge-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px; line-height: 1;
}
.about-badge-label {
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase;
}

.about-content h2 { margin-bottom: 20px; }
.about-content p {
  font-size: 16px; color: var(--grey); line-height: 1.8;
  font-weight: 300; margin-bottom: 20px;
}
.about-values { display: flex; flex-direction: column; gap: 0; margin: 36px 0 40px; }
.value-row {
  display: flex; align-items: center; gap: 20px;
  padding: 16px 0; border-bottom: 1px solid var(--border);
}
.value-row:first-child { border-top: 1px solid var(--border); }
.value-icon {
  width: 40px; height: 40px; background: var(--card);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.value-title { font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.value-desc { font-size: 13px; color: var(--grey); font-weight: 300; }

/* ─── AREA ─── */
.area { background: var(--dark); }
.area-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.area-map {
  background: var(--card); border: 1px solid var(--border);
  aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.area-map-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 45% 40%, rgba(245,197,24,0.12) 0%, transparent 40%),
    repeating-linear-gradient(90deg, var(--border) 0, var(--border) 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(0deg, var(--border) 0, var(--border) 1px, transparent 1px, transparent 40px);
}
.area-pin {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.area-pin-dot {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 6px rgba(245,197,24,0.2), 0 0 0 12px rgba(245,197,24,0.1);
  animation: ping 2s infinite;
}
@keyframes ping { 0%,100%{box-shadow:0 0 0 6px rgba(245,197,24,0.2),0 0 0 12px rgba(245,197,24,0.1)} 50%{box-shadow:0 0 0 10px rgba(245,197,24,0.15),0 0 0 20px rgba(245,197,24,0.05)} }
.area-pin-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px; color: var(--yellow); letter-spacing: 2px;
}

.area-list { display: flex; flex-direction: column; gap: 0; }
.area-item {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 0; border-bottom: 1px solid var(--border);
}
.area-item:first-child { border-top: 1px solid var(--border); }
.area-bullet { width: 8px; height: 8px; background: var(--yellow); flex-shrink: 0; }
.area-name { font-size: 15px; font-weight: 500; }
.area-desc { font-size: 13px; color: var(--grey); font-weight: 300; margin-left: auto; }

/* ─── PROJECTS TEASER ─── */
.projects-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; margin-top: 60px;
}
.project-card {
  background: var(--card); position: relative;
  aspect-ratio: 4/3; overflow: hidden;
  display: flex; align-items: flex-end;
  cursor: pointer;
}
.project-img {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--border), var(--dark));
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.5s ease;
}
.project-card:hover .project-img { transform: scale(1.04); }
.project-ph {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px; color: var(--border2); letter-spacing: 4px;
}
.project-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.project-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(transparent 40%, rgba(9,9,11,0.95));
}
.project-info {
  position: relative; z-index: 2; padding: 24px;
  transform: translateY(8px); transition: transform 0.3s;
}
.project-card:hover .project-info { transform: translateY(0); }
.project-cat {
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--yellow); margin-bottom: 6px;
}
.project-name { font-size: 16px; font-weight: 600; }

/* ─── NEWS TEASER ─── */
.news { background: var(--dark); }
.news-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  margin-top: 60px;
}
.news-card {
  background: var(--card); padding: 36px 30px;
  border-top: 3px solid var(--border);
  transition: border-color 0.3s, background 0.3s;
  cursor: pointer; text-decoration: none; display: block; color: inherit;
}
.news-card:hover { border-top-color: var(--yellow); background: var(--card2); }
.news-date {
  font-size: 11px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--grey); margin-bottom: 16px;
}
.news-tag {
  display: inline-block; background: rgba(245,197,24,0.1);
  color: var(--yellow); border: 1px solid rgba(245,197,24,0.2);
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; padding: 4px 10px; margin-bottom: 16px;
}
.news-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px; font-weight: 700; line-height: 1.2;
  letter-spacing: 0.5px; margin-bottom: 14px;
  transition: color 0.2s;
}
.news-card:hover .news-title { color: var(--yellow); }
.news-excerpt { font-size: 14px; color: var(--grey); line-height: 1.65; font-weight: 300; }
.news-read {
  display: flex; align-items: center; gap: 8px; margin-top: 20px;
  font-size: 12px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--yellow); opacity: 0;
  transition: opacity 0.2s;
}
.news-card:hover .news-read { opacity: 1; }
.news-read::after { content: '→'; }

/* ─── CTA STRIP ─── */
.cta-strip {
  background: var(--yellow);
  padding: 80px 52px;
  display: flex; justify-content: space-between; align-items: center; gap: 40px;
}
.cta-strip h2 { color: var(--black); margin-bottom: 8px; }
.cta-strip p { color: rgba(0,0,0,0.6); font-size: 17px; font-weight: 300; max-width: 500px; }
.btn-dark {
  background: var(--black); color: var(--white);
  padding: 18px 44px; font-size: 12px;
  font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; text-decoration: none;
  border: 2px solid var(--black);
  transition: all 0.25s; white-space: nowrap;
}
.btn-dark:hover { background: transparent; color: var(--black); }

/* ─── CONTACT ─── */
.contact-wrap {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 80px; align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 0; }
.contact-item {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 24px 0; border-bottom: 1px solid var(--border);
}
.contact-item:first-child { border-top: 1px solid var(--border); }
.contact-icon-wrap {
  width: 48px; height: 48px; background: var(--card);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.contact-label {
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--yellow); margin-bottom: 4px;
}
.contact-val { font-size: 16px; color: var(--white); font-weight: 400; }
.contact-val a { color: var(--white); text-decoration: none; transition: color 0.2s; }
.contact-val a:hover { color: var(--yellow); }

.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field {
  background: var(--card); border: 1px solid var(--border);
  color: var(--white); font-family: 'Barlow', sans-serif;
  font-size: 15px; padding: 16px 20px; width: 100%;
  outline: none; transition: border-color 0.2s;
  -webkit-appearance: none;
}
.field:focus { border-color: var(--yellow); }
.field::placeholder { color: var(--grey); }
textarea.field { height: 130px; resize: vertical; }
.btn-submit {
  background: var(--yellow); color: var(--black);
  border: 2px solid var(--yellow); padding: 18px 44px;
  font-family: 'Barlow', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; transition: all 0.25s; align-self: flex-start;
}
.btn-submit:hover { background: transparent; color: var(--yellow); }

/* ─── FOOTER ─── */
footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
}
.footer-top {
  padding: 60px 52px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
}
.footer-brand {}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px; letter-spacing: 4px;
  color: var(--white); margin-bottom: 16px; display: block;
  text-decoration: none;
}
.footer-logo em { color: var(--yellow); font-style: normal; }
.footer-desc { font-size: 14px; color: var(--grey); line-height: 1.7; font-weight: 300; max-width: 280px; }
.footer-col-title {
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--white); margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px; color: var(--grey); text-decoration: none;
  font-weight: 300; transition: color 0.2s;
}
.footer-links a:hover { color: var(--yellow); }
.footer-bottom {
  padding: 20px 52px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--grey);
}
.footer-bottom a { color: var(--grey); text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--yellow); }

/* ─── CHATBOT ─── */
.chat-toggle {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 60px; height: 60px; background: var(--yellow);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  box-shadow: 0 8px 32px rgba(245,197,24,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}
.chat-toggle:hover { transform: scale(1.08); box-shadow: 0 12px 40px rgba(245,197,24,0.4); }
.chat-bubble {
  position: absolute; bottom: 8px; right: 8px;
  width: 14px; height: 14px; background: var(--red); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 8px; font-weight: 700; color: white;
}

.chatbot-window {
  position: fixed; bottom: 100px; right: 28px; z-index: 901;
  width: 360px; background: var(--dark);
  border: 1px solid var(--border);
  display: none; flex-direction: column;
  max-height: 520px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}
.chatbot-window.open { display: flex; }
.chat-header {
  background: var(--card); padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 12px;
}
.chat-avatar {
  width: 36px; height: 36px; background: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.chat-name { font-size: 14px; font-weight: 600; }
.chat-status { font-size: 12px; color: #4caf50; display: flex; align-items: center; gap: 6px; }
.chat-status::before { content:''; width:6px; height:6px; border-radius:50%; background:#4caf50; }
.chat-close {
  margin-left: auto; background: none; border: none; cursor: pointer;
  color: var(--grey); font-size: 18px; transition: color 0.2s;
}
.chat-close:hover { color: var(--white); }

.chat-messages {
  flex: 1; overflow-y: auto; padding: 20px 16px;
  display: flex; flex-direction: column; gap: 12px;
  scroll-behavior: smooth;
}
.chat-messages::-webkit-scrollbar { width: 4px; }
.chat-messages::-webkit-scrollbar-track { background: var(--card); }
.chat-messages::-webkit-scrollbar-thumb { background: var(--border2); }

.msg { max-width: 85%; display: flex; flex-direction: column; gap: 4px; }
.msg.bot { align-self: flex-start; }
.msg.user { align-self: flex-end; }
.msg-bubble {
  padding: 12px 16px; font-size: 14px; line-height: 1.5;
  border-radius: 2px;
}
.msg.bot .msg-bubble { background: var(--card); color: var(--light); border-left: 2px solid var(--yellow); }
.msg.user .msg-bubble { background: var(--yellow); color: var(--black); font-weight: 500; }
.msg-time { font-size: 10px; color: var(--grey); }

.chat-typing { display: flex; gap: 4px; align-items: center; padding: 8px 16px; }
.chat-typing span {
  width: 7px; height: 7px; background: var(--grey);
  border-radius: 50%; animation: typing 1.2s infinite;
}
.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing { 0%,60%,100%{transform:translateY(0)} 30%{transform:translateY(-6px)} }

.chat-quick { padding: 0 16px 12px; display: flex; gap: 8px; flex-wrap: wrap; }
.quick-btn {
  background: var(--card); border: 1px solid var(--border);
  color: var(--light); font-size: 12px; padding: 7px 12px;
  cursor: pointer; transition: all 0.2s; font-family: 'Barlow', sans-serif;
}
.quick-btn:hover { border-color: var(--yellow); color: var(--yellow); }

.chat-input-wrap {
  padding: 14px 16px; border-top: 1px solid var(--border);
  display: flex; gap: 10px;
}
.chat-input {
  flex: 1; background: var(--card); border: 1px solid var(--border);
  color: var(--white); font-family: 'Barlow', sans-serif;
  font-size: 14px; padding: 12px 16px; outline: none;
  transition: border-color 0.2s;
}
.chat-input:focus { border-color: var(--yellow); }
.chat-input::placeholder { color: var(--grey); }
.chat-send {
  background: var(--yellow); color: var(--black); border: none;
  width: 44px; height: 44px; cursor: pointer;
  font-size: 18px; transition: background 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.chat-send:hover { background: var(--yellow2); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  #nav { padding: 0 28px; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  section { padding: 72px 28px; }
  .hero { padding: 100px 28px 72px; }
  .hero-stats { display: none; }
  h1 { font-size: clamp(60px, 12vw, 100px); }
  .services-grid, .projects-grid, .news-grid { grid-template-columns: 1fr; gap: 2px; }
  .about-wrap, .area-wrap, .contact-wrap { grid-template-columns: 1fr; gap: 48px; }
  .about-badge { right: 0; bottom: -16px; }
  .cta-strip { flex-direction: column; text-align: center; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .chatbot-window { width: calc(100vw - 32px); right: 16px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-ghost { text-align: center; }
  .footer-top { grid-template-columns: 1fr; }
  .marquee-wrap { display: none; }
}


.area-visual {
  display: flex; flex-direction: column; gap: 3px;
}
.cov-card {
  background: var(--card); border: 1px solid var(--border);
  padding: 24px 28px;
  display: flex; align-items: center; gap: 18px;
  position: relative; overflow: hidden;
  transition: border-color 0.3s;
}
.cov-card:hover { border-color: var(--border2); }
.cov-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px;
}
.cov-main::before { background: var(--yellow); }
.cov-secondary::before { background: var(--border2); }
.cov-main { background: var(--card2); }
.cov-icon { font-size: 22px; flex-shrink: 0; }
.cov-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px; font-weight: 700; letter-spacing: 0.5px;
  color: var(--white); margin-bottom: 2px;
}
.cov-sub { font-size: 13px; color: var(--grey); font-weight: 300; }
.cov-tag {
  margin-left: auto; background: rgba(245,197,24,0.1);
  border: 1px solid rgba(245,197,24,0.25);
  color: var(--yellow); font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 4px 10px; flex-shrink: 0;
}
.cov-stats {
  display: flex; background: var(--yellow); margin-top: 3px;
}
.cov-stat {
  flex: 1; padding: 20px 16px; text-align: center;
  display: flex; flex-direction: column; gap: 4px;
}
.cov-stat + .cov-stat { border-left: 1px solid rgba(0,0,0,0.12); }
.cov-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 38px; color: var(--black); line-height: 1;
}
.cov-stat-num span { font-size: 28px; }
.cov-stat-label {
  font-size: 10px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: rgba(0,0,0,0.55);
}
@media (max-width: 1024px) {
  .cov-tag { display: none; }
}


/* Form status poruke */
.form-status {
  display: none;
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 500;
  margin-top: 4px;
  border-left: 3px solid;
}
.form-status.success {
  display: block;
  background: rgba(72, 187, 120, 0.08);
  border-color: #48bb78;
  color: #9ae6b4;
}
.form-status.error {
  display: block;
  background: rgba(232, 93, 74, 0.08);
  border-color: var(--red);
  color: #fca397;
}
/* Loading state */
.btn-submit.loading {
  pointer-events: none;
  opacity: 0.7;
  position: relative;
}
.btn-submit.loading::after {
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  width: 14px;
  height: 14px;
  margin-top: -7px;
  border: 2px solid var(--black);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}


.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.85); backdrop-filter: blur(6px);
  align-items: center; justify-content: center; padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--dark); border: 1px solid var(--border);
  max-width: 700px; width: 100%; max-height: 85vh;
  display: flex; flex-direction: column;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
}
.modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 32px; border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.modal-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px; letter-spacing: 2px; color: var(--white);
}
.modal-title em { color: var(--yellow); font-style: normal; }
.modal-close {
  background: none; border: 1px solid var(--border); cursor: pointer;
  color: var(--grey); font-size: 18px; width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.modal-close:hover { border-color: var(--yellow); color: var(--yellow); }
.modal-body {
  overflow-y: auto; padding: 32px;
  font-size: 15px; color: var(--grey); line-height: 1.85;
  font-weight: 300;
}
.modal-body::-webkit-scrollbar { width: 4px; }
.modal-body::-webkit-scrollbar-track { background: var(--card); }
.modal-body::-webkit-scrollbar-thumb { background: var(--border2); }
.modal-body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--white);
  margin: 28px 0 10px; padding-top: 20px;
  border-top: 1px solid var(--border);
}
.modal-body h3:first-child { margin-top: 0; border-top: none; padding-top: 0; }
.modal-body p { margin-bottom: 14px; }
.modal-body strong { color: var(--light); font-weight: 600; }
.modal-body a { color: var(--yellow); text-decoration: none; }
.modal-body a:hover { text-decoration: underline; }
.modal-body .legal-row {
  display: flex; gap: 16px; padding: 14px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.modal-body .legal-label {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--yellow);
  min-width: 140px; flex-shrink: 0; padding-top: 2px;
}
.modal-body .legal-val { color: var(--light); font-weight: 400; }

/* Blog article layout */
.article-wrap { max-width: 780px; margin: 0 auto; }
.article-body { color: var(--light); font-weight: 300; font-size: 17px; line-height: 1.75; }
.article-body p { margin-bottom: 20px; }
.article-body strong { color: var(--white); font-weight: 600; }
.article-body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px; font-weight: 700; letter-spacing: 0.5px;
  color: var(--white); margin: 40px 0 14px;
  padding-left: 16px; border-left: 3px solid var(--yellow);
}
.article-body p a, .article-body li a, .article-body h3 a { color: var(--yellow); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.article-body p a:hover, .article-body li a:hover { color: var(--yellow2); }
.article-cta {
  margin-top: 56px; padding: 36px 40px;
  background: var(--card); border: 1px solid var(--border); border-left: 3px solid var(--yellow);
  display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center;
}
.article-cta-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--yellow); margin-bottom: 8px;
}
.article-cta h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px; font-weight: 700; color: var(--white);
  letter-spacing: 0.5px; margin-bottom: 6px;
}
.article-cta p { color: var(--grey); font-size: 14px; margin: 0; }
@media (max-width: 768px) {
  .article-cta { grid-template-columns: 1fr; padding: 28px; }
  .article-body { font-size: 16px; }
  .article-body h3 { font-size: 22px; margin-top: 32px; }
}

/* ===== MULTIPAGE ADDITIONS ===== */
.page-hero {
  position: relative; padding: 180px 52px 80px;
  background: var(--dark); border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 0%, rgba(245,197,24,0.10), transparent 60%),
    repeating-linear-gradient(0deg, transparent, transparent 79px, #191d25 80px),
    repeating-linear-gradient(90deg, transparent, transparent 79px, #191d25 80px);
  pointer-events: none;
}
.page-hero > * { position: relative; }
.breadcrumb {
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
  font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--grey); margin-bottom: 28px; font-weight: 600;
}
.breadcrumb a { color: var(--grey); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb .sep { color: var(--border2); }
.breadcrumb .current { color: var(--yellow); }
.page-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 7vw, 92px); line-height: 0.95;
  letter-spacing: 2px; color: var(--white); margin-bottom: 24px;
}
.page-hero h1 em { font-style: normal; color: var(--yellow); }
.page-lead { max-width: 640px; font-size: 17px; font-weight: 300; color: var(--light); line-height: 1.7; }

/* Service detail layout */
.svc-wrap { display: grid; grid-template-columns: 1fr 340px; gap: 60px; align-items: start; }
.svc-main h2 {
  font-family: 'Barlow Condensed', sans-serif; font-size: 28px; font-weight: 700;
  letter-spacing: 0.5px; color: var(--white); margin: 44px 0 16px;
}
.svc-main h2:first-child { margin-top: 0; }
.svc-main p { color: var(--light); font-weight: 300; margin-bottom: 16px; max-width: 68ch; }
.svc-main strong { color: var(--white); font-weight: 600; }
.svc-check { list-style: none; margin: 20px 0 8px; display: grid; gap: 10px; }
.svc-check li {
  position: relative; padding: 14px 18px 14px 46px;
  background: var(--card); border: 1px solid var(--border);
  color: var(--light); font-size: 15px; transition: border-color 0.25s;
}
.svc-check li:hover { border-color: var(--border2); }
.svc-check li::before {
  content: '⚡'; position: absolute; left: 16px; top: 13px; color: var(--yellow); font-size: 14px;
}
.svc-side { position: sticky; top: 110px; display: grid; gap: 3px; }
.side-card { background: var(--card); border: 1px solid var(--border); padding: 28px; }
.side-card.accent { background: var(--yellow); border-color: var(--yellow); }
.side-title {
  font-family: 'Barlow Condensed', sans-serif; font-size: 19px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; color: var(--white);
}
.side-card.accent .side-title { color: var(--black); }
.side-card.accent p { color: rgba(0,0,0,0.7); font-size: 14px; margin-bottom: 18px; }
.side-links { list-style: none; display: grid; gap: 2px; }
.side-links a {
  display: block; padding: 10px 12px; color: var(--light); text-decoration: none;
  font-size: 14px; border-left: 2px solid var(--border); transition: all 0.2s;
}
.side-links a:hover { color: var(--yellow); border-color: var(--yellow); background: rgba(245,197,24,0.04); }
.side-links a.here { color: var(--yellow); border-color: var(--yellow); }
.btn-dark-sm {
  display: inline-block; background: var(--black); color: var(--yellow);
  padding: 14px 26px; font-size: 12px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; text-decoration: none; transition: transform 0.2s;
}
.btn-dark-sm:hover { transform: translateY(-2px); }
.side-contact-row { display: flex; gap: 12px; align-items: center; margin-bottom: 14px; }
.side-contact-row:last-child { margin-bottom: 0; }
.side-contact-row .ic { font-size: 18px; }
.side-contact-row a, .side-contact-row span { color: var(--light); font-size: 14px; text-decoration: none; }
.side-contact-row a:hover { color: var(--yellow); }

/* FAQ */
.faq-list { display: grid; gap: 3px; margin-top: 20px; }
.faq-item { background: var(--card); border: 1px solid var(--border); }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 20px 24px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 19px; font-weight: 600;
  letter-spacing: 0.3px; color: var(--white); transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--yellow); font-size: 22px; flex-shrink: 0; transition: transform 0.25s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--yellow); }
.faq-item .faq-a { padding: 0 24px 22px; color: var(--light); font-weight: 300; font-size: 15px; line-height: 1.7; }
.faq-item .faq-a p { margin-bottom: 10px; }

/* Usluge hub — zigzag rows */
.svc-list { display: flex; flex-direction: column; gap: 40px; margin-top: 56px; max-width: 1200px; margin-left: auto; margin-right: auto; }
.svc-row {
  display: grid; grid-template-columns: 340px 1fr;
  position: relative; align-items: stretch;
}
.svc-row.reverse { grid-template-columns: 1fr 340px; }

.svc-label {
  background: var(--card2); border: 1px solid var(--border);
  padding: 34px 30px 28px; text-decoration: none;
  display: flex; flex-direction: column; gap: 14px;
  position: relative; z-index: 2;
  transform: translateY(-18px); margin-right: -28px;
  transition: border-color .3s, transform .3s, background .3s;
}
.svc-label::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--yellow);
}
.svc-label:hover {
  border-color: var(--yellow); background: var(--card);
  transform: translateY(-22px);
}
.svc-row.reverse .svc-label {
  order: 2; transform: translateY(18px);
  margin-right: 0; margin-left: -28px;
}
.svc-row.reverse .svc-label:hover { transform: translateY(14px); }
.svc-row.reverse .svc-desc { order: 1; }

.svc-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 13px;
  letter-spacing: 4px; color: var(--yellow);
}
.svc-ic { font-size: 34px; line-height: 1; }
.svc-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px; line-height: 0.95; letter-spacing: 2px;
  color: var(--white); margin-top: auto; padding-top: 12px;
}
.svc-more-arrow {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--yellow);
  padding-top: 14px; border-top: 1px solid var(--border);
  display: flex; align-items: center; gap: 8px;
  transition: gap .25s;
}
.svc-label:hover .svc-more-arrow { gap: 14px; }

.svc-desc {
  background: var(--card); border: 1px solid var(--border);
  padding: 40px 44px; z-index: 1;
}
.svc-desc p {
  color: var(--light); font-weight: 300; font-size: 16px;
  line-height: 1.7; margin-bottom: 20px;
}
.svc-desc ul {
  list-style: none; display: grid; gap: 10px;
  padding-top: 22px; border-top: 1px solid var(--border);
}
.svc-desc li {
  color: var(--light); font-size: 14.5px; padding-left: 24px; position: relative;
}
.svc-desc li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 12px; height: 1px; background: var(--yellow);
}
.svc-more {
  display: inline-block; margin-top: 18px; color: var(--yellow); text-decoration: none;
  font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  transition: transform 0.2s;
}
.svc-more:hover { transform: translateX(4px); }
.center-cta { text-align: center; margin-top: 48px; }

@media (max-width: 1024px) {
  .svc-wrap { grid-template-columns: 1fr; }
  .svc-side { position: static; }
  .svc-row, .svc-row.reverse { grid-template-columns: 280px 1fr; }
  .svc-desc { padding: 32px 32px; }
}
@media (max-width: 768px) {
  .page-hero { padding: 140px 28px 60px; }
  .svc-list { gap: 24px; }
  .svc-row, .svc-row.reverse { grid-template-columns: 1fr; }
  .svc-row.reverse .svc-label { order: initial; margin-left: 0; }
  .svc-row.reverse .svc-desc { order: initial; }
  .svc-label, .svc-row.reverse .svc-label {
    margin: 0; transform: none; padding: 26px 24px 22px;
    flex-direction: row; align-items: center; gap: 18px; flex-wrap: wrap;
  }
  .svc-label:hover, .svc-row.reverse .svc-label:hover { transform: none; }
  .svc-ic { font-size: 28px; }
  .svc-name { font-size: 22px; margin-top: 0; padding-top: 0; flex: 1; min-width: 0; }
  .svc-num { position: absolute; top: 12px; right: 16px; font-size: 11px; letter-spacing: 3px; }
  .svc-more-arrow { width: 100%; padding-top: 12px; margin-top: 4px; }
  .svc-desc { padding: 26px 24px; }
  .svc-desc p { font-size: 15px; }
}
