/* =====================================================
   ZLATNA.CSS - Globalni dizajn sustav v2
   Zlatna d.o.o. - Motori, Plovila & Servis, Porec
   ===================================================== */

/* Crveni gumbi uvijek imaju bijela slova */
.gt-theme-btn,
.gt-theme-btn .gt-text-btn,
.gt-theme-btn .gt-icon-btn { color: #fff !important; }
.gt-theme-btn.style-2 .gt-text-btn { color: #fff !important; }

/* Navbar button ima bijelu pozadinu s tamnim tekstom — samo prije scrola */
.header-1:not(.sticky) .header-right .gt-theme-btn .gt-text-btn { color: #1d1d1d !important; }

/* =====================================================
   1. CSS VARIJABLE
   ===================================================== */
:root {
  /* Brand boje */
  --z-red:          #E63619;
  --z-red-dark:     #b82b12;
  --z-red-soft:     rgba(230,54,25,.10);

  /* Tamne pozadine */
  --z-black:        #06070c;
  --z-dark:         #10131a;
  --z-dark-soft:    #1c1f2e;
  --z-dark-mid:     #1e2130;

  /* Sive nijanse */
  --z-gray:         #64748b;
  --z-gray-light:   #f0f2f8;
  --z-gray-soft:    #f8f9fc;
  --z-white:        #ffffff;

  /* Rubovi */
  --z-border:       rgba(0,0,0,.08);
  --z-border-dark:  rgba(255,255,255,.10);

  /* Radijusi */
  --z-radius-sm:    8px;
  --z-radius-md:    16px;
  --z-radius-lg:    28px;
  --z-radius-pill:  999px;

  /* Sjene */
  --z-shadow:       0 12px 32px rgba(16,19,26,.10);
  --z-shadow-md:    0 18px 48px rgba(16,19,26,.14);
  --z-shadow-lg:    0 32px 80px rgba(16,19,26,.20);

  /* Layout */
  --z-container:    1320px;

  /* Animacija */
  --z-ease:         .28s cubic-bezier(.4,0,.2,1);

  /* Fontovi */
  --z-fh:           'Barlow', sans-serif;
  --z-fb:           'Inter', sans-serif;
}

/* =====================================================
   2. GLOBALNA ZASTITA NASLOVA
   ===================================================== */
h1, h2, h3, h4, h5, h6,
.z-title, .z-title-xl, .z-title-lg,
.z-title-md, .z-title-sm, .z-hero-title {
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

/* =====================================================
   3. LAYOUT - SEKCIJE I KONTEJNERI
   ===================================================== */
.z-section {
  padding: 96px 0;
}

.z-section-dark {
  background: var(--z-dark);
  color: var(--z-white);
}

.z-section-light {
  background: var(--z-gray-light);
}

.z-container {
  max-width: var(--z-container);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* Grids */
.z-grid {
  display: grid;
  gap: 24px;
}

.z-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.z-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.z-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* Split: dva stupca, poravnati centralno */
.z-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.z-split--wide {
  grid-template-columns: 1.15fr 1fr;
}

/* Stack: vertikalni flex */
.z-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Media: slika s rounded corners */
.z-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--z-radius-lg);
}

.z-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Section header: label + naslov + opcionaln link */
.z-section-hdr {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}

.z-section-hdr--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* =====================================================
   4. KARTICE
   ===================================================== */
.z-card {
  background: var(--z-white);
  border-radius: var(--z-radius-md);
  border: 1px solid var(--z-border);
  overflow: hidden;
  box-shadow: var(--z-shadow);
  transition: transform var(--z-ease), box-shadow var(--z-ease);
}

.z-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--z-shadow-lg);
}

.z-card-dark {
  background: var(--z-dark-soft);
  border-color: var(--z-border-dark);
  color: var(--z-white);
}

.z-card-image {
  position: relative;
  overflow: hidden;
}

.z-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--z-ease);
}

.z-card:hover .z-card-image img {
  transform: scale(1.04);
}

.z-card-body {
  padding: 24px;
}

/* =====================================================
   5. TIPOGRAFIJA
   ===================================================== */

/* Eyebrow: mala oznaka iznad naslova */
.z-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--z-fb);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--z-red);
  margin-bottom: 12px;
}

.z-eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--z-red);
  flex-shrink: 0;
}

/* Naslovi */
.z-title {
  font-family: var(--z-fh);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1px;
  line-height: .95;
  color: var(--z-dark);
  margin: 0;
}

