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

:root {
  --navy:   #0E1B2E;
  --navy2:  #162438;
  --gold:   #B8924A;
  --gold2:  #D4A96A;
  --cream:  #F5F0E8;
  --white:  #FFFFFF;
  --gray:   #8A9BB0;
  --light:  #EEF2F7;
  --text:   #1A2B3C;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;

  --max-w: 1200px;
  --section-p: clamp(5rem, 10vw, 9rem);
}

html { scroll-behavior: smooth; }

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

/* ===== UTILITY ===== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 2.5rem;
  height: 1px;
  background: var(--gold);
}

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}
nav.scrolled {
  background: rgba(14, 27, 46, 0.97);
  padding: 0.85rem 0;
  box-shadow: 0 2px 40px rgba(0,0,0,0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.02em;
  line-height: 1;
}
.logo span { color: var(--gold); }
.logo-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold2); }

.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 0.6rem 1.5rem;
  border-radius: 2px;
  font-weight: 500 !important;
  letter-spacing: 0.08em !important;
  font-size: 0.8rem !important;
  text-transform: uppercase;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--gold2) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: 0.3s;
}

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(184,146,74,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(184,146,74,0.05) 0%, transparent 50%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 8rem 0 6rem;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-eyebrow::before {
  content: '';
  width: 2rem;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  color: var(--white);
  margin-bottom: 1.75rem;
  font-weight: 600;
}
.hero-title em {
  font-style: italic;
  color: var(--gold2);
}

.hero-text {
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 48ch;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  padding: 0.9rem 2.25rem;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.25s, transform 0.2s;
  border-radius: 2px;
}
.btn-primary:hover {
  background: var(--gold2);
  transform: translateY(-1px);
}

.btn-outline {
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.9rem 2.25rem;
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: border-color 0.2s, color 0.2s;
  border-radius: 2px;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold2);
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 3rem;
  border-radius: 4px;
  position: relative;
}
.hero-stats::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 600;
  color: var(--gold2);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--cream);
  padding: 1.75rem 0;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text);
  text-transform: uppercase;
}
.trust-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--gold);
}

/* ===== ABOUT ===== */
#o-nama {
  padding: var(--section-p) 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-wrap {
  background: var(--navy);
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/5;
  position: relative;
}

.about-img-fill {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #1a2f4e 0%, #0e1b2e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-icon-large {
  font-size: 8rem;
  opacity: 0.15;
  color: var(--gold);
  font-family: var(--font-display);
  font-style: italic;
}

.about-accent-box {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  background: var(--gold);
  color: var(--navy);
  padding: 2rem 2.5rem;
  border-radius: 4px;
  text-align: center;
}
.about-accent-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}
.about-accent-text {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.about-text h2 {
  font-size: clamp(2.2rem, 4vw, 3.25rem);
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.about-text p {
  color: #4A5D72;
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.feature-check {
  width: 1.25rem;
  height: 1.25rem;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.feature-check svg {
  width: 0.65rem;
  height: 0.65rem;
  stroke: var(--navy);
}
.about-feature span {
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 400;
}

/* ===== SERVICES ===== */
#usluge {
  padding: var(--section-p) 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

#usluge::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}

.services-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}
.services-header .section-label {
  justify-content: center;
}
.services-header .section-label::before { display: none; }
.services-header h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 1.25rem;
}
.services-header p {
  color: rgba(255,255,255,0.55);
  max-width: 55ch;
  margin: 0 auto;
  font-size: 1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  position: relative;
}

.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 2.75rem 2.25rem;
  transition: background 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.4s;
}
.service-card:hover::after { width: 100%; }
.service-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(184,146,74,0.3);
}

.service-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 600;
  color: rgba(184,146,74,0.12);
  line-height: 1;
  margin-bottom: 1.25rem;
  transition: color 0.3s;
}
.service-card:hover .service-num { color: rgba(184,146,74,0.25); }

.service-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(184,146,74,0.12);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background 0.3s;
}
.service-card:hover .service-icon { background: rgba(184,146,74,0.2); }
.service-icon svg {
  width: 1.4rem;
  height: 1.4rem;
  stroke: var(--gold2);
}

.service-card h3 {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.85rem;
  font-weight: 600;
}
.service-card p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ===== WHY US ===== */
#zasto-mi {
  padding: var(--section-p) 0;
  background: var(--cream);
}

.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.why-text h2 {
  font-size: clamp(2.2rem, 4vw, 3.25rem);
  color: var(--navy);
  margin-bottom: 1.25rem;
}
.why-text > p {
  color: #4A5D72;
  margin-bottom: 2.5rem;
}

