*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --body-color: #212529;
  --golden-btn: #BFA14A;
  /* #C5B358 malo svetlija */
  --golden-glow: #bfa14ab8;
  --golden-dark: #aa9452;
  --red: #C8102E;
  --red-dark: #9B0C22;
  --red-glow: rgba(200, 16, 46, 0.25);
  --black: #1c1c1c;
  --charcoal: #111111;
  --card-bg: #161616;
  --gray: #f5f7f9;
  /*#f6f6f6*/
  --dark2: #0b0c0c;
  /*#1a1a1a;*/
  --border: #e6e6e6fc;
  --text: #F0EFEC;
  --muted: #8A8A8A;
  --white: #ffffff;
  --gray-color-text: #D0D3D5;
  --accent-line: rgba(200, 16, 46, 0.6);

  /* Fontovi */
  --font-primary: 'DM Sans', sans-serif;
  --font-heading: 'Bebas Neue', sans-serif;
  --font-bebas: 'Bebas Neue', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  color: var(--body-color);
  overflow-x: hidden;
  font-size: 18px;
  line-height: 24px;
  font-weight: 300;
}


/* ── SCROLLBAR ── */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  background: var(--red);
  border-radius: 2px;
}

.b-r-5 {
  border-radius: 5px;
}

.font-white {
  color: #ffffff;
}

.font-dark {
  color: #1C1C1C;
}

b,
strong {
  font-weight: 600;
}

a.inline-link {
  color: var(--red);
  text-decoration: none;
  border-bottom: 1px solid rgba(212, 43, 43, .35);
  transition: border-color .2s;
}

a.inline-link:hover {
  border-color: var(--red);
}

a.inline-link svg {
  margin-right: 5px;
  width: 18px;
}

.row ul li {
  margin-bottom: 10px;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 1.9rem);
  line-height: 1.15;
}

h3 {
  font-size: clamp(1.38rem, 4vw, 1.6rem);
  line-height: 1.15;
}

h4 {
  font-size: clamp(1.2rem, 4vw, 1.38rem);
  line-height: 1.15;
}


/* ══════════════════════════════
   NAVBAR
══════════════════════════════ */

#mainNav {
  position: fixed;
  top: 35px;
  /* visina top bara */
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  background: #ffffff;
  transition: background .35s, box-shadow .35s;
}

#mainNav.scrolled {
  background: #ffffff;
  box-shadow: 0 2px 15px rgb(0 0 0 / 20%);
}

.nav-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 10px 0;
}

/*** LOGO ***/
.navbar-logo img {
  width: 115px;
  height: auto;
}

/*** DESKTOP LINKS ***/
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin-bottom: 10px;
}

.nav-links>li {
  position: relative;
}

.nav-links>li>a {
  color: #0a0a0a;
  text-decoration: none;
  font-weight: 500;
  font-size: .95rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 8px 16px;
  display: block;
  transition: color .2s;
}

.nav-links>li>a:hover {
  color: var(--red);
}

#mainNav .nav-links>li {
  margin-bottom: 0px;
}

/*** Dropdown aktivan (klik) ***/
.nav-links li.open>.dropdown-menu {
  display: block;
}

/*** Aktivan link (isto kao hover efekat) ***/
.nav-links li.open>a {
  color: var(--red);
}

/*** Dropdown ***/
.nav-links .dropdown-menu {

  display: none;
  position: absolute;
  top: 100%;
  left: 0;

  min-width: 235px;
  background: var(--dark2);
  border: 1px solid rgba(255, 255, 255, .06);
  border-top: 2px solid var(--red);
  border-radius: 0 0 4px 4px;

  padding: 14px 0 10px;
  list-style: none;
}

.nav-links .dropdown-menu li a {
  display: block;
  color: rgba(255, 255, 255, .75);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: .88rem;
  line-height: normal;
  font-weight: 400;
  padding: 9px 20px;
  transition: background .15s, color .15s;
}

.nav-links .dropdown-menu li {
  margin-bottom: 3px;
}

.nav-links .dropdown-menu li a:hover {
  background: rgba(212, 43, 43, .12);
  color: var(--white);
}

/*** Dropdown hover (desktop) ***/
@media (min-width: 992px) {
  .nav-links>li:hover>.dropdown-menu {
    display: block;
  }

  .nav-links li:hover .dropdown-menu {
    display: block;
  }

  .nav-links>li:hover>a {
    color: var(--red);
  }
}

/*** CONTACT BUTTON ***/
.btn-nav-contact {
  background: var(--golden-btn);
  color: #ffffff !important;
  border-radius: 2px;
  padding: 9px 22px !important;
  transition: background .2s !important;
}

.btn-nav-contact:hover {
  background: var(--golden-dark) !important;
}

/*** HAMBURGER ***/
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1100;
  position: relative;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--black);
  margin: 6px 0;
  transition: all .35s cubic-bezier(.77, 0, .175, 1);
  transform-origin: center;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/*** MOBILE DRAWER ***/
.mobile-drawer {
  position: fixed;
  top: 35px;
  right: 0;
  width: min(360px, 100vw);
  height: 100vh;
  background: var(--black);
  z-index: 1050;

  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.77, 0, .175, 1);

  padding: 60px 40px 40px;
  overflow-y: auto;
  border-left: 1px solid rgb(255 255 255 / 20%);
}

.mobile-drawer.open {
  transform: translateX(0);
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .7);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s;
}

.drawer-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.drawer-close {
  position: absolute;
  top: 10px;
  right: 30px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  font-weight: 300;
}

.drawer-close:hover {
  color: var(--red);
}

.mobile-nav-list {
  list-style: none;
  padding: 0;
}

.mobile-nav-list>li {
  border-bottom: 1px solid rgb(255 255 255 / 20%);
}

.mobile-nav-list>li>a,
.mobile-nav-label {
  display: block;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 10px 0;
  transition: color .2s;
}

.mobile-nav-list>li>a:hover,
.mobile-nav-label:hover {
  color: var(--red);
}

.mobile-sub-list {
  list-style: none;
  padding: 0 0 10px 16px;
  display: none;
}

.has-sub.open .mobile-sub-list {
  display: block;
}

.mobile-nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.mobile-nav-row>a,
.mobile-nav-label {
  flex: 1;
}

.mobile-sub-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  padding: 8px;
  display: flex;
  align-items: center;
  transition: transform .25s;
}

.has-sub.open .mobile-sub-toggle {
  transform: rotate(180deg);
}

.mobile-sub-list li a {
  display: block;
  color: var(--gray);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 7px 0;
  transition: color .2s;
  /*text-transform: uppercase;
  font-weight: 600;
  letter-spacing: .04em;*/
}

.mobile-sub-list li a:hover {
  color: var(--white);
}

ul.mobile-sub-list li {
  margin-bottom: 0px;
}