.z-title-xl  { font-size: clamp(52px, 9vw, 130px); }
.z-title-lg  { font-size: clamp(38px, 5.5vw, 80px); }
.z-title-md  { font-size: clamp(28px, 3.5vw, 52px); }
.z-title-sm  { font-size: clamp(22px, 2.5vw, 34px); }

.z-title-white,
.z-section-dark .z-title {
  color: var(--z-white);
}

.z-title span {
  color: var(--z-red);
}

/* Tekst */
.z-lead {
  font-family: var(--z-fb);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.75;
  color: var(--z-gray);
  max-width: 640px;
}

.z-text {
  font-family: var(--z-fb);
  font-size: 14px;
  line-height: 1.7;
  color: var(--z-gray);
}

.z-text-muted {
  color: rgba(255,255,255,.62);
}

/* =====================================================
   6. BUTTONI
   ===================================================== */
.z-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--z-fh);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0 28px;
  min-height: 52px;
  border-radius: var(--z-radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background var(--z-ease),
    color var(--z-ease),
    border-color var(--z-ease),
    box-shadow var(--z-ease),
    transform var(--z-ease);
}

.z-btn:hover { transform: translateY(-1px); }
.z-btn:active { transform: translateY(0); }

/* Crveni - primarni */
.z-btn-red {
  background: var(--z-red);
  color: #fff;
  border-color: var(--z-red);
}
.z-btn-red:hover {
  background: var(--z-red-dark);
  border-color: var(--z-red-dark);
  color: #fff;
  box-shadow: 0 12px 28px rgba(230,54,25,.35);
}

/* Tamni */
.z-btn-dark {
  background: var(--z-dark);
  color: #fff;
  border-color: var(--z-dark);
}
.z-btn-dark:hover {
  background: var(--z-dark-soft);
  border-color: var(--z-dark-soft);
  color: #fff;
}

/* Bijeli */
.z-btn-white {
  background: #fff;
  color: var(--z-dark);
  border-color: #fff;
}
.z-btn-white:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

/* Outline (za hero na tamnoj pozadini) */
.z-btn-outline {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.45);
  backdrop-filter: blur(8px);
}
.z-btn-outline:hover {
  background: #fff;
  color: var(--z-dark);
  border-color: #fff;
}

/* Ghost (link-like) */
.z-btn-ghost {
  background: transparent;
  color: var(--z-red);
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
  min-height: auto;
}
.z-btn-ghost:hover {
  color: var(--z-red-dark);
  text-decoration: none;
}
.z-btn-ghost i {
  transition: transform var(--z-ease);
}
.z-btn-ghost:hover i {
  transform: translateX(4px);
}

/* =====================================================
   7. HERO SUSTAV
   ===================================================== */
.z-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100svh;
  overflow: hidden;
  background: var(--z-dark);
}

.z-hero--80 { min-height: 80svh; }
.z-hero--60 { min-height: 60svh; }
.z-hero--50 { min-height: 50svh; }

/* Pozadinska slika */
.z-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.z-hero-bg img,
.z-hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Tamni overlay */
.z-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(6,7,12,.52) 0%,
    rgba(6,7,12,.70) 50%,
    rgba(6,7,12,.92) 100%
  );
}

/* Bocni overlay (za split layoute) */
.z-hero-overlay--left {
  background: linear-gradient(
    90deg,
    rgba(6,7,12,.90) 0%,
    rgba(6,7,12,.60) 55%,
    transparent 100%
  );
}

/* Sadrzaj */
.z-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 140px 0 100px;
}

/* Kicker oznaka */
.z-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--z-fb);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--z-red);
  margin-bottom: 20px;
}

.z-hero-kicker::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--z-red);
  flex-shrink: 0;
}

/* Naslov */
.z-hero-title {
  font-family: var(--z-fh);
  font-size: clamp(54px, 9.5vw, 140px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -2px;
  line-height: .88;
  color: #fff;
  margin: 0 0 24px;
}

.z-hero-title span { color: var(--z-red); }

/* Podnaslov */
.z-hero-text {
  font-size: clamp(14px, 1.2vw, 17px);
  line-height: 1.75;
  color: rgba(255,255,255,.72);
  max-width: 580px;
  margin-bottom: 36px;
}

/* CTA buttoni */
.z-hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Dot grid dekoracija */
.z-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: radial-gradient(circle, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

/* Bottom fade */
.z-hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 160px;
  z-index: 2;
  background: linear-gradient(to top, rgba(6,7,12,.75), transparent);
  pointer-events: none;
}

/* Stranicni hero (manje visine, drukciji padding) */
.z-hero-page .z-hero-content {
  padding: 130px 0 80px;
}

/* =====================================================
   8. KARTICE USLUGA
   ===================================================== */
.z-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.z-service-card {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
  text-decoration: none;
}

.z-service-card-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.z-service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .65s cubic-bezier(.4,0,.2,1);
}

