/* ════════════════════════════════════════════
   DPK Šumadija – Main Stylesheet v1.0
   Breakpoints:
     Desktop  : min-width 1681px
     Laptop   : max-width 1680px
     Tablet   : max-width 1024px
     Mobile   : max-width 768px
════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}
body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1A1A1A;
  background: #fff;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border-width: 0;
}

:root {
  --gold-gradient: linear-gradient(180deg, #CCB066 0%, #A98D48 100%);
  --pad-x: 4rem;
  --transition: 250ms cubic-bezier(0.16, 1, 0.3, 1);
}

.dpks-section { width: 100%; }
.dpks-container { max-width: 1240px; margin: 0 auto; padding: 0; }

/* ── HERO ───────────────────────────────── */
.section-hero {
  background-image: url('/wp-content/uploads/2026/07/dpk_bg_newest-scaled.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 52rem;
  padding: 48px var(--pad-x) 160px;
	padding-top: calc(24px + 56px + 48px); /
  display: flex;
  flex-direction: column;
  gap: 0;
}

.dpks-navbar {
  position: fixed;
  top: 38px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - var(--pad-x) * 2);
  width: 100%;
  max-width: 1240px;
  height: 56px;
  margin: 0 auto;
  border-radius: 40px;
  border: 1px solid #CCB066;
  background-color: #F1F2EA;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px 0 40px;
  z-index: 100;
}

.navbar-left, .navbar-right {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.navbar-left { gap: 32px; }
.navbar-right { gap: 32px; }

.nav-link {
  color: #C4AA62;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.3s ease;
}
.nav-link:hover { color: #9C7F3C; }

.navbar-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.navbar-logo a { display: flex; align-items: center; }
.navbar-logo svg {
  width: 120px;
  height: auto;
  margin-top: -30px;
  margin-bottom: -56px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.35));
}