.mobile-contact-btn {
  display: inline-block;
  margin-top: 28px;
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  /*font-family: var(--font-display);*/
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 2px;
  transition: background .2s;
}

.mobile-contact-btn:hover {
  background: var(--red-dark);
  color: var(--white);
}

/* TOP BAR */

.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 35px;
  background: #0b0c0c;
  z-index: 1100;
  display: flex;
  align-items: center;
}

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

.top-bar-left {
  color: #fff;
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
  opacity: .8;
}

.top-bar-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 15px;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icon {
  color: #fff;
  transition: .2s;
  display: flex;
  align-items: center;
}

.social-icon:hover {
  opacity: 1;
  transform: translateY(-1px);
  color: var(--golden-btn);
}


/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  position: relative;
  /* min-height: 100vh;*/
  display: flex;
  align-items: center;
  overflow: hidden;
  height: calc(100vh - 110px);
  margin-top: 110px;
}

.hero-bg {
  position: absolute;
  inset: 0;

  background-image:
    /* LEVI GLAVNI SHADOW */
    linear-gradient(to right,
      rgba(0, 0, 0, 0.95) 0%,
      rgb(0 0 0 / 80%) 20%,
      rgb(0 0 0 / 55%) 40%,
      rgb(0 0 0 / 13%) 60%,
      rgba(0, 0, 0, 0.15) 75%,
      rgba(0, 0, 0, 0) 100%),

    /* DONJI FADE (za tekst i dugmad) */
    linear-gradient(to top,
      rgb(0 0 0 / 70%) 0%,
      rgb(0 0 0 / 50%) 35%,
      rgba(0, 0, 0, 0) 70%),

    /* BLAGI GLOBALNI TINT (da ubije svetlo iz garaže) */
    linear-gradient(rgb(0 0 0 / 5%),
      rgb(0 0 0 / 0%)),

    /* SLIKA */
    url("../img/laserwash-rumenka-detailing-studio-bmw-m3-ferrari-458.webp");

  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}

.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E");
  opacity: .4;
  pointer-events: none;
}

.hero-line {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, transparent, var(--red), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 0 80px;
}

.hero h1 {
  font-family: var(--font-primary);
  font-size: clamp(1.65rem, 6vw, 4rem);
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 24px;
  font-weight: 700;
}

.hero h1 em {
  font-style: normal;
  color: var(--red);
}

.hero-sub {
  color: var(--gray-color-text);
  font-weight: 300;
  max-width: 580px;
  line-height: normal;
  margin-bottom: 35px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-item.stars .stat-num {
  font-size: 30px;
  line-height: 40px;
  color: var(--golden-btn);
}

.stat-num {
  font-family: var(--font-bebas);
  font-size: 2.5rem;
  color: #ffffff;
  line-height: 1;
}

.stat-num span {
  color: var(--golden-btn);
}

.stat-label {
  font-size: .75rem;
  color: var(--gray);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 3px;
}

.stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, .12);
  align-self: stretch;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--golden-btn);
  color: #fff;
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 32px;
  border-radius: 3px;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
}

.btn-cta:hover {
  background: var(--golden-dark);
  transform: translateY(-1px);
}

.btn-cta i {
  font-size: .9em;
}

/* GYEON BADGE */

.gyeon-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  padding: 10px 24px;
  border-radius: 4px;
  margin-top: 35px;
}

.gyeon-badge-text {
  font-size: 18px;
  line-height: 20px;
  color: #ffffff;
  font-weight: 400;
}

/* ══════════════════════════════
   SECTIONS
══════════════════════════════ */
section {
  padding: 70px 0;
}

section.bg-dark2 {
  background: var(--dark2);
}

section.bg-black {
  background: var(--black);
}

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

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--red);
}

h2.section-title {
  font-family: var(--font-display);
  /*font-size: clamp(1.63rem, 4vw, 2rem);
  line-height: 1.2;*/
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, .6);
  font-weight: 300;
  line-height: 1.7;
  max-width: 640px;
}

/******* INTRO ******/
.intro-section p {
  color: var(--gray-color-text);
}

/******* EKSTERIJER ******/
h3.service-heading {
  font-family: var(--font-display);
  font-weight: 800;
  /*font-size: 1.8rem;*/
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: .02em;
  color: var(--black);
}

.service-intro {
  font-size: .95rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.65;
  margin-bottom: 28px;
}

.service-card {
  background: #ffffff;
  border: 1px solid rgb(230 230 230 / 99%);
  border-radius: 5px;
  padding: 22px 24px 22px 13px;
  margin-bottom: 14px;
  transition: border-color .2s, background .2s;
  display: flex;
  gap: 15px;
  align-items: flex-start;
  border-left: 3px solid var(--red)
}

.usluge-card .service-card:hover,
.usluge-card .service-card:focus {
  border-color: #c8102e61;
  box-shadow: 0px 7px 10px rgb(212 43 43 / 8%);
  border-left-color: var(--red);
}

.usluge-card .service-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.usluge-card .service-card-link:hover {
  text-decoration: none;
  color: inherit;
}

.usluge-card .service-card-body {
  flex: 1;
  /* ← DODAJ ovu liniju */
}

/* 3. CSS chevron strelica — bez ikakvog HTML-a */
.usluge-card .service-card::after {
  content: '';
  flex-shrink: 0;
  align-self: center;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--red);
  border-top: 2px solid var(--red);
  transform: rotate(45deg);
  opacity: 0.65;
  margin-right: 2px;
}

.service-card-number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 3rem;
  line-height: 1;
  color: var(--red);
  margin-bottom: 10px;
}

.service-card-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card-body p {
  font-size: 16px;
  line-height: 20px;
  margin: 0;
}

.service-card-body .service-title {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 5px;
  color: var(--black);
}

:root {
  --border-animation-color: #ed1c24;
  --border-animation-speed: 7s;
  --border-animation-width: 1px;
}

@property --border-animation-angle {
  syntax: "<angle>";
  initial-value: 0turn;
  inherits: false;
}

@keyframes borderRotate {
  to {
    --border-animation-angle: 1turn;
  }
}

.service-card.service-item {
  position: relative;
  flex-direction: column;
  height: 100%;
  z-index: 1;
  transition: all 0.4s ease-in-out;
}

.service-card.service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--secondary-color);
  opacity: 40%;
  height: 100%;
  width: 100%;
  z-index: -1;
}