.z-service-card:hover .z-service-card-media img {
  transform: scale(1.07);
}

/* Tamni overlay kartice */
.z-service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(6,7,12,.95) 0%,
    rgba(6,7,12,.55) 45%,
    transparent 100%
  );
  transition: background var(--z-ease);
}

.z-service-card:hover::after {
  background: linear-gradient(
    to top,
    rgba(6,7,12,.98) 0%,
    rgba(6,7,12,.72) 58%,
    rgba(6,7,12,.18) 100%
  );
}

.z-service-card-content {
  position: relative;
  z-index: 2;
  padding: 44px 40px;
  border-bottom: 3px solid transparent;
  transition: border-color var(--z-ease);
}

/* Akcent boje po kartici */
.z-service-card-red   { --card-accent: var(--z-red); }
.z-service-card-orange{ --card-accent: #f97316; }
.z-service-card-blue  { --card-accent: #0ea5e9; }
.z-service-card-dark  { --card-accent: #94a3b8; }

.z-service-card:hover .z-service-card-content {
  border-bottom-color: var(--card-accent, var(--z-red));
}

/* Broj u gornjem uglu */
.z-service-card-num {
  font-family: var(--z-fh);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--card-accent, var(--z-red));
  margin-bottom: 12px;
  display: block;
}

.z-service-card-title {
  font-family: var(--z-fh);
  font-size: clamp(22px, 2.4vw, 36px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.5px;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.05;
}

.z-service-card-text {
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(255,255,255,.68);
  margin: 0 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, margin var(--z-ease);
}

.z-service-card:hover .z-service-card-text {
  max-height: 120px;
}

.z-service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--z-fh);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--card-accent, var(--z-red));
  text-decoration: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--z-ease), transform var(--z-ease);
}

.z-service-card:hover .z-service-card-link {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
   9. PRODUCT CARDS
   ===================================================== */
.z-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.z-product-card {
  background: var(--z-white);
  border-radius: var(--z-radius-md);
  overflow: hidden;
  border: 1px solid var(--z-border);
  transition: transform var(--z-ease), box-shadow var(--z-ease);
  text-decoration: none;
  color: inherit;
  display: block;
}

.z-product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--z-shadow-lg);
  color: inherit;
}

.z-product-image {
  position: relative;
  height: 220px;
  background: var(--z-gray-light);
  overflow: hidden;
}

.z-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 16px;
  transition: transform var(--z-ease);
}

.z-product-card:hover .z-product-image img {
  transform: scale(1.06);
}

.z-product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--z-red);
  color: #fff;
  font-family: var(--z-fh);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--z-radius-pill);
}

.z-product-body {
  padding: 20px 24px 24px;
}

.z-product-category {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--z-gray);
  margin-bottom: 6px;
}

.z-product-title {
  font-family: var(--z-fh);
  font-size: 17px;
  font-weight: 800;
  color: var(--z-dark);
  line-height: 1.25;
  margin-bottom: 12px;
}

.z-product-price {
  font-family: var(--z-fh);
  font-size: 22px;
  font-weight: 900;
  color: var(--z-red);
}

.z-product-price-old {
  font-size: 14px;
  color: var(--z-gray);
  text-decoration: line-through;
  margin-left: 8px;
  font-weight: 400;
}

.z-product-stock {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-top: 8px;
}

.z-product-stock--in  { color: #16a34a; }
.z-product-stock--low { color: #d97706; }
.z-product-stock--out { color: #dc2626; }

/* =====================================================
   10. CTA BLOKOVI
   ===================================================== */
.z-cta {
  position: relative;
  overflow: hidden;
}

.z-cta-dark  { background: var(--z-dark); color: var(--z-white); }
.z-cta-light { background: var(--z-gray-light); }

/* Split CTA (slika + tekst) */
.z-cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.z-cta-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 64px;
  align-self: stretch;
}

.z-cta-media {
  position: relative;
  overflow: hidden;
}

.z-cta-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* CTA overlay na slici */
.z-cta-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.25) 0%, transparent 55%);
}

/* =====================================================
   11. FORME
   ===================================================== */
.z-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.z-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.z-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.z-label {
  font-family: var(--z-fb);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--z-gray);
}

.z-input,
.z-textarea {
  font-family: var(--z-fb);
  font-size: 14px;
  color: var(--z-dark);
  background: var(--z-white);
  border: 1.5px solid var(--z-border);
  border-radius: var(--z-radius-sm);
  padding: 13px 16px;
  width: 100%;
  transition: border-color var(--z-ease), box-shadow var(--z-ease);
  outline: none;
  appearance: none;
}