.why-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.why-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.why-num {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--navy);
  color: var(--gold2);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 2px;
}
.why-item h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.why-item p {
  font-size: 0.88rem;
  color: #5A6D80;
  line-height: 1.65;
}

.why-visual {
  position: relative;
  padding: 3rem;
  background: var(--navy);
  border-radius: 4px;
}
.why-visual::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4rem; height: 4rem;
  border-top: 3px solid var(--gold);
  border-left: 3px solid var(--gold);
  border-radius: 2px 0 0 0;
}
.why-visual::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 4rem; height: 4rem;
  border-bottom: 3px solid var(--gold);
  border-right: 3px solid var(--gold);
  border-radius: 0 0 2px 0;
}

.cert-items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cert-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 2px;
}
.cert-item svg {
  width: 1.5rem;
  height: 1.5rem;
  stroke: var(--gold);
  flex-shrink: 0;
}
.cert-item span {
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  font-weight: 400;
}

/* ===== PROCESS ===== */
#proces {
  padding: var(--section-p) 0;
  background: var(--white);
}

.process-header {
  text-align: center;
  margin-bottom: 4rem;
}
.process-header h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--navy);
  margin-bottom: 1rem;
}
.process-header p {
  color: #5A6D80;
  max-width: 50ch;
  margin: 0 auto;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(184,146,74,0.2));
}

.process-step {
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
}

.step-circle {
  width: 5rem;
  height: 5rem;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.75rem;
  position: relative;
  z-index: 1;
  transition: background 0.3s;
}
.process-step:hover .step-circle { background: var(--gold); }
.step-circle svg {
  width: 1.5rem;
  height: 1.5rem;
  stroke: var(--gold);
  transition: stroke 0.3s;
}
.process-step:hover .step-circle svg { stroke: var(--navy); }

.process-step h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.6rem;
}
.process-step p {
  font-size: 0.85rem;
  color: #6A7D90;
  line-height: 1.65;
}

/* ===== TESTIMONIALS ===== */
#iskustva {
  padding: var(--section-p) 0;
  background: var(--navy);
  overflow: hidden;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
}
.testimonials-header h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--white);
  margin-bottom: 1rem;
}
.testimonials-header p {
  color: rgba(255,255,255,0.5);
  max-width: 50ch;
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 2.5rem;
  border-radius: 4px;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.15;
  position: absolute;
  top: 0.5rem; left: 1.5rem;
  line-height: 1;
}

.stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.25rem;
}
.stars svg {
  width: 1rem;
  height: 1rem;
  fill: var(--gold);
  stroke: none;
}

.testimonial-card blockquote {
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.75rem;
  position: relative;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.25rem;
}
.author-avatar {
  width: 2.75rem;
  height: 2.75rem;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--navy);
  font-weight: 700;
  flex-shrink: 0;
}
.author-name {
  font-weight: 500;
  color: var(--white);
  font-size: 0.9rem;
}
.author-role {
  color: rgba(255,255,255,0.4);
  font-size: 0.78rem;
}

/* ===== CTA ===== */
#kontakt-cta {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--gold);
  text-align: center;
  position: relative;
  overflow: hidden;
}
#kontakt-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 100% at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 80% at 80% 50%, rgba(0,0,0,0.1) 0%, transparent 50%);
}

.cta-content { position: relative; z-index: 1; }
.cta-content h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--navy);
  margin-bottom: 1rem;
}
.cta-content p {
  color: rgba(14,27,46,0.7);
  font-size: 1.05rem;
  max-width: 50ch;
  margin: 0 auto 2.5rem;
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
  padding: 1rem 2.5rem;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.25s;
  border-radius: 2px;
  margin: 0 0.5rem;
}
.btn-dark:hover { background: #1a2f4e; }

.btn-white-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  padding: 1rem 2.5rem;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.25s, color 0.25s;
  border-radius: 2px;
  margin: 0 0.5rem;
}
.btn-white-outline:hover {
  background: var(--navy);
  color: var(--white);
}

/* ===== CONTACT ===== */
#kontakt {
  padding: var(--section-p) 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--navy);
  margin-bottom: 1.25rem;
}
.contact-info > p {
  color: #5A6D80;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-detail-icon {
  width: 2.75rem;
  height: 2.75rem;
  background: var(--navy);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg {
  width: 1.1rem;
  height: 1.1rem;
  stroke: var(--gold2);
}
.contact-detail-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.25rem;
}
.contact-detail-value {
  color: var(--navy);
  font-weight: 500;
  font-size: 0.95rem;
}