.service-card.service-item:after {
  pointer-events: none;
  content: "";
  position: absolute;
  inset: calc(var(--border-animation-width) * -1);
  border-radius: inherit;
  border: solid transparent;
  border-width: var(--border-animation-width);
  animation: borderRotate var(--border-animation-speed) linear infinite;
  background: conic-gradient(from var(--border-animation-angle), transparent 88%, var(--border-animation-color), var(--border-animation-color) 100%, transparent) border-box;
  background-clip: border-box;
  background-origin: border-box;
  mask: radial-gradient(farthest-side, rgba(0, 0, 0, 0) calc(97% - var(--border-animation-width)), rgba(0, 0, 0, 0)) content-box, radial-gradient(farthest-side, rgba(0, 0, 0, 0) calc(2% - var(--border-animation-width)), #000) border-box;
  -webkit-mask-composite: destination-in;
  mask-composite: intersect;
}

/********* O VLASNIKU ********/

.about-section h2 {
  margin-bottom: 20px;
  color: var(--black);
}

.about-lead {
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 28px;
}

.founder-block {
  /* background: #ffffff;
  border: 1px solid rgb(230 230 230 / 99%); */
  border-radius: 5px;
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.founder-block::after {
  content: "\201D";
  position: absolute;
  top: 65px;
  right: 10px;
  font-size: 170px;
  color: rgba(255, 0, 0, 0.08);
  font-family: serif;
}

.founder-name {
  font-weight: 800;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.founder-title {
  font-size: 0.75rem;
  color: var(--red);
  letter-spacing: 0.15em;
  line-height: normal;
  text-transform: uppercase;
  font-weight: 700;
}

/******* EQUIPMENT ******/
.equip-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 15px 0 10px;
}

.equip-item:last-child {
  border-bottom: none;
}

.equip-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.equip-item strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  display: block;
}

.equip-item p {
  font-size: 16px;
  margin: 0;
  line-height: 1.1;
}

.equip-item {
  display: flex;
  flex-direction: column;
  border-left: 3px solid var(--red);
  /* Ista crvena linija kao kod usluga */
  padding-left: 15px;
  /* Uvlačenje teksta da diše */
  margin-bottom: 20px;
  /* Razmak između stavki */
}

.equip-item strong {
  color: #212529;
  /* Oštar kontrast za naziv opreme */
  display: block;
}

.equip-item p {
  margin: 0;
  color: #555;
  /* Suptilnija siva za mehanizam rada */
}

/********** VIDEO *******/
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 4px;
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Play dugme */
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  background: var(--red);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.play-button::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 20px;
  border-style: solid;
  border-width: 15px 0 15px 22px;
  border-color: transparent transparent transparent white;
}

/********* LOCATION *******/
.location-card {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 3px;
  padding: 28px;
}

/********* PROMISE *******/
.promise-card {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .07);
  border-top: 3px solid var(--red);
  border-radius: 2px;
  padding: 32px 28px;
  height: 100%;
}

.promise-card i {
  font-size: 1.8rem;
  color: var(--red);
  margin-bottom: 16px;
  display: block;
}

.promise-card h2,
.promise-card h3 {
  font-weight: 600;
  font-size: 1.25rem;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #ffffff;
}

.promise-card p {
  font-size: 16px;
  color: var(--gray-color-text);
  line-height: 22px;
  margin: 0;
}

.promise-card p.pc-title {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
}

/* ══════════════════════════════
   FAQ
══════════════════════════════ */
.faq-item {
  border: 1px solid rgb(230 230 230);
  padding: 20px;
  margin-bottom: 15px;
  background: #f5f7f9cf;
}

/* klik zona kao button */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
}

.faq-question h3 {
  font-size: 18px;
  line-height: 22px;
  margin: 0;
}

/* CARET */
.faq-question .toggle {
  /*width: 32px;
  height: 32px;
  border: 1px solid rgb(230 230 230);
  border-radius: 50%;*/
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

/* ROTACIJA */
.faq-item.open .toggle {
  transform: rotate(180deg);
}

/* SMOOTH OPEN (ovo je ključ!) */
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.faq-answer>* {
  overflow: hidden;
}

/* kada je otvoren */
.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

/* padding unutra */

.faq-answer p {
  margin: 0px;
}

.faq-item.open .faq-answer p {
  margin: 10px 0 0;
}

/* ══════════════════════════════
   BLOG
══════════════════════════════ */

.hero-single {
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--golden-dark);
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 32px;
  border-radius: 3px;
  border: 1px solid var(--golden-btn);
  transition: border-color 0.2s, background 0.2s;
}

.btn-outline-dark:hover {
  border: 1px solid #dcdcdc;
  color: var(--black);
}

.blog-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  height: 100%;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: box-shadow 0.25s, transform 0.2s;
}

.blog-card:hover {
  box-shadow: 0 8px 32px rgba(26, 26, 46, 0.12);
  transform: translateY(-3px);
  color: inherit;
}

.blog-thumb {
  height: 180px;
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: center;
}

.blog-thumb-1 {
  background: linear-gradient(135deg, #1A1A2E 0%, #2D1B3D 100%);
}

.blog-thumb-2 {
  background: linear-gradient(135deg, #0D2137 0%, #1A3A2E 100%);
}

.blog-thumb-3 {
  background: linear-gradient(135deg, #2D1A1A 0%, #3D2010 100%);
}

.blog-thumb-icon {
  width: 52px;
  height: 52px;
  color: rgba(200, 16, 46, 0.6);
}

.blog-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--red);
  color: #fff;
  padding: 3px 10px;
  border-radius: 2px;
}

.blog-body {
  padding: 22px 22px 20px;
}

.blog-body h3 {
  font-weight: 700;
  font-size: 1rem;
  /* Ovde smanjuješ veličinu fonta */
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 8px;
  line-height: 1.2;
}

.blog-body h5 {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 8px;
  line-height: 1.2;
}

.blog-body p {
  font-size: 16px;
  color: var(--muted);
  line-height: 18px;
  font-weight: 300;
  margin: 0;
}

.blog-link {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 14px;
  display: block;
}

/* ══════════════════════════════
   PARTNERI
══════════════════════════════ */
.brand-strip {
  overflow: hidden;
  padding: 40px 0;
}

.brand-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(26, 26, 46, 0.4);
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}