.z-input:focus,
.z-textarea:focus {
  border-color: var(--z-red);
  box-shadow: 0 0 0 3px rgba(230,54,25,.12);
}

.z-input::placeholder,
.z-textarea::placeholder {
  color: var(--z-gray);
  opacity: .65;
}

.z-textarea {
  min-height: 140px;
  resize: vertical;
}

/* Tamna varijanta forme */
.z-form--dark .z-input,
.z-form--dark .z-textarea {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.14);
  color: #fff;
}

.z-form--dark .z-input::placeholder,
.z-form--dark .z-textarea::placeholder {
  color: rgba(255,255,255,.4);
}

.z-form--dark .z-input:focus,
.z-form--dark .z-textarea:focus {
  border-color: var(--z-red);
  background: rgba(255,255,255,.10);
}

/* =====================================================
   12. NAVBAR OVERRIDES
   ===================================================== */

/* Topbar */
.topbar {
  background: var(--z-black) !important;
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.topbar .container {
  font-size: 12.5px;
  letter-spacing: .2px;
  color: rgba(255,255,255,.78);
}

.topbar a {
  color: rgba(255,255,255,.78) !important;
  text-decoration: none;
  transition: color var(--z-ease);
}

.topbar a:hover {
  color: var(--z-red) !important;
  opacity: 1 !important;
}

.topbar i {
  color: var(--z-red) !important;
  opacity: 1 !important;
}

/* Header nav linkovi - uppercase, Barlow */
.main-menu nav ul > li > a {
  font-family: var(--z-fh) !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  letter-spacing: .8px !important;
  text-transform: uppercase !important;
  transition: color var(--z-ease) !important;
}

.main-menu nav ul > li > a:hover,
.main-menu nav ul > li.active > a {
  color: var(--z-red) !important;
}

/* =====================================================
   13. FOOTER OVERRIDES
   ===================================================== */
.gt-footer-section {
  background: var(--z-dark) !important;
  border-top: 1px solid rgba(255,255,255,.06);
}

.gt-footer-content p {
  color: rgba(255,255,255,.58);
  font-size: 13.5px;
  line-height: 1.75;
  margin-bottom: 0;
}

/* Kontakt lista u footeru */
.gt-footer-contact-simple {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gt-footer-contact-simple li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,.60);
}

.gt-footer-contact-simple li i {
  color: var(--z-red);
  width: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.gt-footer-contact-simple li a {
  color: rgba(255,255,255,.60);
  text-decoration: none;
  transition: color var(--z-ease);
}

.gt-footer-contact-simple li a:hover {
  color: var(--z-red);
}

/* Footer naslovi kolona */
.gt-widget-head h3 {
  font-family: var(--z-fh) !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  color: var(--z-white) !important;
  margin-bottom: 20px !important;
}

/* Footer linkovi */
.gt-list-area {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gt-list-area li,
.gt-list-area li a {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: color var(--z-ease);
}

.gt-list-area li a:hover {
  color: var(--z-red);
}

/* Social ikonice */
.gt-social-icon,
.social-icon {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.gt-social-icon a,
.social-icon a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.65);
  font-size: 14px;
  text-decoration: none;
  transition: background var(--z-ease), color var(--z-ease), border-color var(--z-ease);
}

.gt-social-icon a:hover,
.social-icon a:hover {
  background: var(--z-red);
  color: #fff;
  border-color: var(--z-red);
}

/* Newsletter bar */
.gt-footer-newsletter {
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding: 28px 0;
  margin: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.gt-footer-newsletter h3 {
  font-family: var(--z-fh) !important;
  font-size: 18px !important;
  font-weight: 800 !important;
  letter-spacing: -.5px !important;
  color: #fff !important;
  margin: 0 0 10px !important;
  text-transform: none !important;
}

.gt-newsletter-content .form-clt {
  display: flex;
  gap: 0;
}

.gt-newsletter-content .form-clt input {
  background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(255,255,255,.14);
  border-right: none;
  border-radius: 999px 0 0 999px;
  color: #fff;
  padding: 12px 22px;
  font-size: 13px;
  outline: none;
  width: 260px;
  transition: border-color var(--z-ease);
}

.gt-newsletter-content .form-clt input::placeholder {
  color: rgba(255,255,255,.38);
}

.gt-newsletter-content .form-clt input:focus {
  border-color: var(--z-red);
}

/* Newsletter button - samo lijevim zaobljenim */
.gt-newsletter-content .form-clt .gt-theme-btn {
  border-radius: 0 999px 999px 0 !important;
  min-width: auto;
}

/* Footer brandovi - slider */
.footer-brands { margin-top: 24px; }

.footer-brands h5 {
  font-family: var(--z-fh) !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,.45) !important;
  margin-bottom: 16px !important;
}

.ft-brands-wrapper { position: relative; padding: 0 20px; }

.ft-brands-slider { overflow: hidden; }

.ft-brands-slider .ft-brand-logo {
  min-height: 84px;
  border-radius: 14px;
  padding: 14px 18px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .22s, border-color .22s;
}

.ft-brands-slider .ft-brand-logo:hover {
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.18);
}