.btn-member-nav {
  height: 40px;
  padding: 0 24px;
  border-radius: 40px;
  background: var(--gold-gradient);
  color: #132D07;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  transition: opacity var(--transition), transform var(--transition);
}
.btn-member-nav:hover { opacity: 0.85; transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 200;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #C4AA62;
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav-drawer {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  background: #132D07;
  border-bottom: 1px solid #CCB066;
  padding: 80px 2rem 2rem;
  flex-direction: column;
  gap: 8px;
  z-index: 150;
  transform: translateY(-100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-nav-drawer.is-open { transform: translateY(0); }
.mobile-nav-drawer .nav-link {
  font-size: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(196,170,98,0.15);
}
.mobile-nav-drawer .btn-member-nav {
  margin-top: 12px;
  align-self: flex-start;
  height: 44px;
  padding: 0 28px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 120px;
}
.hero-title {
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 60px;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 24px;
}
.hero-title .gold-italic { color: #C4AA62; font-style: italic; }
.hero-subtitle {
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-size: 22px;
  font-weight: 500;
  max-width: 796px;
  text-align: center;
  margin-bottom: 32px;
}
.hero-desc {
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  max-width: 660px;
  text-align: center;
  margin-bottom: 32px;
}
.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.btn-primary-hero {
  height: 48px; padding: 0 32px; border-radius: 24px;
  background: var(--gold-gradient); color: #132D07;
  font-family: 'Open Sans', sans-serif; font-size: 16px; font-weight: 700;
  display: inline-flex; align-items: center;
  transition: opacity var(--transition), transform var(--transition);
}
.btn-primary-hero:hover { opacity: 0.85; transform: translateY(-2px); }
.btn-outline-hero {
  height: 48px; padding: 0 32px; border-radius: 24px;
  border: 1px solid #CCB066; background: transparent; color: #C4AA62;
  font-family: 'Open Sans', sans-serif; font-size: 16px; font-weight: 700;
  display: inline-flex; align-items: center;
  transition: background var(--transition), transform var(--transition);
}
.btn-outline-hero:hover { background: rgba(204,176,102,0.12); transform: translateY(-2px); }

.animate-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.animate-up.is-visible { opacity: 1; transform: translateY(0); }

/* ── PILLARS ────────────────────────────── */
.section-pillars { background: #F1F2EA; padding: 80px var(--pad-x) 120px; border-radius: 0 0 75px 75px; }
.pillars-heading {
  color: #1A3A0A;
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px; font-weight: 500;
  text-align: center; margin-bottom: 48px;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pillar-card {
    border-radius: 12px;
    border: 1px solid #CCB066;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%);
    box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    transition: box-shadow var(--transition), transform var(--transition), background var(--transition);
}
.pillar-card:hover {
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.50) 0%, rgba(255, 255, 255, 0.00) 100%);
    box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}
.pillar-card-header { display: flex; align-items: center; justify-content: space-between; }
.pillar-number {
  color: #C4AA62; font-family: 'Cormorant Infant', serif;
  font-size: 96px; font-weight: 500; line-height: 1; opacity: 0.2;
}
.pillar-card-body { display: flex; flex-direction: column; }
.pillar-title {
  color: #1A3A0A; font-family: 'Cormorant Garamond', serif;
  font-size: 32px; font-weight: 600; line-height: 1.3; margin-bottom: 16px; max-width: 306px;
}
.pillar-divider { width: 40px; height: 1px; background: var(--gold-gradient); margin-bottom: 28px; margin-top: 12px; }
.pillar-desc { color: #3A3A3A; font-family: 'Open Sans', sans-serif; font-size: 14px; font-weight: 400; line-height: 1.75; }

/* ── RESPONSIVE ─────────────────────────── */
@media (max-width: 1680px) {
  :root { --pad-x: 3rem; }
  .hero-title { font-size: 52px; }
  .pillars-heading { font-size: 42px; }
}
@media (max-width: 1024px) {
  :root { --pad-x: 2rem; }
  .section-hero { padding-bottom: 100px; }
  .navbar-left { display: none; }
  .navbar-right .nav-link, .navbar-right .btn-member-nav { display: none; }
  .hamburger { display: flex; }
  .mobile-nav-drawer { display: flex; }
  .navbar-logo { position: static; transform: none; margin: 0; }
  .dpks-navbar { padding: 0 24px; top: 32px; }
  .hero-title { font-size: 44px; }
  .hero-subtitle { font-size: 32px; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .pillar-card:nth-child(3) { grid-column: 1 / -1; }
  .pillars-heading { font-size: 36px; }
}
@media (max-width: 768px) {
  :root { --pad-x: 1.5rem; }
  .section-hero { padding-bottom: 80px; gap: 80px; }
  .hero-title { font-size: 32px; }
  .hero-subtitle { font-size: 16px; }
  .hero-desc { font-size: 13px; }
  .btn-primary-hero, .btn-outline-hero { height: 44px; padding: 0 24px; font-size: 14px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .pillar-card:nth-child(3) { grid-column: auto; }
  .pillars-heading { font-size: 28px; }
  .section-pillars { padding: 60px var(--pad-x) 80px; }
  .navbar-logo svg { margin-top: -32px; margin-bottom: -32px; width: auto; height: 100px; }
}
@media (max-width: 480px) {
  :root { --pad-x: 1.25rem; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .btn-primary-hero, .btn-outline-hero { justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  .animate-up { transition: none; opacity: 1; transform: none; }
  * { transition-duration: 0.01ms !important; }
}

/* ════════════════════════════════════════════
   SEKCIJA — O KLUBU
════════════════════════════════════════════ */
.section-about {
  width: 100%;
  background: #fff;
  padding: 120px var(--pad-x);
}

.about-container {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 96px;
}

/* ─ Leva kolona ─────────────────────────── */
.about-left {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.about-label {
  color: #C4AA62;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}

.about-heading {
  max-width: 526px;
  color: #1A3A0A;
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 55px;
  margin-bottom: 24px;
}

.about-body {
  max-width: 526px;
  color: #1A3A0A;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 32px;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  height: 48px;
  padding: 0 28px;
  border-radius: 26.5px;
  border: 1px solid #CCB066;
  background: transparent;
  color: #C4AA62;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.about-btn:hover {
  background: rgba(196, 170, 98, 0.1);
  transform: translateY(-2px);
}
.about-btn:active {
  transform: translateY(0);
}

/* ─ Desna kolona ─────────────────────────── */
.about-right {
  flex-shrink: 0;
  width: 560px;
}

.about-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.about-img:hover {
  transform: scale(1.015);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

/* ── RESPONSIVE ─────────────────────────── */

/* Laptop <= 1680px */
@media (max-width: 1680px) {
  .about-heading { font-size: 42px; line-height: 50px; }
  .about-right { width: 480px; }
  .about-container { gap: 72px; }
}

/* Tablet <= 1024px */
@media (max-width: 1024px) {
  .section-about { padding: 80px var(--pad-x); }
  .about-container {
    flex-direction: column;
    gap: 48px;
    align-items: flex-start;
  }
  .about-right {
    width: 100%;
  }
  .about-heading {
    font-size: 38px;
    line-height: 46px;
    max-width: 100%;
  }
  .about-body { max-width: 100%; }
}

/* Mobile <= 768px */
@media (max-width: 768px) {
  .section-about { padding: 60px var(--pad-x); }
  .about-container { gap: 36px; }
  .about-heading { font-size: 30px; line-height: 38px; }
  .about-btn { width: 100%; align-self: stretch; }
}

/* ════════════════════════════════════════════
   SEKCIJA — LOGO MARQUEE
════════════════════════════════════════════ */
.section-logos {
  position: relative;
  width: 100%;
  height: 200px;
  background: #F1F2EA;
  border-radius: 75px 75px 0 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.logos-fade {
  position: absolute;
  top: 0; bottom: 0;
  width: 200px;
  z-index: 2;
  pointer-events: none;
}
.logos-fade--left  { left: 0;  background: linear-gradient(to right, #F7F2EC 0%, rgba(247,242,236,0) 100%); }
.logos-fade--right { right: 0; background: linear-gradient(to left,  #F7F2EC 0%, rgba(247,242,236,0) 100%); }

.logos-swiper { width: 100%; overflow: hidden; }

.logo-slide {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: auto !important;
}

.logo-slide a {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─ Bazni stil svih logoa ─────────────────── */
.logo-slide img {
  display: block;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: filter 0.2s ease, opacity 0.2s ease;
}
.logo-slide a:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* ─ Individualne dimenzije (desktop) ──────── */
.logo--agromarket  { width: 162px; height: 67px; }
.logo--mindpark    { width: 152px; height: 41px; }
.logo--formaideale { width: 148px; height: 31px; }
.logo--nikom       { width: 121px; height: 41px; }
.logo--trnava      { width: 176px; height: 39px; }
.logo--sanel       { width: 110px; height: 37px; }
.logo--dtl         { width: 168px; height: 60px; }
.logo--pzp		   { width: 79px; height: 102px; }
.logo--sena        { width: 120px; height: 34px; }
.logo--cortech     { width: 207px; height: 42px; }
.logo--mitelmant   { width: 127px; height: 72px; }
.logo--rollingco   { width: 184px; height: 73px; }

.logos-swiper .swiper-wrapper {
  align-items: center;
}

/* ── Tablet <= 1024px ───────────────────── */
@media (max-width: 1024px) {
  .section-logos { height: 160px; border-radius: 50px 50px 0 0; }
  .logos-fade { width: 120px; }

  .logo--agromarket  { width: 122px; height: 50px; }
  .logo--mindpark    { width: 114px; height: 31px; }
  .logo--formaideale { width: 111px; height: 23px; }
  .logo--nikom       { width: 91px;  height: 31px; }
  .logo--trnava      { width: 132px; height: 29px; }
  .logo--sanel       { width: 83px;  height: 28px; }
  .logo--dtl         { width: 126px; height: 45px; }
  .logo--pzp         { width: 59px; height: 77px; }
  .logo--sena        { width: 90px;  height: 26px; }
  .logo--cortech     { width: 155px; height: 32px; }
  .logo--mitelmant   { width: 95px;  height: 54px; }
  .logo--rollingco   { width: 138px; height: 55px; }
}

/* ── Mobile <= 768px ────────────────────── */
@media (max-width: 768px) {
  .section-logos { height: 130px; border-radius: 36px 36px 0 0; }
  .logos-fade { width: 80px; }

  .logo--agromarket  { width: 89px;  height: 37px; }
  .logo--mindpark    { width: 83px;  height: 23px; }
  .logo--formaideale { width: 81px;  height: 17px; }
  .logo--nikom       { width: 66px;  height: 23px; }
  .logo--trnava      { width: 96px;  height: 21px; }
  .logo--sanel       { width: 60px;  height: 20px; }
  .logo--dtl         { width: 92px;  height: 33px; }
  .logo--pzp 		 { width: 43px; height: 56px; }
  .logo--sena        { width: 66px;  height: 19px; }
  .logo--cortech     { width: 113px; height: 23px; }
  .logo--mitelmant   { width: 69px;  height: 39px; }
  .logo--rollingco   { width: 101px; height: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  .logos-swiper { overflow-x: auto; }
  .logo-slide img { filter: grayscale(0%); opacity: 1; }
}

/* ════════════════════════════════════════════
   SEKCIJA — BENEFITI ČLANSTVA
════════════════════════════════════════════ */
.section-benefits {
  width: 100%;
  background: #E4E5D7;
  border-radius: 0 0 75px 75px;
  padding: 96px var(--pad-x) 144px;
}

.section-benefits .dpks-container {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.benefits-heading {
  color: #1A3A0A;
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 500;
  line-height: normal;
  text-align: center;
  margin-bottom: 56px;
}

/* ─ Grid ──────────────────────────────────── */
.benefits-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  /* ostavlja prostor za ikonicu koja visi 54px izvan karte */
  padding-top: 54px;
  margin-bottom: 48px;
}

/* ─ Kartica ───────────────────────────────── */
.benefit-card {
  position: relative;
  border-radius: 12px;
  border: 1px solid #CCB066;
  background: #F7F2EC;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  /* prostor na vrhu za ikonicu koja viri */
  padding-top: calc(54px + 18px); /* polovina ikonice + gap */
  transition: box-shadow var(--transition), transform var(--transition);
}
.benefit-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
  transform: translateY(-4px);
}

/* ─ Ikonica ───────────────────────────────── */
.benefit-icon {
  position: absolute;
  top: -54px; /* polovina 108px = 54px */
  left: 50%;
  transform: translateX(-50%);
  width: 108px;
  height: 108px;
  flex-shrink: 0;
}
.benefit-icon svg {
  width: 108px;
  height: 108px;
  display: block;
}

/* ─ Tekstovi ──────────────────────────────── */
.benefit-title {
  color: #1A3A0A;
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 36px;
  text-align: center;
  margin-bottom: 12px;
}

.benefit-desc {
  color: #1A3A0A;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  text-align: center;
  max-width: 33ch;
}

/* ─ CTA dugmad ────────────────────────────── */
.benefits-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-benefits-primary {
  width: 244px;
  height: 48px;
  border-radius: 24px;
  background: linear-gradient(180deg, #CCB066 0%, #A98D48 100%);
  color: #132D07;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--transition), transform var(--transition);
}
.btn-benefits-primary:hover { opacity: 0.85; transform: translateY(-2px); }

.btn-benefits-outline {
  width: 244px;
  height: 48px;
  border-radius: 26.5px;
  border: 1px solid #CCB066;
  background: transparent;
  color: #C4AA62;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
}
.btn-benefits-outline:hover { background: rgba(196,170,98,0.10); transform: translateY(-2px); }

/* ── RESPONSIVE ─────────────────────────── */

/* Laptop <= 1680px */
@media (max-width: 1680px) {
  .benefits-heading { font-size: 42px; }
}

/* Tablet <= 1024px */
@media (max-width: 1024px) {
  .section-benefits { padding: 80px var(--pad-x) 100px; border-radius: 0 0 50px 50px; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-heading { font-size: 38px; margin-bottom: 48px; }
}

/* Mobile <= 768px */
@media (max-width: 768px) {
  .section-benefits { padding: 60px var(--pad-x) 80px; border-radius: 0 0 36px 36px; }
  .benefits-grid { grid-template-columns: 1fr; gap: 80px; }
  .benefits-heading { font-size: 30px; margin-bottom: 40px; }
  .btn-benefits-primary,
  .btn-benefits-outline { width: 100%; max-width: 320px; padding: 16px 24px; }
  .benefits-cta { flex-direction: column; align-items: center; }
}

.benefit-card:nth-child(3) {
	padding: 20px 12px;
	padding-top: calc(54px + 18px);
}

/* ════════════════════════════════════════════
   SEKCIJA — CTA ČLANSTVO
════════════════════════════════════════════ */
.section-benefits {
  position: relative;
  z-index: 2;
}

.section-cta {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 44.5625rem; /* 713px */
  margin-top: -75px;
  padding: calc(75px + 5rem) var(--pad-x) 5rem;
  background-image: url('/wp-content/uploads/2026/07/dpk_cta_bg_newest-scaled.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.section-cta .dpks-container {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.cta-left {
  /* namerno prazno */
}

.cta-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.cta-heading {
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 55px;
  margin-bottom: 24px;
}

.cta-body {
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  max-width: 460px;
  margin-bottom: 48px;
}

.btn-cta {
  width: 244px;
  height: 48px;
  border-radius: 26.5px;
  background: linear-gradient(180deg, #CCB066 0%, #A98D48 100%);
  color: #132D07;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--transition), transform var(--transition);
}
.btn-cta:hover  { opacity: 0.85; transform: translateY(-2px); }
.btn-cta:active { transform: translateY(0); }

/* ── RESPONSIVE ─────────────────────────── */
@media (max-width: 1680px) {
  .cta-heading { font-size: 42px; line-height: 50px; }
}

@media (max-width: 1024px) {
  .section-cta .dpks-container {
    grid-template-columns: 1fr;
  }
  .cta-left { display: none; }
  .cta-right { align-items: flex-start; }
  .cta-heading { font-size: 38px; line-height: 46px; }
  .cta-body { max-width: 100%; }
}

@media (max-width: 768px) {
  .section-cta {
        background-image: url(/wp-content/uploads/2026/06/dpk_cta_bg_mobile.webp);
        background-size: cover;
        min-height: 640px;
	    height: auto;
	    width: 100%;
        padding: calc(48px + 3rem) var(--pad-x) 3rem;
        align-items: flex-start;
    }
  .cta-heading { font-size: 30px; line-height: 38px; }
  .btn-cta { width: 100%; max-width: 320px; }
  .cta-body { margin-bottom: 32px; }
}

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.site-footer {
  width: 100%;
  background: #1A2D23;
  padding: 48px var(--pad-x) 16px;
}

.footer-container {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

/* ─ Red 1 ─────────────────────────────────── */
.footer-top {
  display: flex;
  align-items: flex-start;
  gap: 0;
  padding-bottom: 40px;
}

/* Brand kolona */
.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  flex: 1;
}

.footer-logo {
  flex-shrink: 0;
  padding-top: 12px;
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
}

.footer-brand-name {
  max-width: 329px;
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 12px;
}
.footer-brand-gold {
  color: #C4AA62;
  font-style: italic;
}

.footer-brand-desc {
  max-width: 308px;
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
}

/* Navigacija kolona */
.footer-nav {
  flex-shrink: 0;
  margin-left: 120px;
}

.footer-col-label {
  display: block;
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 230%;
  margin-bottom: 8px;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
}

.footer-nav ul li a {
  color: #C4AA62;
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 230%;
  transition: opacity var(--transition);
}
.footer-nav ul li a:hover { opacity: 0.7; }

/* Kontakt kolona */
.footer-contact {
  flex-shrink: 0;
  margin-left: 112px;
  display: flex;
  flex-direction: column;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #C4AA62;
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 230%;
  transition: opacity var(--transition);
}
.footer-contact-item:hover { opacity: 0.7; }
.footer-contact-item svg { flex-shrink: 0; }

/* Socijalne mreže */
.footer-social {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--transition), transform var(--transition);
}
.footer-social a:hover { opacity: 0.7; transform: translateY(-2px); }

/* ─ Divider ───────────────────────────────── */
.footer-divider {
  width: 100%;
  height: 1px;
  background: #132D07;
}

/* ─ Red 2 ─────────────────────────────────── */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0;
}

.footer-copy {
  opacity: 0.3;
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-style: italic;
  font-weight: 500;
  line-height: 230%;
  max-width: 100%;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-legal a {
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-style: italic;
  font-weight: 500;
  line-height: 230%;
  opacity: 0.3;
  transition: opacity var(--transition);
}
.footer-legal a:hover { opacity: 0.6; }

.footer-legal span {
  color: #fff;
  opacity: 0.3;
  font-size: 14px;
}

/* ── RESPONSIVE ─────────────────────────── */
@media (max-width: 1680px) {
  .footer-nav { margin-left: 80px; }
  .footer-contact { margin-left: 80px; }
  .footer-brand-name { font-size: 30px; }
}

@media (max-width: 1024px) {
  .footer-top {
    flex-wrap: wrap;
    gap: 48px;
  }
  .footer-brand { flex: 0 0 100%; }
  .footer-nav { margin-left: 0; }
  .footer-contact { margin-left: 80px; }
}

@media (max-width: 768px) {
  .site-footer { padding: 48px var(--pad-x) 16px; }
  .footer-top { flex-direction: column; gap: 40px; }
  .footer-brand { flex-direction: column; gap: 16px; }
  .footer-nav { margin-left: 0; }
  .footer-contact { margin-left: 0; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .footer-brand-name { font-size: 26px; }
}

/* ════════════════════════════════════════════
   PAGE HERO — O nama / podstranice
════════════════════════════════════════════ */
.section-page-hero {
  width: 100%;
  background: url('/wp-content/uploads/2026/07/o_nama_bg_new-scaled.webp') center / cover no-repeat;
  background-color: #1A3A0A;
  padding: calc(120px + 56px) var(--pad-x) 80px;
	padding-top: calc(24px + 56px + 80px);
  /* 120px = gap od navbara, 56px = visina navbara */
}

.page-hero-inner {
  max-width: 1240px;
  margin: 60px auto 0;
  display: flex;
  align-items: center;
  gap: 64px;
}

/* ─ Leva kolona ─────────────────────────── */
.page-hero-left {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.page-hero-label {
  color: #C4AA62;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}

.page-hero-title {
  color: #1A3A0A;
  font-family: 'Cormorant Garamond', serif;
  font-size: 60px;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 32px;
}

.page-hero-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 543px;
}

.page-hero-body p {
  color: #1A3A0A;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}

/* ─ Desna kolona ─────────────────────────── */
.page-hero-right {
  flex-shrink: 0;
  width: 580px;
}

.page-hero-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.page-hero-img:hover {
  transform: scale(1.015);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.10);
}

/* ── RESPONSIVE ─────────────────────────── */
@media (max-width: 1680px) {
  .page-hero-title { font-size: 52px; }
  .page-hero-right { width: 480px; }
}

@media (max-width: 1024px) {
  .section-page-hero { padding: calc(100px + 56px) var(--pad-x) 60px; }
  .page-hero-inner {
    flex-direction: column;
    gap: 48px;
    align-items: flex-start;
  }
  .page-hero-right { width: 100%; }
  .page-hero-title { font-size: 44px; }
  .page-hero-body { max-width: 100%; }
}

@media (max-width: 768px) {
  .section-page-hero { padding: calc(56px + 56px) var(--pad-x) 48px; }
  .page-hero-title { font-size: 34px; }
  .page-hero-inner { gap: 36px; }
}

@media (max-width: 480px) {
  .page-hero-title { font-size: 28px; }
}

/* ════════════════════════════════════════════
   SEKCIJA — ОСНИВАЧИ КЛУБА
════════════════════════════════════════════ */
.section-founders {
  width: 100%;
  background: #fff;
  padding: 80px var(--pad-x) 160px;
}

.founders-container {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ─ Header ───────────────────────────────── */
.founders-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 48px;
}

.founders-title {
  color: #1A3A0A;
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 500;
  line-height: normal;
  text-align: center;
  margin-bottom: 48px;
}

.founders-desc {
  color: #1A3A0A;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  text-align: center;
  max-width: 582px;
}

/* ─ Grid ─────────────────────────────────── */
.founders-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ─ Kartica ──────────────────────────────── */
.founder-card {
  border-radius: 12px;
  border: 1px solid #CCB066;
  background: linear-gradient(0deg, rgba(255,255,255,0.50) 0%, rgba(255,255,255,0.00) 100%);
  padding: 1rem 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 217px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.founder-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}

/* Logo wrapper — fiksirana visina da svi logoi zauzimaju isti prostor */
.founder-logo {
  display: block;
  object-fit: contain;
  object-position: left center;
  max-width: 100%;
  flex-shrink: 0;
}

/* ─ Individualne logo dimenzije ──────────── */
.logo--fc-agromarket  { width: 189px; height: 89px; }
.logo--fc-mindpark    { width: 185px; height: 50px; }
.logo--fc-formaideale { width: 191px; height: 40px; }
.logo--fc-nikom       { width: 154px; height: 52px; }
.logo--fc-trnava      { width: 208px; height: 47px; }
.logo--fc-sanel       { width: 140px; height: 47px; }
.logo--fc-dtl         { width: 193px; height: 69px; }
.logo--fc-pzp         { width: 68px;  height: 88px; }
.logo--fc-sena        { width: 167px; height: 48px; }
.logo--fc-cortech     { width: 220px; height: 45px; aspect-ratio: 217/44; }
.logo--fc-mitelmant   { width: 112px; height: 63px; aspect-ratio: 16/9; }
.logo--fc-rollingco   { width: 184px; height: 73px; aspect-ratio: 184/73; }

/* ─ Quote tekst ──────────────────────────── */
.founder-quote {
    color: #1A3A0A;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 150%;
    margin-top: auto;
}

/* ── RESPONSIVE ─────────────────────────── */
@media (max-width: 1680px) {
  .founders-title { font-size: 42px; }
}

@media (max-width: 1024px) {
  .section-founders { padding: 80px var(--pad-x) 100px; }
  .founders-grid { grid-template-columns: repeat(2, 1fr); }
  .founders-title { font-size: 38px; }
  .founder-card { min-height: auto; }
}

@media (max-width: 768px) {
  .section-founders { padding: 60px var(--pad-x) 80px; }
  .founders-grid { grid-template-columns: 1fr; }
  .founders-title { font-size: 30px; }
  .founders-desc { font-size: 13px; }

  .logo--fc-agromarket  { width: 140px; height: 66px; }
  .logo--fc-mindpark    { width: 140px; height: 38px; }
  .logo--fc-formaideale { width: 148px; height: 31px; }
  .logo--fc-nikom       { width: 120px; height: 41px; }
  .logo--fc-trnava      { width: 160px; height: 36px; }
  .logo--fc-sanel       { width: 110px; height: 37px; }
  .logo--fc-dtl         { width: 150px; height: 54px; }
  .logo--fc-pzp         { width: 54px;  height: 70px; }
  .logo--fc-sena        { width: 130px; height: 37px; }
  .logo--fc-cortech     { width: 180px; height: 37px; }
  .logo--fc-mitelmant   { width: 90px;  height: 51px; }
  .logo--fc-rollingco   { width: 150px; height: 59px; }
}

/* ════════════════════════════════════════════
   SEKCIJA — МИСИЈА И ВИЗИЈА
════════════════════════════════════════════ */
.section-founders {
  position: relative;
  z-index: 2;
  border-radius: 0 0 75px 75px;
}

.section-mission {
  position: relative;
  z-index: 1;
  width: 100%;
  background: #F1F2EA;
  margin-top: -75px;
  padding: calc(75px + 96px) var(--pad-x) calc(75px + 96px);
  border-radius: 0 0 75px 75px;
}

.mission-container {
  max-width: 1240px;
  margin: 0 auto;
}

/* ─ Red ──────────────────────────────────── */
.mission-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch; /* ← ovo izjednačava visinu kartica */
}

.mission-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

/* ─ Zelena vizuelna kolona ───────────────── */
.mission-card-visual {
  position: relative;
  width: 106px;
  height: 289px;
  border-radius: 12px;
  background: #1A3A0A;
  overflow: hidden;
  flex-shrink: 0;
}

.mission-card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.mission-card-inner {
    position: relative;
    z-index: 1;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    height: 100%; /* ← inner popunjava celu karticu */
    box-sizing: border-box;
}

.mission-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
}

.mission-card-icon {
  position: relative;
  z-index: 1;
  padding: 24px 24px 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.mission-card-icon svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ─ Spacer između dva para ───────────────── */
.mission-row > .mission-card-visual:nth-child(3) {
  /* spacer — nema posebnih izmena */
}

/* ─ Tekstualna kolona ────────────────────── */
.mission-content {
  display: flex;
  flex-direction: column;
  padding-top: 20px;
}

.mission-heading {
    color: #FFF;
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 500;
    line-height: 55px;
    margin: 0;
}

.mission-text {
    color: #FFF;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 150%;
    margin: 0;
    text-align: left;
}

/* ── RESPONSIVE ─────────────────────────── */
@media (max-width: 1680px) {
  .mission-heading { font-size: 42px; line-height: 50px; }
  .mission-row { gap: 0 48px; }
}

@media (max-width: 1024px) {
  .section-mission {
    padding: calc(75px + 80px) var(--pad-x) 80px;
    border-radius: 0 0 50px 50px;
  }
  .section-founders { border-radius: 0 0 50px 50px; }

  .mission-row {
    grid-template-columns: 80px 1fr;
    gap: 24px 32px;
  }

  /* Svaki par ide u poseban red */
  .mission-card-visual { height: 220px; width: 80px; }
  .mission-card-icon { padding: 16px 16px 0; }

  /* Vizija par — puni red */
  .mission-row > .mission-card-visual:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
  }
  .mission-row > .mission-content:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
  }
  .mission-heading { font-size: 36px; line-height: 44px; }
}

@media (max-width: 768px) {
  .section-mission {
    padding: calc(75px + 60px) var(--pad-x) 60px;
    border-radius: 0 0 36px 36px;
  }
  .section-founders { border-radius: 0 0 36px 36px; }

  .mission-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .mission-card-visual {
    width: 100%;
    height: 120px;
  }
  .mission-card-icon { padding: 20px; }

  .mission-row > .mission-card-visual:nth-child(3),
  .mission-row > .mission-content:nth-child(4) {
    grid-column: 1;
    grid-row: auto;
  }

  .mission-heading { font-size: 30px; line-height: 38px; }
  .mission-content { padding-top: 0; }
}

/* ════════════════════════════════════════════
   SEKCIJA — ЦИЉЕВИ КЛУБА
════════════════════════════════════════════ */
.section-mission {
  position: relative;
  z-index: 2;
}

.section-goals {
  position: relative;
  z-index: 1;
  width: 100%;
  background: #fff;
  padding: calc(75px + 96px) var(--pad-x) 96px;
  border-radius: 75px 75px 0 0;
}

.goals-container {
  max-width: 1240px;
  margin: 0 auto;
}

.goals-title {
  color: #1A3A0A;
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 55px;
  margin-bottom: 40px;
}

/* ─ Grid ─────────────────────────────────── */
.goals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 400px;
  gap: 24px;
  align-items: start;
}

/* ─ Kolona sa stavkama ───────────────────── */
.goals-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ─ Stavka ───────────────────────────────── */
.goal-item {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 87px;
  border-radius: 12px;
  border: 1px solid #CCB066;
  background: linear-gradient(0deg, rgba(255,255,255,0.50) 0%, rgba(255,255,255,0.00) 100%);
  padding: 0 16px;
  transition: box-shadow var(--transition), transform var(--transition);
}

.goal-item:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.07);
  transform: translateY(-2px);
}

.goal-number {
  font-family: 'Cormorant Infant', serif;
  font-size: 72px;
  font-weight: 500;
  line-height: normal;
  opacity: 0.2;
  background: linear-gradient(180deg, #CCB066 0%, #A98D48 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  user-select: none;
}

.goal-text {
  color: #1A3A0A;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
}

/* ─ Slika ────────────────────────────────── */
.goals-image {
  width: 400px;
  position: static;
}

.goals-img {
  width: 400px;
  height: 475px; /* 5 × 87px + 4 × 10px = 435px + 40px = 475px ✓ */
  border-radius: 12px;
  object-fit: cover;
  display: block;
  background: #D9D9D9;
  transition: box-shadow 0.2s ease;
}
.goals-img:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.10);
}

/* Placeholder ako slika nije uploadovana */
.goals-image:not(:has(img[src])) .goals-img,
.goals-img[src=""] {
  background: #D9D9D9;
}

/* ── RESPONSIVE ─────────────────────────── */
@media (max-width: 1680px) {
  .goals-title { font-size: 42px; }
  .goals-grid { grid-template-columns: 1fr 1fr 360px; }
  .goals-image { width: 360px; }
  .goals-img { width: 360px; }
  .goal-number { font-size: 60px; }
}

@media (max-width: 1240px) {
  .goals-grid { grid-template-columns: 1fr 1fr 300px; }
  .goals-image { width: 300px; }
  .goals-img { width: 300px; height: 400px; }
}

@media (max-width: 1024px) {
  .section-goals {
    padding: calc(75px + 80px) var(--pad-x) 80px;
    border-radius: 50px 50px 0 0;
  }
  .goals-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .goals-image {
    grid-column: 1 / -1;
    width: 100%;
    position: static;
  }
  .goals-img {
    width: 100%;
    height: 300px;
  }
  .goals-title { font-size: 38px; }
  .goal-number { font-size: 52px; }
}

@media (max-width: 768px) {
  .section-goals {
    padding: calc(75px + 60px) var(--pad-x) 60px;
    border-radius: 36px 36px 0 0;
  }
  .goals-grid { grid-template-columns: 1fr; }
  .goals-title { font-size: 30px; line-height: 38px; }
  .goal-number { font-size: 48px; }
  .goals-img { height: 220px; }
}

/* ════════════════════════════════════════════
   SEKCIJA — НАШЕ ВРЕДНОСТИ
════════════════════════════════════════════ */
.section-goals {
  position: relative;
  z-index: 2;
}

.section-values {
  position: relative;
  z-index: 1;
  width: 100%;
  background: #F1F2EA;
  padding: 6rem 4rem 8rem 4rem;
  border-radius: 0 0 75px 75px;
}

.values-container {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.values-title {
  color: #010101;
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 500;
  line-height: normal;
  text-align: center;
  margin-bottom: 56px;
}

/* ─ Grid ─────────────────────────────────── */
.values-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 54px;
}

/* ─ Kartica — identična benefit-card ──────── */
.value-card {
  position: relative;
  border-radius: 12px;
  border: 1px solid #CCB066;
  background: #F1F2EA;
  padding: 20px 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: calc(54px + 18px);
  transition: box-shadow var(--transition), transform var(--transition);
}
.value-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
  transform: translateY(-4px);
}

/* Ikonica visi iznad kartice — reuse benefit-icon */
.value-card .benefit-icon {
  position: absolute;
  top: -54px;
  left: 50%;
  transform: translateX(-50%);
  width: 108px;
  height: 108px;
  flex-shrink: 0;
}
.value-card .benefit-icon svg {
  width: 108px;
  height: 108px;
  display: block;
}

.value-title {
  color: #1A3A0A;
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 36px;
  margin-bottom: 12px;
}

.value-desc {
  color: #1A3A0A;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
}

/* ── RESPONSIVE ─────────────────────────── */
@media (max-width: 1680px) {
  .values-title { font-size: 42px; }
}

@media (max-width: 1024px) {
  .section-values {
    padding: calc(75px + 80px) var(--pad-x) 80px;
    border-radius: 0 0 50px 50px;
  }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .values-title { font-size: 38px; }
}

@media (max-width: 768px) {
  .section-values {
    padding: calc(75px + 60px) var(--pad-x) 60px;
    border-radius: 0 0 36px 36px;
  }
  .values-grid { grid-template-columns: 1fr; gap: 80px; }
  .values-title { font-size: 30px; }
}
/* ════════════════════════════════════════════
   SEKCIJA — МЛАДИ ТАЛЕНТИ
════════════════════════════════════════════ */
.section-values {
  position: relative;
  z-index: 2;
}

.section-talents {
  position: relative;
  z-index: 1;
  width: 100%;
  background: #fff;
  margin-top: -75px;
  padding: calc(75px + 96px) var(--pad-x) 96px;
}

.talents-container {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 96px;
}

/* ─ Leva kolona — slika ──────────────────── */
.talents-left {
  flex: 1;
  flex-shrink: 0;
}

.talents-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.talents-img:hover {
  transform: scale(1.015);
  box-shadow: 0 16px 48px rgba(0,0,0,0.10);
}

/* ─ Desna kolona — tekst ─────────────────── */
.talents-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 476px;
}

.talents-label {
  color: #C4AA62;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}

.talents-heading {
  max-width: 396px;
  color: #010101;
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 55px;
  margin-bottom: 24px;
}

.talents-body {
  color: #010101;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 24px;
}

.talents-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 0;
  list-style: none;
}

.talents-list li {
  color: #010101;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  padding-left: 20px;
  position: relative;
}

.talents-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(180deg, #CCB066 0%, #A98D48 100%);
  flex-shrink: 0;
}

/* ── RESPONSIVE ─────────────────────────── */
@media (max-width: 1680px) {
  .talents-heading { font-size: 42px; line-height: 50px; }
  .talents-container { gap: 72px; }
}

@media (max-width: 1024px) {
  .section-talents { padding: calc(75px + 80px) var(--pad-x) 80px; }
  .talents-container {
    flex-direction: column;
    gap: 48px;
    align-items: flex-start;
  }
  .talents-left { width: 100%; }
  .talents-heading { font-size: 38px; line-height: 46px; max-width: 100%; }
}

@media (max-width: 768px) {
  .section-talents { padding: calc(75px + 60px) var(--pad-x) 60px; }
  .talents-container { gap: 36px; }
  .talents-heading { font-size: 30px; line-height: 38px; }
}

/* ================================================
   DPKS Struktura i organizacija
   ================================================ */

/* ============================================================
   WRAPPER — objedinjuje header i SVG u jednu vizuelnu celinu
   border-radius samo gore-levo i gore-desno: 75px
   dole nema radijusa jer SVG vec ima svoj rounded mask
   ============================================================ */
.dpks-struktura {
  width: 100%;
  background: #F1F2EA;
  border-radius: 75px 75px 0 0;
  overflow: hidden;
  /* dole nema paddinga — SVG seže do ivice */
}

/* ============================================================
   HEADER BLOK — naslov + paragraph
   ============================================================ */
.dpks-struktura__header {
  max-width: 1240px;
  margin: 0 auto;
  padding: 80px 24px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

.dpks-struktura__title {
  color: #010101;
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.dpks-struktura__subtitle {
  color: #1A3A0A;
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  max-width: 582px;
}

/* ============================================================
   SVG ORG-CHART
   SVG je 1920×1019 viewBox — skalira se width: 100%
   Na desktopovima visina je proporcionalna (~53% širine)
   Na mobilima skaliramo drugačije (vidi ispod)
   ============================================================ */
.dpks-struktura__chart {
  width: 100%;
  display: block;
  /* Sprečava beli gap ispod inline SVG/img */
  line-height: 0;
  font-size: 0;
}

.dpks-struktura__chart img {
  width: 100%;
  height: auto;
  display: block;
  /* SVG već ima border-radius dole u maski (75px) */
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet — mali naslov */
@media (max-width: 1024px) {
  .dpks-struktura {
    border-radius: 50px 50px 0 0;
  }

  .dpks-struktura__title {
    font-size: 38px;
  }

  .dpks-struktura__header {
    padding: 60px 32px 40px;
    gap: 24px;
  }
}

/* Mobilni — naslov manji, padding manji */
@media (max-width: 768px) {
  .dpks-struktura {
    border-radius: 32px 32px 0 0;
  }

  .dpks-struktura__header {
    padding: 48px 20px 32px;
    gap: 20px;
  }

  .dpks-struktura__title {
    font-size: 28px;
  }

  .dpks-struktura__subtitle {
    font-size: 13px;
  }
}

/* Mali mobilni */
@media (max-width: 480px) {
  .dpks-struktura__title {
    font-size: 24px;
  }

  .dpks-struktura__subtitle {
    font-size: 12px;
  }
}

/* ════════════════════════════════════════════
   SEKCIJA — BENEFITI ČLANSTVA HERO
════════════════════════════════════════════ */

.section-benefiti-hero {
  width: 100%;
  min-height: 840px;
  background: url('/wp-content/uploads/2026/07/o_nama_bg_new-scaled.webp') center / cover no-repeat;
  padding: 240px var(--pad-x) 140px;
  display: flex;
  align-items: center;
}

.benefiti-hero-inner {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 580px);
  gap: 64px;
  align-items: center;
}

/* ─ Leva kolona ─────────────────────────── */
.benefiti-hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}

.benefiti-hero-label {
  color: var(--Foundation-Yellow-yellow-500, #C4AA62);
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}

.benefiti-hero-title {
  color: #1A3A0A;
  font-family: "Cormorant Garamond", serif;
  font-size: 60px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  max-width: 494px;
  margin-bottom: 32px;
}

.benefiti-hero-body {
  color: #1A3A0A;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  max-width: 564px;
}

/* ─ Desna kolona ─────────────────────────── */
.benefiti-hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefiti-hero-img {
  width: 100%;
  max-width: 580px;
  height: auto;
  display: block;
  border-radius: 12px;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.benefiti-hero-img:hover {
  transform: scale(1.015);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

/* ── Breakpoints po tvojoj logici ─────────────────────────── */

/* do 1339px → 4rem */
@media (max-width: 1339px) {
  :root {
    --pad-x: 4rem;
  }

  .section-benefiti-hero {
    min-height: auto;
    padding-top: 220px;
    padding-bottom: 120px;
  }

  .benefiti-hero-title {
    font-size: 52px;
    max-width: 460px;
  }

  .benefiti-hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  }
}

/* do 1023px → 3rem */
@media (max-width: 1023px) {
  :root {
    --pad-x: 3rem;
  }

  .section-benefiti-hero {
    min-height: auto;
    padding-top: 180px;
    padding-bottom: 100px;
  }

  .benefiti-hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: flex-start;
  }

  .benefiti-hero-left,
  .benefiti-hero-right {
    width: 100%;
  }

  .benefiti-hero-title {
    font-size: 44px;
    max-width: 100%;
  }

  .benefiti-hero-body {
    max-width: 100%;
  }

  .benefiti-hero-right {
    justify-content: flex-start;
  }

  .benefiti-hero-img {
    max-width: 100%;
  }
}

/* do 768px → 2rem */
@media (max-width: 768px) {
  :root {
    --pad-x: 2rem;
  }

  .section-benefiti-hero {
    padding-top: 140px;
    padding-bottom: 80px;
  }

  .benefiti-hero-inner {
    gap: 36px;
  }

  .benefiti-hero-title {
    font-size: 34px;
  }

  .benefiti-hero-body {
    line-height: 1.6;
  }
}

/* ispod 767px → 1.5rem */
@media (max-width: 767px) {
  :root {
    --pad-x: 1.5rem;
  }

  .section-benefiti-hero {
    padding-top: 120px;
    padding-bottom: 64px;
  }

  .benefiti-hero-label {
    font-size: 12px;
    margin-bottom: 20px;
  }

  .benefiti-hero-title {
    font-size: 28px;
    margin-bottom: 24px;
  }

  .benefiti-hero-body {
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .benefiti-hero-img {
    transition: none;
  }

  .benefiti-hero-img:hover {
    transform: none;
    box-shadow: none;
  }
}

/* ════════════════════════════════════════════
   SEKCIJA — УМРЕЖАВАЊЕ
════════════════════════════════════════════ */

.section-umrezavanje {
  width: 100%;
  background: #fff;
  padding: 72px var(--pad-x) 96px;
  border-radius: 0 0 75px 75px;
  height: 840px;
  position: relative;
  z-index: 2;
}

.umr-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ─ Naslov ───────────────────────────────── */
.umr-title {
  color: #1A3A0A;
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 96px;
}

/* ─ Grid ─────────────────────────────────────
   2 kolone — slika je absolute dete, ne zauzima
   prostor u flow-u. Kartice se same pomeraju
   marginama da naprave prostor za sliku.
─────────────────────────────────────────────── */
.umr-grid {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: start;
}

/* ─ Centralna slika — absolute ──────────── */
.umr-img-wrap {
  position: absolute;
  top: calc(50% + (48px) / 2);
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.umr-img {
  width: 400px;
  height: 563px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.14);
}

/* ─ Kolone ───────────────────────────────── */
.umr-col {
  display: flex;
  flex-direction: column;
}

.umr-col--left .umr-card:not(:last-child),
.umr-col--right .umr-card:not(:last-child) {
  margin-bottom: 24px;
}

/* Leva — desna margina oslobađa prostor za sliku */
.umr-col--left .umr-card {
  margin-right: 7rem;
}

/* Desna — leva margina oslobađa prostor za sliku */
.umr-col--right .umr-card {
  margin-left: 7.5rem;
}

/* Prva kartica desne kolone kreće niže, vizuelno
   balansira sa levom koja ima 3 kartice */
.umr-col--right .umr-card:first-child {
  margin-top: 7rem;
}

/* ─ Kartica ──────────────────────────────── */
.umr-card {
  border-radius: 12px;
  border: 1px solid #CCB066;
  background: #FFF;
  padding: 12px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow var(--transition), transform var(--transition);
  z-index: 2;

}

.umr-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.09);
  transform: translateY(-3px);
}

.umr-card-title {
  color: #A98D48;
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 36px;
  text-align: left;
}

.umr-card-body {
  color: #010101;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  text-align: left;
}

.umr-card--full {
  margin-right: 0 !important;
}

/* ══ RESPONSIVE ══════════════════════════════ */

/* <= 1339px */
@media (max-width: 1339px) {
  .umr-title { font-size: 40px; }
  .umr-img   { width: 340px; height: 479px; }
  .umr-col--left  .umr-card { margin-right: 5.5rem; }
  .umr-col--right .umr-card { margin-left:  6rem; }
}

/* <= 1023px */
@media (max-width: 1023px) {
  .section-umrezavanje { padding: 60px var(--pad-x) 80px; }
  .umr-title  { font-size: 36px; }
  .umr-img    { width: 240px; height: 338px; }
  .umr-col--left  .umr-card { margin-right: 3.5rem; }
  .umr-col--right .umr-card { margin-left:  4rem; }
  .umr-col--right .umr-card:first-child { margin-top: 4rem; }
  .umr-card-title { font-size: 22px; line-height: 28px; }
}

/* <= 768px — single column, slika na kraju */
@media (max-width: 768px) {
  .section-umrezavanje { height: auto; padding: 48px var(--pad-x) 64px; }
  .umr-title  { font-size: 30px; margin-bottom: 32px; }

  .umr-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    display: flex;
    flex-direction: column;
  }

  /* Slika: izlazi iz absolute, ide na kraj */
  .umr-img-wrap {
    position: static;
    transform: none;
    order: 99;
    width: 100%;
  }

  .umr-img {
    width: 100%;
    height: 260px;
  }

  /* Kolone: bez margina */
  .umr-col--left  .umr-card { margin-right: 0; }
  .umr-col--right .umr-card { margin-left: 0; }
  .umr-col--right .umr-card:first-child { margin-top: 0; }

  .umr-card-title { font-size: 20px; line-height: 26px; }
}

/* <= 767px */
@media (max-width: 767px) {
  .umr-card-title { font-size: 18px; line-height: 24px; }
  .umr-card-body  { font-size: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  .umr-card { transition: none; }
  .umr-card:hover { transform: none; box-shadow: none; }
}

/* ════════════════════════════════════════════
   SEKCIJA — ПОДРШКА ПОСЛОВАЊУ
════════════════════════════════════════════ */

.section-podrska {
  position: relative;
  z-index: 1;
  width: 100%;
  background: #F1F2EA;
  /* +75px gore i dole kompenzuje border-radius susednih belih sekcija */
  padding: calc(75px + 96px) var(--pad-x) calc(75px + 96px);
  margin-top: -75px;
  margin-bottom: -75px;
}

.podrska-inner {
  max-width: 1240px;
  margin: 0 auto;
}

/* ─ Grid ─────────────────────────────────── */
.podrska-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
}

/* ─ Leva kolona ─────────────────────────── */
.podrska-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 586px;
  width: 100%;
}

.podrska-title {
  color: #1A3A0A;
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 24px;
}

/* ─ Stavka ───────────────────────────────── */
.podrska-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.podrska-item + .podrska-item {
  margin-top: 24px;
}

.podrska-item-title {
  color: #A98D48;
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 36px;
}

.podrska-item-body {
  color: #010101;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
}

/* ─ Desna kolona ─────────────────────────── */
.podrska-right {
  flex-shrink: 0;
  align-self: center;
}

.podrska-img {
  width: 506px;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  transition: transform var(--transition), box-shadow var(--transition);
}

.podrska-img:hover {
  transform: scale(1.015);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.12);
}

/* ══ RESPONSIVE ══════════════════════════════ */

@media (max-width: 1339px) {
  .podrska-grid  { gap: 100px; }
  .podrska-img   { width: 460px; }
  .podrska-title { font-size: 40px; }
}

@media (max-width: 1023px) {
  .section-podrska {
    padding: calc(75px + 80px) var(--pad-x) calc(75px + 80px);
  }
  .podrska-grid {
    flex-direction: column;
    gap: 48px;
  }
  .podrska-left {
    max-width: 100%;
  }
  .podrska-right { width: 100%; }
  .podrska-img   { width: 100%; }
  .podrska-title { font-size: 36px; }
  .podrska-item-title { font-size: 24px; line-height: 30px; }
}

@media (max-width: 768px) {
  .section-podrska {
    padding: calc(75px + 60px) var(--pad-x) calc(75px + 60px);
  }
  .podrska-title { font-size: 30px; }
  .podrska-item-title { font-size: 20px; line-height: 26px; }
  .podrska-img:hover { transform: none; box-shadow: none; }
}

@media (max-width: 767px) {
  .podrska-title { font-size: 26px; }
  .podrska-item-title { font-size: 18px; line-height: 24px; }
  .podrska-item-body  { font-size: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  .podrska-img { transition: none; }
  .podrska-img:hover { transform: none; box-shadow: none; }
}

/* ════════════════════════════════════════════
   SEKCIJA — ЕДУКАЦИЈА
════════════════════════════════════════════ */

.section-edukacija {
  position: relative;
  z-index: 2;
  width: 100%;
  background: #fff;
  border-radius: 75px 75px 0 0;
  padding: 104px var(--pad-x) 128px;
}

.edukacija-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ─ Naslov ───────────────────────────────── */
.edukacija-title {
  color: #1A3A0A;
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 40px;
}

/* ─ Grid — 4 kolone ──────────────────────── */
.edukacija-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
}

/* ─ Kartica ──────────────────────────────── */
.edukacija-card {
  border-radius: 12px;
  border: 1px solid #CCB066;
  background: #FFF;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow var(--transition), transform var(--transition);
}

.edukacija-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.09);
  transform: translateY(-4px);
}

/* ─ Ikonica ──────────────────────────────── */
.edukacija-card-icon {
  display: flex;
  align-items: flex-start;
  min-height: 64px;   /* sve ikone na istoj baznoj liniji */
  margin-bottom: 16px;
}

.edukacija-card-icon svg {
  display: block;
  flex-shrink: 0;
}

/* ─ Naslov kartice ───────────────────────── */
.edukacija-card-title {
  color: #A98D48;
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 100%;
  text-align: left;
  margin-bottom: 12px;
}

/* ─ Opis ─────────────────────────────────── */
.edukacija-card-body {
  color: #010101;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  text-align: left;
}

/* ══ RESPONSIVE ══════════════════════════════ */

@media (max-width: 1339px) {
  .edukacija-title      { font-size: 40px; }
  .edukacija-card-title { font-size: 26px; }
}

@media (max-width: 1023px) {
  .section-edukacija {
    border-radius: 50px 50px 0 0;
    padding: 80px var(--pad-x) 96px;
  }
  .edukacija-title { font-size: 36px; margin-bottom: 32px; }
  .edukacija-grid  { grid-template-columns: repeat(2, 1fr); }
  .edukacija-card-title { font-size: 24px; }
}

@media (max-width: 768px) {
  .section-edukacija {
    border-radius: 36px 36px 0 0;
    padding: 64px var(--pad-x) 80px;
  }
  .edukacija-title { font-size: 30px; }
  .edukacija-grid  { grid-template-columns: 1fr; gap: 16px; }
  .edukacija-card:hover { transform: none; box-shadow: none; }
}

@media (max-width: 767px) {
  .edukacija-title      { font-size: 26px; }
  .edukacija-card-title { font-size: 20px; }
  .edukacija-card-body  { font-size: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  .edukacija-card { transition: none; }
  .edukacija-card:hover { transform: none; box-shadow: none; }
}

/* ════════════════════════════════════════════
   SEKCIJA — ВИДЉИВОСТ И СПЕЦИЈАЛНИ БЕНЕФИТИ
════════════════════════════════════════════ */

.section-vidljivost {
  position: relative;
  z-index: 2;
  width: 100%;
  background: #F1F2EA;
  border-radius: 0 0 75px 75px;
  padding: 96px var(--pad-x) 96px;
  margin-bottom: -75px; /* CTA sekcija klizi ispod */
}

.vidljivost-inner {
  max-width: 1240px;
  margin: 0 auto;
}

/* ─ Grid ─────────────────────────────────── */
.vidljivost-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

/* ─ Leva kolona ─────────────────────────── */
.vidljivost-left {
  flex-shrink: 0;
  width: 506px;
}

.vidljivost-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  transition: transform var(--transition), box-shadow var(--transition);
}

.vidljivost-img:hover {
  transform: scale(1.015);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.12);
}

/* ─ Desna kolona ─────────────────────────── */
.vidljivost-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 600px;
}

.vidljivost-title {
  color: #1A3A0A;
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 32px;
}

/* ─ Stavka ───────────────────────────────── */
.vidljivost-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.vidljivost-item + .vidljivost-item {
  margin-top: 24px;
}

.vidljivost-item-title {
  color: #A98D48;
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 36px;
}

.vidljivost-item-body {
  color: #010101;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
}

/* ══ RESPONSIVE ══════════════════════════════ */

@media (max-width: 1339px) {
  .vidljivost-left       { width: 420px; }
  .vidljivost-title      { font-size: 40px; }
  .vidljivost-item-title { font-size: 26px; }
}

@media (max-width: 1023px) {
  .section-vidljivost {
    border-radius: 0 0 50px 50px;
    padding: 80px var(--pad-x) 80px;
  }
  .vidljivost-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
  .vidljivost-left       { width: 100%; }
  .vidljivost-right      { max-width: 100%; }
  .vidljivost-title      { font-size: 36px; }
  .vidljivost-item-title { font-size: 24px; line-height: 30px; }
}

@media (max-width: 768px) {
  .section-vidljivost {
    border-radius: 0 0 36px 36px;
    padding: 64px var(--pad-x) 64px;
  }
  .vidljivost-grid       { gap: 32px; }
  .vidljivost-title      { font-size: 30px; margin-bottom: 24px; }
  .vidljivost-item-title { font-size: 20px; line-height: 26px; }
  .vidljivost-img:hover  { transform: none; box-shadow: none; }
}

@media (max-width: 767px) {
  .vidljivost-title      { font-size: 26px; }
  .vidljivost-item-title { font-size: 18px; line-height: 24px; }
  .vidljivost-item-body  { font-size: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  .vidljivost-img { transition: none; }
  .vidljivost-img:hover { transform: none; box-shadow: none; }
}

/* ─ Pillars — bela varijanta ─────────────── */
.section-pillars--white {
  background: #fff;
  position: relative;
  z-index: 2;
}

/* Divider uvek vidljiv na svim karticama */
.section-pillars--white .pillar-divider {
  display: block;
}

/* ─ Subdesc — sivi tekst ispod opisa ──────
   Koristi se samo u prvoj kartici          */
.pillar-subdesc {
  color: rgba(1, 1, 1, 0.30);
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 150%;
  margin-top: 12px;
}

/* ════════════════════════════════════════════
   SEKCIJA — ЕТИЧКИ ОКВИР ЧЛАНСТВА
   Ista layout logika kao .section-podrska ali
   background #fff i bez overlap margin-a
   (podesi margin-top/-bottom po potrebi u
   zavisnosti od susednih sekcija)
════════════════════════════════════════════ */

.section-eticki {
  position: relative;
  z-index: 1;
  width: 100%;
  background: #F1F2EA;
  padding: calc(75px + 96px) var(--pad-x) calc(75px + 96px);
  margin-top: -75px;
  margin-bottom: -75px;
}

.eticki-inner {
  max-width: 1240px;
  margin: 0 auto;
}

/* ─ Grid ─────────────────────────────────── */
.eticki-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
}

/* ─ Leva kolona ─────────────────────────── */
.eticki-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 640px;
  width: 100%;
}

.eticki-title {
  color: #1A3A0A;
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 48px;
}

.eticki-lead {
  color: #010101;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 150%;
  margin-bottom: 24px;
}

/* ─ Lista ────────────────────────────────── */
.eticki-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.eticki-list-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #010101;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
}

.eticki-bullet {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  margin-top: 5px; /* vertikalno centriranje svg strelice uz tekst */
}

/* ─ Desna kolona ─────────────────────────── */
.eticki-right {
  flex-shrink: 0;
  align-self: center;
}

.eticki-img {
  width: 505px;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  transition: transform var(--transition), box-shadow var(--transition);
}

.eticki-img:hover {
  transform: scale(1.015);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.12);
}

/* ══ RESPONSIVE ══════════════════════════════ */

@media (max-width: 1339px) {
  .eticki-img   { width: 420px; }
  .eticki-title { font-size: 40px; }
}

@media (max-width: 1023px) {
  .section-eticki {
    padding: calc(75px + 80px) var(--pad-x) calc(75px + 80px);
  }
  .eticki-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
  .eticki-left  { max-width: 100%; }
  .eticki-right { width: 100%; }
  .eticki-img   { width: 100%; }
  .eticki-title { font-size: 36px; }
}

@media (max-width: 768px) {
  .section-eticki {
    padding: calc(75px + 60px) var(--pad-x) calc(75px + 60px);
  }
  .eticki-title { font-size: 30px; margin-bottom: 32px; }
  .eticki-img:hover { transform: none; box-shadow: none; }
}

@media (max-width: 767px) {
  .eticki-title { font-size: 26px; }
  .eticki-lead  { font-size: 13px; }
  .eticki-list-item { font-size: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  .eticki-img { transition: none; }
  .eticki-img:hover { transform: none; box-shadow: none; }
}

.additional {
	border-radius: 75px 75px 0 0;
}

/* ════════════════════════════════════════════
   KONTAKT HERO
════════════════════════════════════════════ */

.section-hero--kontakt {
  min-height: 840px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: calc(24px + 56px + 60px);
  padding-bottom: 80px;
}

.section-hero--kontakt .dpks-container {
  display: flex;
  align-items: center;
  flex: 1;
}

/* ─ Inner grid ───────────────────────────── */
.kontakt-hero-inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
}

/* ─ Leva kolona ─────────────────────────── */
.kontakt-hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  padding-top: 32px;
}

.kontakt-hero-title {
  color: #FFF;
  font-family: "Cormorant Garamond", serif;
  font-size: 60px;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 24px;
}

.kontakt-hero-desc {
  color: #FFF;
  font-family: "Open Sans", sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: normal;
  max-width: 446px;
}

/* ─ Desna kolona ─────────────────────────── */
.kontakt-hero-right {
  flex-shrink: 0;
  width: 506px;
}

/* ─ Forma ────────────────────────────────── */
.kontakt-form {
  width: 100%;
  border-radius: 7px;
  border: 1px solid #CDCEBD;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
}

.kform-field {
  position: relative;
  width: 100%;
}

/* ─ Input / Select / Textarea ────────────── */
.kform-input {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border-radius: 7px;
  border: 1px solid #CDCEBD;
  background: transparent;
  color: #1A1A1A;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  outline: none;
  transition: border-color var(--transition);
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
}

.kform-input::placeholder {
  color: rgba(0, 0, 0, 0.25);
  text-align: left;
}

.kform-input:focus {
  border-color: #C4AA62;
}

/* Select */
.kform-select {
  cursor: pointer;
  padding-right: 40px;
  color: rgba(0, 0, 0, 0.25);
}

.kform-select:focus,
.kform-select option:checked {
  color: rgba(255, 255, 255, 0.85);
}

.kform-select option {
  background: #1A3A0A;
  color: #fff;
}

.kform-select-arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  display: flex;
  align-items: center;
}

/* Textarea */
.kform-textarea {
  height: 96px;
  padding: 12px 16px;
  resize: none;
  line-height: 1.5;
}

.kform-textarea::placeholder {
  text-align: left;
}

/* ─ Submit ───────────────────────────────── */
.kform-submit {
  margin-top: 12px;
  align-self: flex-start;
  height: 48px;
  padding: 0 64px;
  border-radius: 24px;
  background: linear-gradient(180deg, #CCB066 0%, #A98D48 100%);
  color: #132D07;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: opacity var(--transition), transform var(--transition);
}

.kform-submit:hover  { opacity: 0.85; transform: translateY(-2px); }
.kform-submit:active { transform: translateY(0); }

/* ══ RESPONSIVE ══════════════════════════════ */

@media (max-width: 1339px) {
  .kontakt-hero-title { font-size: 52px; }
  .kontakt-hero-desc  { font-size: 18px; }
  .kontakt-hero-right { width: 460px; }
}

@media (max-width: 1023px) {
  .section-hero--kontakt { min-height: auto; padding-bottom: 64px; }
  .kontakt-hero-inner { flex-direction: column; gap: 40px; }
  .kontakt-hero-left  { padding-top: 16px; }
  .kontakt-hero-title { font-size: 44px; }
  .kontakt-hero-desc  { max-width: 100%; font-size: 16px; }
  .kontakt-hero-right { width: 100%; max-width: 560px; }
}

@media (max-width: 768px) {
  .section-hero--kontakt { padding-bottom: 48px; }
  .kontakt-hero-title { font-size: 36px; }
  .kontakt-hero-desc  { font-size: 15px; }
  .kontakt-form { padding: 24px 20px; }
  .kform-submit { width: 100%; padding: 0 32px; }
}

@media (max-width: 767px) {
  .kontakt-hero-title { font-size: 30px; }
  .kontakt-hero-right { max-width: 100%; }
  .kform-input::placeholder { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  .kform-submit { transition: none; }
  .kform-submit:hover { transform: none; }
}

/* Navbar — tamna pozadina (početna + kontakt) */
.home .dpks-navbar,
.page-id-70 .dpks-navbar {
  background-color: #274434;
  border-color: #CCB066;
}

.home .dpks-navbar .nav-link,
.page-id-70 .dpks-navbar .nav-link {
  color: #C4AA62;
}

.home .dpks-navbar .nav-link:hover,
.page-id-70 .dpks-navbar .nav-link:hover {
  color: #fff;
}

/* ════════════════════════════════════════════
   NAVBAR — DROPDOWN ČLANSTVO
════════════════════════════════════════════ */

.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  background: none;
  border: none;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  color: #C4AA62;
  transition: color var(--transition);
}

.nav-dropdown-trigger:hover { color: #9C7F3C; }

.nav-dropdown-trigger svg {
  flex-shrink: 0;
  transition: transform var(--transition);
}

.nav-dropdown-trigger[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 300;
  min-width: 210px;
  border-radius: 12px;
  border: 1px solid #CCB066;
  background: #F1F2EA;
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  pointer-events: none;
  transition:
    opacity var(--transition),
    transform var(--transition),
    visibility var(--transition);
}

.nav-dropdown-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-dropdown-item {
  display: block;
  color: #C4AA62;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  white-space: nowrap;
  transition: color var(--transition);
}

.nav-dropdown-item:hover { color: #9C7F3C; }

/* Dark navbar — početna i kontakt */
.home .nav-dropdown-trigger,
.page-id-70 .nav-dropdown-trigger { color: #C4AA62; }

.home .nav-dropdown-trigger:hover,
.page-id-70 .nav-dropdown-trigger:hover { color: #fff; }

.home .nav-dropdown-menu,
.page-id-70 .nav-dropdown-menu {
  background: #252914;
  border-color: rgba(255,255,255,0.15);
}

.home .nav-dropdown-item,
.page-id-70 .nav-dropdown-item { color: #C4AA62; }

.home .nav-dropdown-item:hover,
.page-id-70 .nav-dropdown-item:hover { color: #fff; }

.nav-dropdown-menu.is-open {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
  pointer-events: auto !important;
}

/* ── RESPONSIVE ─────────────────────────── */
@media (max-width: 1680px) {
    .mission-heading { font-size: 42px; line-height: 50px; }
    .mission-row { gap: 16px; }
}

@media (max-width: 1024px) {
    .section-mission {
        padding: calc(75px + 80px) var(--pad-x) 80px;
        border-radius: 0 0 50px 50px;
    }
    .mission-heading { font-size: 36px; line-height: 44px; }
}

@media (max-width: 768px) {
    .section-mission {
        padding: calc(75px + 60px) var(--pad-x) 60px;
        border-radius: 0 0 36px 36px;
    }

    .mission-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .mission-heading { font-size: 30px; line-height: 38px; }
}