/* ══════════════════════════════
   PARTNERS SLIDER
══════════════════════════════ */
.partners {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.partners-track-wrapper {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.partners-track {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  animation: partners-scroll 18s linear infinite;
}

.partners-track:hover {
  animation-play-state: paused;
}

/** Kontakt stranica **/

ul.car-model-list li {
  /* border-bottom: 1px solid var(--border); */
  margin-bottom: 10px;
  padding-bottom: 10px;
}

ul.car-model-list li span {
  display: block;
  font-size: 14px;
  line-height: normal;
  font-style: italic;
}

.contact-form-card {
  background: var(--gray);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 25px;
  margin-top: 40px;
}

.contact-form-card .form-control {
  padding: 7px 15px;
  border-radius: 5px;
}

.contact-form-card label.form-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.footer-contact-item.contact-page-info a,
.footer-contact-item.contact-page-info span {
  font-size: 18px;
  line-height: 24px;
}

.footer-contact-item.contact-page-info svg {
  margin-top: 0px;
}


/** Kontakt stranica - tabela radno vreme **/

/* Zajednički stilovi */
.hours-table {
  max-width: 1000px;
  margin: 1rem auto;
  font-size: 16px;
  line-height: normal;
}

/* ==========================================
   DESKTOP STILOVI (Ekrani iznad 768px)
   ========================================== */
@media screen and (min-width: 769px) {

  /* Sakrivamo mobilne labele (Pon-Pet, Subota...) jer imamo header */
  .day-label {
    display: none;
  }

  /* Definišemo istu strukturu kolona za Header i za Kartice: 
     Prva kolona (usluga) je duplo šira (2fr) od ostalih (1fr) */
  .hours-head,
  .hours-card {
    display: grid;
    grid-template-columns: 2fr 3fr;
    /* 2fr za ime, 3fr za ceo raspored */
    align-items: center;
    border: 1px solid var(--border, #dee2e6);
    background: #fff;
    margin-top: -1px;
    /* Pegla duple linije */
  }

  /* Posebno podešavanje za header red */
  .hours-head {
    background-color: #e2e2e2;
    font-weight: 700;
    border-bottom: 2px solid #dee2e6;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    /* Direktne 4 kolone u headeru */
  }

  .hours-head .hours-col {
    padding: 18px 20px;
  }

  /* Naziv usluge u kartici */
  .hours-service-name {
    padding: 18px 20px;
    font-weight: 600;
    color: #212529;
  }

  /* Kontejner za satnice se deli na 3 jednake kolone */
  .hours-schedule {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    height: 100%;
    align-items: center;
  }

  /* Svako pojedinačno vreme na desktopu */
  .hours-item {
    padding: 18px 20px;
    border-left: 1px solid #dee2e6;
    height: 100%;
    display: flex;
    align-items: center;
  }
}

/* ==========================================
   MOBILNI STILOVI (Ekrani do 768px)
   ========================================== */
@media screen and (max-width: 768px) {

  /* Sakrivamo desktop header */
  .hours-head {
    display: none;
  }

  /* Pretvaramo uslugu u zasebnu karticu */
  .hours-card {
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    margin-bottom: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
  }

  /* Naziv usluge na vrhu kartice */
  .hours-service-name {
    background-color: #f8f9fa;
    padding: 15px 20px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    border-bottom: 1px solid #dee2e6;
  }

  /* Unutrašnji prostor za dane */
  .hours-schedule {
    padding: 10px 20px;
  }

  /* Red sa danom i satnicom: Dan LEVO, Satnica DESNO */
  .hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid #f1f1f1;
  }

  .hours-item:last-child {
    border-bottom: none;
  }

  /* Stilovi za tekst na mobilnom */
  .day-label {
    font-weight: 600;
    color: #636e72;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
  }

  .time-value {
    font-weight: 500;
    color: #212529;
  }

  .text-muted {
    color: #b5b5b5;
  }

  .hours-service-name {
    padding-top: 35px;
    /* Povećavamo gornji padding da napravimo mesto za reč "USLUGA" */
    position: relative;
  }

  .hours-service-name::before {
    content: "Usluga";
    /* Tekst koji se automatski ispisuje */
    position: absolute;
    top: 12px;
    left: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #636e72;
    /* Sivo-bela diskretna boja, ista kao za dane */
    letter-spacing: 0.5px;
  }
}


@media (min-width: 992px) {
  .partners-track-wrapper {
    -webkit-mask-image: none;
    mask-image: none;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .partners-track {
    animation: none;
    width: auto;
    justify-content: center;
    flex-wrap: wrap;
    gap: 60px;
  }

  .partner-logo.partner-logo-dup {
    display: none;
  }
}

@media (min-width: 1200px) {
  .partners-track-wrapper {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .partners-track-wrapper {
    max-width: 1320px;
  }
}

.partner-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo img {
  height: 48px;
  width: auto;
  filter: grayscale(100%) opacity(0.45);
  transition: filter 0.3s ease;
}

.partner-logo img:hover {
  filter: grayscale(0%) opacity(1);
}

@keyframes partners-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ══════════════════════════════
   PRE-FOOTER
══════════════════════════════ */
.contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px;
}

ul.contact-list {
  list-style: none;
  padding-left: 10px;
}

ul.contact-list li {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

ul.contact-list li .icon {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
}

ul.contact-list li .icon svg {
  width: 100%;
  height: 100%;
}

ul.contact-list li .text {
  flex: 1;
  line-height: 1.4;
}

ul li span.text {
  flex: 1;
  line-height: 1.4;
}

ul li {
  margin-bottom: 10px;
}

/* ══════════════════════════════
   SINGLE STRANICE
══════════════════════════════ */

.hero-single {
  position: relative;
  min-height: 600px;
  padding: 60px 0;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  color: #fff;
  margin-top: 110px;
  align-items: center;
  align-items: flex-end;
}

/* overlay za bolju čitljivost */
.hero-single::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  background: linear-gradient(to right, rgb(10 10 11 / 85%) 0%, rgb(16 16 25 / 46%) 50%, rgb(26 26 46 / 0%) 100%), linear-gradient(to bottom, rgb(26 26 46 / 0%) 0%, rgb(0 0 0 / 80%) 100%);
}

.hero-single .container {
  position: relative;
  z-index: 2;
}

/* breadcrumbs */
.hero-breadcrumb {
  background: none;
  padding: 0;
  margin-bottom: 10px;
}

.hero-breadcrumb .breadcrumb-item,
.hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  text-decoration: none;
}

.hero-breadcrumb .breadcrumb-item.active {
  color: #fff;
}

.breadcrumb-item+.breadcrumb-item::before {
  color: #bfa14a;
}

/* naslov */
.hero-title {
  font-size: 36px;
  margin-bottom: 20px;
}

/* tekst */
.hero-text {
  font-size: 16px;
  max-width: 600px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
}

/* dugmad */
.hero-actions .btn-primary {
  background-color: #e30613;
  border-color: #e30613;
}

.hero-actions .btn-primary:hover {
  background-color: #b80510;
  border-color: #b80510;
}

.hero-actions .btn-outline-light {
  border-color: #fff;
  color: #fff;
}

.proc-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid #dededefc;
}

.proc-item:last-child {
  border-bottom: none
}

.proc-num {
  flex-shrink: 0;
  width: 40px;
  height: 30px;
  /* background:var(--red); */
  color: var(--body-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-bebas);
  font-size: 1.5rem;
  border-radius: 2px;
}

.proc-body p {
  margin: 0
}

.with-pm-t .proc-body p {
  margin-bottom: 10px;
}

.proc-body-title {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 5px;
  color: var(--black);
}

h3.proc-body-title {
  font-size: 18px;
  line-height: 24px;
}

/* ── NIVOI PRANJA ── */

span.nivo-poliranja {
  color: #c8102e;
  font-size: 16px;
  font-weight: 700;
}

.level-card {
  border: 3px solid var(--border);
  border-radius: 4px;
  padding: 0;
  overflow: hidden;
  margin-bottom: 24px;
}

.level-card-head {
  padding: 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.level-num-badge {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 1.4rem;
  border-radius: 2px;
}

.level-card-head-text h3 {
  font-weight: 600;
  font-size: 20px;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.level-subtitle {
  font-size: 13px;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-weight: normal;
  display: block;
  font-style: italic;
  margin-top: 3px;
  color: #000000;
}

.level-card-desc {
  padding: 20px 20px 10px;
}

.level-card-desc p:last-child {
  margin-bottom: 0px;
}

.level-card-body {
  padding: 5px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.level-stat {
  display: flex;
  flex-direction: column;
}

.level-stat-label {
  font-size: 15px;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-weight: 700;
}

.level-stat-val {
  font-size: 16px;
  line-height: normal;
}

.level-stat-val strong {
  color: var(--red);
}

.level-safety {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: var(--gray);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 12px 16px;
  margin: 12px 20px 20px;
  font-size: 17px;
  line-height: normal;
  font-style: italic;
}

.safety-icon {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
}

.level-safety svg {
  width: 100%;
}

/* ultimate card */

.level-card.ultimate {
  border-color: var(--dark2);
  border-top: 4px solid var(--dark2);
}

.level-card.ultimate .level-num-badge {
  background: var(--dark-text);
}

/* responsive */
@media (max-width: 768px) {
  .hero-single {
    min-height: calc(100dvh - 110px);
    padding: 25px 0;
    margin-top: 110px;
  }

  .hero-title {
    font-size: 26px;
  }

  .hero-text {
    font-size: 14px;
  }

  .level-card-head {
    padding: 15px;
  }

}

.padding-section {
  padding-bottom: 100px;
}

.tip-card {
  background: var(--gray);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px 28px;
}

.tip-row {
  display: flex;
  gap: 7px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.tip-row:last-child {
  border-bottom: none;
}

.tip-row.without-icons {
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  padding: 15px;
}

.tip-icon {
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tip-icon.bad {
  background: rgba(212, 43, 43, 0.1);
  color: var(--red);
}

.tip-icon.good {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
}

.tip-body p {
  margin: 0;
}

blockquote {
  border-left: 4px solid var(--red);
  background: #ffffff;
  padding: 18px 22px;
  margin: 24px 0;
  border-radius: 0px;
  border-right: 1px solid var(--border);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.ben-num {
  flex-shrink: 0;
  font-family: var(--font-bebas);
  font-weight: 900;
  font-size: 2.5rem;
  color: rgba(212, 43, 43, .12);
  line-height: 1;
  min-width: 44px;
  text-align: center;
}

.feat-block {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}

.feat-block img {
  width: 100%;
  display: block;
  object-fit: cover;
  height: 440px;
}

.feat-block-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.9) 0%, transparent 55%);
}

.feat-block-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 25px;
}

.feat-block-content p {
  color: #ffffff;
}

.feat-block-content h3.feat-block-title {
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0px;
}

.feat-stat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 12px;
}

.exp-card {
  background: var(--gray);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 28px 24px;
  height: 100%;
  border-left: 3px solid var(--red);
}

.exp-icon {
  width: 48px;
  height: 48px;
  background: rgba(212, 43, 43, .08);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1.1rem;
  margin-bottom: 16px;
}

/* poliranje farova cenovnik */

.pkg-card {
  background: var(--white);
  border: 1px solid #c2c2c2fc;
  border: 2px solid #d7d7d7fc;
  border-radius: 4px;
  overflow: hidden;
  height: 100%;
  transition:
    border-color 0.25s,
    box-shadow 0.25s,
    transform 0.25s;
  display: flex;
  flex-direction: column;
}

.pkg-card:hover {
  border-color: var(--red);
  box-shadow: 0 14px 44px rgba(212, 43, 43, 0.1);
  transform: translateY(-5px);
}

.pkg-head {
  padding: 24px 24px 16px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.pkg-icon {
  width: 46px;
  height: 46px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  background: rgba(212, 43, 43, 0.1);
}

.pkg-head-text h3 {
  font-family: var(--font-d);
  font-weight: 900;
  font-size: 20px;
  text-transform: uppercase;
  color: var(--dark-text);
  margin-bottom: 2px;
  line-height: normal;
}

.pkg-body {
  padding: 10px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.pkg-process {
  margin-bottom: 14px;
  text-align: left;
}

.pkg-process span {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 16px;
  line-height: 20px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.pkg-process span:last-child {
  border-bottom: none;
}

.pkg-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 16px;
  align-items: center;
}

.pkg-meta-cell {
  padding: 10px 12px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.pkg-meta-cell:last-child {
  border-right: none;
}

.pmc-label {
  font-size: 14px;
  color: var(--gray-text);
  text-transform: uppercase;
  font-family: var(--font-d);
  font-weight: 600;
  margin-bottom: 2px;
}

.pmc-val {
  font-family: var(--font-d);
  font-weight: 900;
  font-size: 20px;
  color: var(--dark-text);
}

.pmc-val.price {
  color: #212529;
  font-size: 1.55rem;
  margin-bottom: 15px;
}

.pkg-ideal {
  margin-bottom: auto;
  padding-bottom: 14px;
}

.pkg-footer {
  padding-top: 14px;
  border-top: 1px solid var(--border);
  margin-top: 14px;
}

.pc-btn {
  display: inline-flex;
  background: var(--gray);
  border: 1px solid var(--border);
  color: var(--dark-text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px;
  border-radius: 4px;
  transition: all 0.2s;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.pc-btn:hover {
  background: var(--golden-btn);
  color: var(--white);
}

.pc-btn:hover svg {
  fill: #ffffff;
}

.pv3-cat {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-text);
  margin-bottom: 8px;
}

.pv3-price {
  font-family: var(--font-d);
  font-weight: 900;
  font-size: 2.6rem;
  color: var(--dark-text);
  line-height: 1;
  margin-bottom: 4px;
}

.pv3-price sup {
  font-size: 1rem;
  vertical-align: super;
}

.pv3-from {
  font-size: 0.75rem;
  color: var(--red);
  font-family: var(--font-d);
  font-weight: 700;
  margin-bottom: 12px;
}

.model-cat-seo-data {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.pv3-info-btn {
  background: none;
  border: 1px solid var(--border);
  border-radius: 2px;
  width: 100%;
  padding: 7px 10px;
  font-size: 0.75rem;
  color: var(--gray-text);
  cursor: pointer;
  font-family: var(--font-b);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: all 0.2s;
  margin-bottom: 10px;
}

.pv3-info-btn:hover {
  background: var(--gray-bg);
  color: var(--dark-text);
}

.pv3-models {
  display: none;
  font-size: 0.9rem;
  color: var(--gray-text);
  line-height: 1.5;
  text-align: center;
  padding: 10px;
  background: var(--gray-bg);
  border-radius: 2px;
  margin-bottom: 10px;
}

.pv3-models.open {
  display: block;
}

.infobox {
  background: #ffffff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--red);
  border-radius: 3px;
  padding: 18px 22px;
  margin: 20px 0;
}

.protokol .service-card-body p,
.protokol ul {
  font-size: 17px;
  line-height: normal;
}

.protokol ul {
  margin-top: 10px;
}

#poliranje-farova-cenovnik .pc-btn {
  padding: 8px 15px;
}

/* cenovnik- dezinfikacija klime */

.pricing-container {
  max-width: 1000px;
  margin: 2rem auto;
}

.responsive-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

/* Desktop stilovi */
.responsive-table thead tr {
  background-color: #edeff1;
  text-align: left;
}

.responsive-table th,
.responsive-table td {
  padding: 18px 20px;
  border: 2px solid #d7d7d7fc;
  vertical-align: middle;
}

.price {
  font-weight: 600;
  color: #212529;
}

.price-free {
  font-weight: 600;
}

.responsive-table td.action-cell .pc-btn {
  width: 100%;
}

@media screen and (min-width: 768px) {
  td.note-cell.wash {
    width: 45%;
  }
}


/* Mobilni stilovi (ispod 768px) */
@media screen and (max-width: 768px) {
  .responsive-table thead {
    display: none;
    /* Sakrivamo pravo zaglavlje */
  }

  .responsive-table,
  .responsive-table tbody,
  .responsive-table tr,
  .responsive-table td {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }

  .responsive-table tr {
    margin-bottom: 1.5rem;
    border: 2px solid #d7d7d7fc;
    border-radius: 4px;
    overflow: hidden;
  }

  .responsive-table td {
    text-align: right;
    padding-left: 50%;
    position: relative;
    border: none;
    border-bottom: 1px solid #f1f1f1;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  /* Ubacivanje naslova kolone preko data-label */
  .responsive-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 40%;
    font-weight: 700;
    text-align: left;
    color: #636e72;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
  }

  .responsive-table td.service-cell {
    border-bottom: none;
    background-color: #edeff1;
  }

  .responsive-table td.note-cell {
    text-align: left;
    padding-left: 20px;
    padding-top: 40px;
  }

  .responsive-table td.note-cell::before {
    top: 15px;
    transform: none;
  }

  .responsive-table td.action-cell {
    text-align: center;
    padding: 15px 20px;
    background-color: #fff;
    border-bottom: none;
  }

  .responsive-table td.action-cell::before {
    display: none;
  }

  .responsive-table td:last-child::before {
    top: 15px;
  }
}


/* ══════════════════════════════
   BLOG
══════════════════════════════ */

.hero-single.blog {
  min-height: 280px;
  text-align: center;
}

.hero-single.blog .hero-breadcrumb {
  justify-content: center;
}

section.single-post a {
  color: var(--red);
}

.nivo-poliranja-sekcija-slike img {
  height: 100%;
  max-height: 250px;
}

/* ══════════════════════════════
   GALLERY STRIP
══════════════════════════════ */

/* Wrapper koji drži strelice i strip u redu */
.gallery-nav-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.gallery-strip-outer {
  flex: 1;
  min-width: 0;
  /* sprečava overflow */
}

.gallery-strip {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 6px;
  scrollbar-width: none;
  /* Firefox – sakriva scrollbar */
  cursor: grab;
  user-select: none;
}

.gallery-strip::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari – sakriva scrollbar */
}

.gallery-strip.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

/* Strelice prev / next */
.gallery-nav {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: #fff;
  color: var(--body-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, opacity 0.2s;
}

.gallery-nav:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.gallery-nav.hidden {
  opacity: 0;
  pointer-events: none;
}

/* Dots indikator */
.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
}

.gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  padding: 0;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.gallery-dot.active {
  background: var(--red);
  transform: scale(1.3);
}

/* 4 vidljive slike na desktop-u */
.gallery-thumb {
  flex: 0 0 calc(25% - 6px);
  scroll-snap-align: start;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 3 / 4;
  display: block;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
  pointer-events: none;
}

.gallery-thumb:hover img {
  transform: scale(1.04);
}

/* 3 vidljive slike na tabletu */
@media (max-width: 991.98px) {
  .gallery-thumb {
    flex: 0 0 calc(33.333% - 6px);
  }
}

/* 1 vidljiva slika na mobilnom */
@media (max-width: 575.98px) {
  .gallery-thumb {
    flex: 0 0 calc(100% - 0px);
  }
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
footer {
  padding: 60px 0 0;
}

.footer-logo img {
  width: 115px;
  height: auto;
}

.footer-desc {
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 14px;
}

.footer-legal {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 15px;
}

.footer-link-title {
  font-weight: 500;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 3px !important;
}

.footer-links a {
  font-size: 16px;
  color: var(--body-color);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--red);
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
}

.footer-contact-item svg {
  color: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item a,
.footer-contact-item span {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  line-height: 20px;
  color: var(--body-color);
}

.footer-contact-item a:hover {
  color: var(--red);
}

.hours-block-title {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.hours-block {
  font-size: 16px;
  line-height: 24px;
}

.map-placeholder {
  width: 100%;
  height: 200px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.07);
  margin: 40px 0 0;
}

.footer-bottom {
  padding: 18px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.footer-copy {
  font-size: 16px;
}

/* .map-wrap {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.map-wrap iframe {
  width: 100%;
  height: 460px;
  border: 0;
  margin-top: -60px;
} */

/******* Payment icons ******/

.payment-icons {
  display: flex;
  align-items: center;
  gap: 6px;
}

.pay-icon {
  padding: 4px 7px;
  border-radius: 3px;
  background: #f5f7f9;
  border: 1px solid rgb(230 230 230);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: default;
  transition: color 0.2s, border-color 0.2s;
}

.pay-icon:hover {
  color: var(--red);
}

/* DIVIDER */
.red-divider {
  width: 48px;
  height: 3px;
  background: var(--red);
  margin: 20px 0;
}

/* ANIMATE */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  animation: fadeUp .7s ease both;
}

.delay-1 {
  animation-delay: .1s;
}

.delay-2 {
  animation-delay: .22s;
}

.delay-3 {
  animation-delay: .34s;
}

.delay-4 {
  animation-delay: .46s;
}

.delay-5 {
  animation-delay: .58s;
}


/* SCROLL TO TOP */
#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;

  width: 52px;
  height: 52px;

  border: none;
  background: transparent;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

#scrollTopBtn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Strelica */
.arrow-up {
  position: absolute;
  width: 26px;
  height: 26px;
  fill: #666;
  /* siva */
  z-index: 2;
}

/* Krug */
.progress-ring {
  transform: rotate(-90deg);
}

.progress-ring__bg {
  fill: none;
  stroke: #ddd;
  /* svetlo siva */
  stroke-width: 3;
}

.progress-ring__circle {
  fill: none;
  stroke: #c8102e;
  stroke-width: 3;
  stroke-linecap: round;

  stroke-dasharray: 138;
  stroke-dashoffset: 138;
  transition: stroke-dashoffset 0.2s linear;
}


/* ══════════════════════════════
   HERO ZA SINGLE STRANICE
══════════════════════════════ */
.hero-single.poliranje-a {
  background-image: url('/assets/img/eksterijer/poliranje-automobila-novi-sad-porsche-911-turbo-dizalica-laserwash-rumenka.webp');
}

.hero-single.k-zastita {
  background-image: url('/assets/img/eksterijer/keramicka-zastita-automobila-novi-sad-crni-porsche-cayenne-ic-lampa-laserwash-rumenka.webp');
  background-position: right center;
}

.hero-single.beskontaktno {
  background-image: url('/assets/img/beskontaktna-laserska-perionica-sivi-porsche-cayenne-leisuwash-laserwash-rumenka.webp');
  background-position: right center;
}

.hero-single.uklanjanje-d {
  background-image: url('/assets/img/enterijer/uklanjanje-mirisa-duvana-iz-automobila-pusenje-u-autu-laserwash-rumenka.webp');
  background-position: 33% center;
}

.hero-single.dezinfekcija-d {
  background-image: url('/assets/img/enterijer/dezinfekcija-auto-klime-ozonom-novi-sad-ozon-ventilacija-enterijer-laserwash-rumenka.webp');
}

@media (max-width: 768px) {
  .hero-single.k-zastita {
    background-image: url('/assets/img/eksterijer/mob/keramicka-zastita-automobila-novi-sad-crni-porsche-cayenne-ic-lampa-laserwash-rumenka.webp');
  }

  .hero-single.poliranje-a {
    background-image: url('/assets/img/eksterijer/mob/poliranje-automobila-novi-sad-porsche-911-turbo-dizalica-laserwash-rumenka.webp');
  }

  .hero-single.odrzavanje-kz {
    background-position: 65% center;
  }

  .hero-single.poliranje-f {
    background-image: url('/assets/img/eksterijer/mob/poliranje-farova-novi-sad-masinsko-brusenje-laserwash-rumenka.webp') !important;
  }

  .hero-single.dubinsko {
    background-image: url('/assets/img/enterijer/mob/dubinsko-pranje-automobila-novi-sad-aston-martin-vantage-enterijer-laserwash-rumenka.webp') !important;
  }

  .hero-single.alcantara {
    background-image: url('/assets/img/enterijer/mob/ciscenje-koze-alcantare-automobila-aston-martin-dbx-kozna-sedista-laserwash-rumenka.webp') !important;
  }

  .hero-single.uklanjanje-d {
    background-image: url('/assets/img/enterijer/mob/uklanjanje-mirisa-duvana-iz-automobila-pusenje-u-autu-laserwash-rumenka.webp') !important;
    background-position: center;
  }

  .hero-single.dezinfekcija-d {
    background-position: 70% center;
  }

  .hero-single.beskontaktno {
    background-image: url('/assets/img/beskontaktna-laserska-perionica-sivi-porsche-cayenne-leisuwash-laserwash-rumenka-mob.webp');
  }

  .hero-single.dezinfekcija-d {
    background-image: url('/assets/img/enterijer/mob/dezinfekcija-auto-klime-ozonom-novi-sad-ozon-ventilacija-enterijer-laserwash-rumenka.webp');
    background-position: center;
  }
}


/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (min-width: 1024px) {
  .img-wrapper.mobileonly {
    display: none;
  }
}

@media (max-width: 1024px) {
  .img-wrapper.pconly {
    display: none;
  }
}

@media (max-width: 991px) {
  .navbar-logo img {
    width: 100px;
  }

  .nav-inner {
    align-items: center;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .hero-stats {
    gap: 20px;
  }

  .hero {
    height: 100dvh;
  }

  .hero-single {
    min-height: calc(100dvh - 110px);
    margin-top: 110px;
  }

  section {
    padding: 40px 0;
  }

  .contact-card {
    margin-top: 20px;
  }

  .img-wrapper.mobileonly {
    max-width: 250px;
    margin: 10px auto 15px;
  }
}

@media (max-width: 768px) {

  section {
    padding: 25px 0;
  }

  .stat-divider {
    display: none;
  }

  /* Hero centriranje sadrzaja */
  .hero {
    align-items: center;
    overflow: hidden;
    height: calc(100vh - 110px);
    padding: 0px;
    padding-bottom: 10px;
    margin-top: 110px;
  }

  .hero-bg {
    background-image:
      /* LEVI GLAVNI SHADOW */
      linear-gradient(to right,
        rgb(0 0 0 / 50%) 0%,
        rgb(0 0 0 / 50%) 20%,
        rgb(0 0 0 / 55%) 40%,
        rgb(0 0 0 / 35%) 60%,
        rgb(0 0 0 / 20%) 75%,
        rgb(0 0 0 / 0%) 100%),

      /* DONJI FADE (za tekst i dugmad) */
      linear-gradient(to top,
        rgb(0 0 0 / 40%) 0%,
        rgb(0 0 0 / 25%) 35%,
        rgb(0 0 0 / 10%) 70%),

      /* BLAGI GLOBALNI TINT (da ubije svetlo iz garaže) */
      linear-gradient(rgb(0 0 0 / 0%),
        rgb(0 0 0 / 15%)),

      /* SLIKA */
      url("../img/laserwash-rumenka-detailing-studio-bmw-m3-ferrari-458.webp");

    background-position: 76% center;
  }

  .hero-content {
    text-align: center;
  }

  .hero-sub {
    max-width: 100%;
  }

  .hero-content h1 span {
    display: inline-block;
  }

  .hero-content .stat-num {
    font-size: 1.5rem;
  }

  .hero-stats {
    margin-bottom: 20px;
    align-items: center;
    justify-content: center;
  }

  .hero-stats .stat-item.stars .stat-num {
    font-size: 20px;
    line-height: 24px;
  }

  .gyeon-badge {
    padding: 5px 20px;
    text-align: left;
    margin-top: 10px;
  }

  .gyeon-badge img {
    width: 80px;
    height: auto;
  }

  .gyeon-badge-text {
    font-size: 16px;
    line-height: 16px;
  }

  #eksterijer .row.mt-4 {
    margin-top: 0px !important;
  }

  .service-card {
    gap: 8px;
  }

  .usluge-card .service-card {
    gap: 11px;
    padding: 20px 18px 20px 13px;
  }

  .service-card-number {
    font-size: 2rem;
  }

  .founder-block {
    padding: 30px 0px;
  }

  .faq-section .text-center.mb-5 {
    margin-bottom: 0px !important;
  }

  .padding-section {
    padding-bottom: 20px;
  }

  .contact-card {
    padding: 25px;
  }

  .contact-card .btn-cta,
  .contact-card .btn-outline-dark {
    width: 100%;
    justify-content: center;
  }

  .infobox {
    margin: 5px 0;
  }

  .faq-item:first-of-type {
    margin-top: 10px;
  }

  .top-bar-inner {
    justify-content: space-between;
  }

  .partners {
    padding: 25px 0;
  }

  .btn-cta {
    font-size: 13px;
    padding: 11px 30px;
  }

  .btn-outline-dark {
    font-size: 13px;
    padding: 8px 30px;
  }

  .feat-block {
    max-height: 300px;
  }

  footer {
    padding: 30px 0 0;
  }

  .footer-logo img {
    margin-bottom: 15px;
  }

  .with-pm-t .proc-item {
    flex-direction: column;
  }
}

/*** EMBED VIDEO ***/

/* .shorts-fullscreen {
  width: 100%;
  height: 600px;
  overflow: hidden;
  position: relative;
}

.shorts-fullscreen iframe {
  position: absolute;

  width: 140%;
  height: 140%;

  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);
  border: 0;

  pointer-events: none;
} */

.laserwash-shorts-wrapper {
  position: relative;
  width: 100%;
  max-width: 350px;
  /* Ovo sprečava da video bude preogroman na monitoru */
  margin: 0 auto;
  /* Centrira video na stranici */
  aspect-ratio: 9 / 16;
  /* Forsira vertikalni format bez crnih traka */
}

.laserwash-shorts-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  /* Dodaje blago zaobljene ivice za premium izgled */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  /* Suptilna senka da ga odvoji od pozadine */
}

.boxes-with-shadow {
  border: 1px solid #80808042;
  border-radius: 9px;
  margin: 10px auto;
  padding-bottom: 19px;
  background: #fff;
}

.pricing-sec tr {
  text-align: left;
}


/* ══════════════════════════════
   BLOG SINGLE - MINIMAL REFINEMENT
   Dodato za urednije blog postove
══════════════════════════════ */

section.single-post {
  background: #f5f7f9;
  padding: 50px 0 60px;
}

.single-post .container,
.blog-post-container,
.blog-content,
.article-content,
.post-content {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.single-post h2,
.blog-content h2,
.article-content h2,
.post-content h2 {
  margin: 50px 0 25px;
  /*font-size: clamp(1.55rem, 3vw, 2rem);
  line-height: 1.2;*/
  font-weight: 700;
}

.single-post h3,
.blog-content h3,
.article-content h3,
.post-content h3 {
  margin: 42px 0 18px;
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  line-height: 1.25;
  font-weight: 700;
}

.single-post p,
.blog-content p,
.article-content p,
.post-content p {
  margin-bottom: 20px;
  line-height: 1.5;
}

.single-post ul,
.blog-content ul,
.article-content ul,
.post-content ul {
  margin: 18px 0 26px;
  padding-left: 22px;
}

.single-post li,
.blog-content li,
.article-content li,
.post-content li {
  margin-bottom: 12px;
  /*line-height: 1.75;*/
}

.single-post img,
.blog-content img,
.article-content img,
.post-content img {
  display: block;
  width: 85%;
  max-width: 850px;
  height: auto;
  margin: 50px auto;
  border-radius: 10px;
}

.single-post figure {
  margin: 50px auto;
}

.single-post figure img {
  margin: 0 auto;
}

.single-post figcaption {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--muted);
  text-align: center;
}

/* Blagi boxovi u tekstu */
.info-box,
.highlight-box,
.warning-box,
.article-note,
.tip-box,
.article-summary {
  background: #ffffff;
  border: 1px solid var(--border);
  border-left: 3px solid #d9d9d9;
  padding: 24px 28px;
  margin: 42px 0;
  border-radius: 10px;
}

.info-box p:last-child,
.highlight-box p:last-child,
.warning-box p:last-child,
.article-note p:last-child,
.article-summary p:last-child {
  margin-bottom: 0;
}

/* Povezani sadržaj */
.related-content,
.related-posts {
  margin-top: 70px;
  padding-top: 42px;
  border-top: 1px solid var(--border);
}

.related-content h2,
.related-posts h2 {
  margin-top: 0;
  margin-bottom: 28px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.related-post,
.related-card {
  display: block;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
  color: var(--body-color);
  text-decoration: none;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.related-post:hover,
.related-card:hover {
  color: var(--body-color);
  border-color: #d7d7d7;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .04);
}

.related-post h3,
.related-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.3;
}

.related-post p,
.related-card p {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

.related-post span,
.related-card span {
  font-size: 14px;
  font-weight: 600;
}

/* Donji CTA unutar posta */
.blog-cta,
.single-post-cta {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px;
  margin: 36px 0 0;
}

.blog-cta p:last-child,
.single-post-cta p:last-child {
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  .related-grid {
    grid-template-columns: 1fr;
  }

  .single-post img,
  .blog-content img,
  .article-content img,
  .post-content img {
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  section.single-post {
    padding: 25px 0 35px;
  }

  .single-post h2,
  .blog-content h2,
  .article-content h2,
  .post-content h2 {
    margin-top: 35px;
  }

  .info-box,
  .highlight-box,
  .warning-box,
  .article-note,
  .article-summary,
  .blog-cta,
  .single-post-cta {
    padding: 22px;
  }

  .single-post img,
  .blog-content img,
  .article-content img,
  .post-content img {
    margin: 30px auto;
  }
}

/* End of blog single refinements */
/* Blog pagination */
.blog-pagination {
  margin-top: 42px;
  display: flex;
  justify-content: center;
}

.blog-pagination-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
}

.blog-pagination-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.blog-pagination-list a:hover,
.blog-pagination-list a.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
/* Kontakt forma - validacija i anti-spam pomoćna polja */
.lw-hp-field {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.contact-form-card .invalid-feedback {
  display: block;
  min-height: 18px;
  margin-top: 5px;
  font-size: 13px;
  color: #c8102e;
}

.contact-form-card .form-control.is-invalid {
  border-color: #c8102e;
  box-shadow: 0 0 0 0.15rem rgba(200, 16, 46, 0.12);
}

.contact-form-status {
  min-height: 22px;
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1.4;
}

.contact-form-status.success {
  color: #1d7a38;
}

.contact-form-status.error {
  color: #c8102e;
}

.contact-form-card button[disabled] {
  opacity: 0.75;
  cursor: not-allowed;
}