.ft-brands-slider .ft-brand-logo img {
  max-height: 40px;
  max-width: 110px;
  width: auto;
  height: auto;
  filter: grayscale(100%) brightness(1.8);
  opacity: .70;
  mix-blend-mode: screen;
  transition: filter .22s, opacity .22s, transform .22s;
}

.ft-brands-slider .ft-brand-logo:hover img {
  filter: brightness(2);
  opacity: 1;
  transform: translateY(-1px);
}

.ft-brands-prev,
.ft-brands-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.60);
  font-size: 10px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .22s, border-color .22s, color .22s;
}

.ft-brands-prev { left: -4px; }
.ft-brands-next { right: -4px; }

.ft-brands-prev:hover,
.ft-brands-next:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.30);
  color: #fff;
}

/* Footer bottom */
.footer-bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}

.footer-bottom p {
  font-size: 12.5px;
  color: rgba(255,255,255,.38);
  margin: 0;
  text-align: center;
}

/* =====================================================
   14. POMOCNE KLASE
   ===================================================== */

/* Label (mala crvena oznaka sekcije) */
.z-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--z-fb);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--z-red);
  background: var(--z-red-soft);
  padding: 5px 12px;
  border-radius: var(--z-radius-pill);
  margin-bottom: 14px;
}

/* Divider */
.z-divider {
  border: none;
  border-top: 1px solid var(--z-border);
  margin: 0;
}

.z-divider-dark {
  border-top-color: var(--z-border-dark);
}

/* Aspect ratio kutije */
.z-ratio-16-9  { aspect-ratio: 16 / 9; }
.z-ratio-4-3   { aspect-ratio: 4 / 3; }
.z-ratio-3-2   { aspect-ratio: 3 / 2; }
.z-ratio-square{ aspect-ratio: 1 / 1; }

/* Tekst boje */
.z-text-red   { color: var(--z-red) !important; }
.z-text-white { color: #fff !important; }
.z-text-dark  { color: var(--z-dark) !important; }
.z-text-gray  { color: var(--z-gray) !important; }

/* Pozadine */
.z-bg-dark  { background: var(--z-dark) !important; }
.z-bg-black { background: var(--z-black) !important; }
.z-bg-light { background: var(--z-gray-light) !important; }
.z-bg-white { background: var(--z-white) !important; }

/* =====================================================
   15. RESPONZIVNOST
   ===================================================== */
@media (max-width: 1199px) {
  .z-section          { padding: 80px 0; }
  .z-hero-content     { padding: 120px 0 80px; }
  .z-split            { gap: 52px; }
  .z-cta-content      { padding: 60px 48px; }
}

@media (max-width: 991px) {
  .z-section          { padding: 64px 0; }
  .z-hero-content     { padding: 110px 0 70px; }
  .z-grid-2,
  .z-grid-3,
  .z-grid-4           { grid-template-columns: 1fr; }
  .z-split,
  .z-split--wide      { grid-template-columns: 1fr; gap: 40px; }
  .z-service-grid     { grid-template-columns: 1fr; }
  .z-service-card     { min-height: 400px; }
  .z-cta-split        { grid-template-columns: 1fr; }
  .z-cta-content      { padding: 52px 32px; }
  .z-product-grid     { grid-template-columns: repeat(2, 1fr); }
  .z-form-row         { grid-template-columns: 1fr; }
  .z-hero-title       { letter-spacing: -1.5px; }
}

@media (max-width: 767px) {
  .z-section          { padding: 52px 0; }
  .z-container        { padding: 0 16px; }
  .z-hero-actions     { width: 100%; }
  .z-cta-content      { padding: 44px 20px; }
  .z-section-hdr      { flex-direction: column; align-items: flex-start; gap: 16px; }
}

@media (max-width: 575px) {
  .z-product-grid     { grid-template-columns: 1fr; }
  .z-service-card-content { padding: 28px 24px; }
  .z-hero-title       { letter-spacing: -1px; }
}