.contact-form {
  background: var(--light);
  padding: 3rem;
  border-radius: 4px;
}
.contact-form h3 {
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.contact-form > p {
  color: #6A7D90;
  font-size: 0.88rem;
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.form-group label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5A6D80;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.85rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 5rem; }

.form-submit {
  width: 100%;
  background: var(--navy);
  color: var(--white);
  padding: 1rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.25s;
}
.form-submit:hover { background: var(--gold); color: var(--navy); }

/* ===== FOOTER ===== */
footer {
  background: #080F1A;
  padding: 4rem 0 0;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand .logo {
  font-size: 1.35rem;
  display: inline-block;
  margin-bottom: 1rem;
}
.footer-brand p {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 28ch;
  margin-bottom: 1.25rem;
}

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--gold2); }

/* Pravni podaci blok */
.footer-legal-block {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 1.75rem 0;
  margin-bottom: 0;
}
.footer-legal-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 3rem;
  align-items: flex-start;
}
.footer-legal-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.footer-legal-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}
.footer-legal-value {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  color: rgba(255,255,255,0.25);
  font-size: 0.75rem;
}
.footer-bottom a {
  color: rgba(255,255,255,0.25);
  text-decoration: none;
  font-size: 0.75rem;
  transition: color 0.2s;
}
.footer-bottom a:hover { color: var(--gold2); }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-content > * {
  animation: fadeUp 0.9s ease both;
}
.hero-content > *:nth-child(2) { animation-delay: 0.2s; }

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.25rem; }
  .hamburger { display: flex; z-index: 101; }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 7rem 0 5rem;
  }
  .hero-eyebrow { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-stats { grid-template-columns: 1fr 1fr; }

  .about-grid { grid-template-columns: 1fr; }
  .about-visual { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .footer-legal-inner { flex-direction: column; gap: 1rem; }
}
/* ===== LOKACIJA / MAPA ===== */
#lokacija {
  padding: var(--section-p) 0 0;
  background: var(--white);
}

.lokacija-header {
  text-align: center;
  margin-bottom: 3rem;
}
.lokacija-header h2 {
  font-size: clamp(2.2rem, 4vw, 3.25rem);
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.lokacija-header p {
  color: #5A6D80;
  max-width: 50ch;
  margin: 0 auto;
}

.map-wrapper {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: 4px 4px 0 0;
  overflow: hidden;
}

#map {
  width: 100%;
  height: 100%;
}

/* Override Leaflet defaults za dark feel */
.leaflet-container {
  background: var(--navy) !important;
  font-family: var(--font-body) !important;
}
.leaflet-control-attribution {
  background: rgba(255,255,255,0.85) !important;
  color: rgba(0,0,0,0.4) !important;
  font-size: 0.65rem !important;
}
.leaflet-control-attribution a { color: rgba(0,0,0,0.5) !important; }
.leaflet-control-zoom a {
  background: var(--navy) !important;
  color: var(--gold) !important;
  border-color: rgba(255,255,255,0.1) !important;
}
.leaflet-control-zoom a:hover {
  background: var(--navy2) !important;
  color: var(--gold2) !important;
}

/* Custom Popup */
.leaflet-popup-content-wrapper {
  background: var(--navy) !important;
  border: 1px solid rgba(184,146,74,0.3) !important;
  border-radius: 4px !important;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5) !important;
  padding: 0 !important;
}
.leaflet-popup-tip {
  background: var(--navy) !important;
}
.leaflet-popup-content {
  margin: 0 !important;
  width: 280px !important;
}

.popup-inner {
  padding: 1.5rem;
}
.popup-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.popup-tag {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.popup-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.popup-row {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.65);
}
.popup-row svg {
  width: 0.9rem;
  height: 0.9rem;
  stroke: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.popup-nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  background: var(--gold);
  color: var(--navy);
  padding: 0.7rem 1rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 0 0 3px 3px;
  transition: background 0.2s;
}
.popup-nav-btn:hover { background: var(--gold2); }
.popup-nav-btn svg {
  width: 0.9rem;
  height: 0.9rem;
  stroke: var(--navy);
}

/* Custom marker pin */
.custom-marker {
  position: relative;
  width: 36px;
  height: 36px;
}
.custom-marker-inner {
  width: 36px;
  height: 36px;
  background: var(--gold);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(184,146,74,0.6);
  border: 2px solid rgba(255,255,255,0.3);
}
.custom-marker-icon {
  transform: rotate(45deg);
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 700;
}

@media (max-width: 768px) {
  .map-wrapper { height: 400px; }
  .leaflet-popup-content { width: 240px !important; }
}
