:root {
  --navy: #061d37;
  --navy-dark: #00152d;
  --gold: #c99132;
  --gold-light: #d7a143;
  --text: #071a35;
  --line: #dcc9aa;
  --white: #ffffff;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #fff;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(100%, var(--max));
  margin-inline: auto;
  padding-inline: 48px;
}

/* =========================
   HEADER I GLAVNI MENI
   ========================= */
.site-header {
  position: relative;
  z-index: 20;
  height: 142px;
  color: #fff;
  background: linear-gradient(100deg, var(--navy), var(--navy-dark));
  overflow: hidden;

  /* Tamni deo se završava blagom krivinom nagore u sredini. */
  clip-path: polygon(
    0 0,
    100% 0,
    100% 100%,
    95% 94%,
    90% 89%,
    85% 85%,
    80% 82%,
    75% 79%,
    70% 77%,
    65% 75%,
    60% 74%,
    55% 73%,
    50% 72%,
    45% 73%,
    40% 74%,
    35% 75%,
    30% 77%,
    25% 79%,
    20% 82%,
    15% 85%,
    10% 89%,
    5% 94%,
    0 100%
  );
}

.site-header::before,
.site-header::after {
  content: none !important;
  display: none !important;
}

.header-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: flex-start;
  gap: 25px;
  padding-top: 14px;
}

.brand {
  min-width: 190px;
  color: #fff;
  text-decoration: none;
  line-height: 1;
  width: 150px;
  height: 150px;
  flex-basis: 150px;
}

.brand img {
  width: 138px;
  height: 138px;
}

.brand-ib {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 46px;
  color: #d6a04a;
}

.brand-ib span {
  font-size: 19px;
  vertical-align: top;
}

.brand strong {
  display: block;
  margin-top: -5px;
  font-size: 24px;
  letter-spacing: 2px;
}

.brand small {
  display: block;
  margin-top: 7px;
  font-size: 11px;
  line-height: 1.25;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 27px;
  margin-left: auto;
  padding-top: 33px;
  white-space: nowrap;
}

.main-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: #dca84d;
}

.language-btn {
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  display: inline-grid;
  place-items: center;
  color: #fff;
  background: transparent;
  font-size: 15px;
  cursor: pointer;
}

.language-btn:hover,
.language-btn:focus-visible {
  color: var(--gold-light);
}

.gold-btn,
.navy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-radius: 4px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.gold-btn {
  background: linear-gradient(#d7a143, #bb7f1f);
}

.top-contact {
  width: 122px;
  height: 39px;
  margin-top: 17px;
  flex: 0 0 auto;
  font-size: 12px;
}

.top-contact span {
  font-size: 19px;
}

/* =========================
   HERO SEKCIJA
   ========================= */
.hero {
  position: relative;
  z-index: 1;
  height: 365px;
  margin-top: -42px;
  overflow: hidden;
  background: #fff;
}

.hero-photo {
  position: absolute;
  inset: 0 0 0 34%;
  background: url("assets/back.png") center center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    #fff 0%,
    #fff 31%,
    rgba(255, 255, 255, 0.94) 43%,
    rgba(255, 255, 255, 0.22) 61%,
    transparent 75%
  );
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  height: 100%;
}

.hero-copy {
  width: 370px;
  padding-top: 62px;
}

.hero h1 {
  margin: 0 0 8px;
  font-size: 49px;
  line-height: 1.02;
  letter-spacing: 1px;
}

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

.hero h2 {
  margin: 0 0 11px;
  font-size: 20px;
}

.hero p {
  width: 312px;
  margin: 0 0 8px;
  font-size: 12px;
  line-height: 1.55;
}

.navy-btn {
  padding: 11px 18px;
  background: linear-gradient(100deg, #061f3e, #00152d);
  font-size: 12px;
}

.navy-btn span {
  font-size: 21px;
  font-weight: 400;
}

/* =========================
   VREDNOSTI
   ========================= */
.values {
  padding: 13px 0 30px;
}

.section-heading {
  text-align: center;
}

.section-heading h2 {
  position: relative;
  display: inline-block;
  margin: 0 0 8px;
  font-size: 25px;
}

.section-heading h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 45px;
  height: 2px;
  transform: translateX(-50%);
  background: var(--gold);
}

.section-heading p {
  margin: 0;
  font-size: 14px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 12px;
}

.value-card {
  min-height: 212px;
  padding: 0 20px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.value-card:last-child {
  border-right: 0;
}

.line-icon,
.service-icon {
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cc8d22;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 45px;
}

.value-card h3 {
  margin: 5px 0 20px;
  font-size: 14px;
  line-height: 1.25;
}

.value-card p {
  margin: 0;
  font-size: 10.5px;
  line-height: 1.55;
}

/* =========================
   USLUGE
   ========================= */
.services {
  padding: 0 0 9px;
}

.compact h2 {
  font-size: 23px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.service-card {
  height: 222px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: center;
  border: 1px solid #dfc9a6;
  border-radius: 4px 4px 0 0;
  background: #fff;
}

.service-icon {
  height: 55px;
  font-size: 36px;
}

.service-card h3 {
  height: 54px;
  margin: 0;
  padding: 0 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  line-height: 1.25;
}

.service-card img {
  width: 100%;
  height: 120px;
  margin-top: auto;
  object-fit: cover;
}

.center {
  text-align: center;
}

.wide {
  min-width: 270px;
  margin-top: 13px;
  padding: 8px 22px;
}

/* =========================
   QUALITY SYSTEM
   ========================= */
.quality {
  height: 183px;
  display: grid;
  grid-template-columns: 34% 31% 35%;
  background: #f8f4ed;
}

.quality-left {
  color: #fff;
  background: linear-gradient(110deg, #08294a, #00152d);
  clip-path: polygon(0 0, 100% 0, 84% 100%, 0 100%);
}

.quality-copy {
  position: relative;
  padding: 18px 30px 10px 49px;
}

.shield {
  position: absolute;
  top: 18px;
  left: 49px;
  width: 48px;
  height: 53px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ca8b25;
  border: 3px solid #ca8b25;
  clip-path: polygon(50% 0, 100% 18%, 90% 75%, 50% 100%, 10% 75%, 0 18%);
  font-size: 24px;
}

.quality-copy h2 {
  margin: 0 0 11px 64px;
  font-size: 20px;
  line-height: 1.05;
}

.quality-copy p {
  width: 250px;
  margin: 0 0 3px;
  font-size: 10.5px;
  line-height: 1.42;
}

.quality-photo {
  background: url("assets/quality.jpg") center / cover no-repeat;
}

.quality-right {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 25px 10px 6px;
}

.quality-badge {
  width: 104px;
  height: 104px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  color: #b77917;
  border: 4px double #c98c28;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 700;
  transform: rotate(-5deg);
}

.quality-badge strong {
  font-size: 36px;
  line-height: 0.8;
}

.quality-right ul {
  flex: 1;
  margin: 0;
  padding: 0;
  list-style: none;
}

.quality-right li {
  position: relative;
  margin: 0 0 10px;
  padding-left: 24px;
  font-size: 10.5px;
}

.quality-right li::before {
  content: "✓";
  position: absolute;
  top: -3px;
  left: 0;
  width: 16px;
  height: 16px;
  color: #cc8b22;
  border: 1px solid #cc8b22;
  border-radius: 50%;
  text-align: center;
  line-height: 14px;
}

/* =========================
   POZIV NA AKCIJU
   ========================= */
.complaint {
  height: 133px;
  display: grid;
  grid-template-columns: 32% 38% 30%;
  background: #fff;
}

.bird-panel {
  background: url("assets/bird.jpg") center / cover no-repeat;
}

.complaint-copy {
  padding: 12px 16px;
}

.complaint-copy h2 {
  margin: 0 0 4px;
  font-size: 16px;
  line-height: 1.05;
}

.complaint-copy h3 {
  margin: 0 0 5px;
  color: #c48720;
  font-size: 15px;
}

.complaint-copy p {
  margin: 0;
  font-size: 10.5px;
  line-height: 1.35;
}

.complaint-action {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
}

.large {
  width: 100%;
  height: 43px;
  font-size: 12px;
}

/* =========================
   KONTAKT
   ========================= */
.contact {
  height: 400px;
  border-top: 1px solid #eee;
  background: #fafafa;
  margin-top: 20px;
}

.contact-grid {
  height: 100%;
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: center;
  gap: 30px;
}

.section-heading.left {
  text-align: center;
}

.section-heading.left h2 {
  font-size: 18px;
}

.section-heading.left p {
  margin-top: 6px;
  font-size: 11px;
}

.contact-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 9px;
}

.contact-items > div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-items span {
  color: #c98b25;
  font-size: 25px;
}

.contact-items p {
  margin: 0;
  font-size: 8.5px;
  line-height: 1.25;
}

.contact-form {
  padding: 8px 14px 10px;
  color: #fff;
  border-radius: 5px;
  background: #001a35;
  height: 150px;
  margin-top: 10px;
}

.contact-form h3 {
  margin: 0 0 5px;
  font-size: 11px;
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 20px;
  border: 0;
  font: inherit;
  font-size: 8px;
}

.contact-form textarea {
  height: 29px;
  margin-top: 4px;
  display: block;
  resize: none;
}

.contact-form button {
  width: 100%;
  margin-top: 4px;
  padding: 5px;
  color: #fff;
  border: 0;
  background: #cf983a;
  font-size: 9px;
  font-weight: 700;
  cursor: pointer;
}

/* =========================
   FOOTER
   ========================= */
/* =========================
   FOOTER
   ========================= */

.site-footer {
  color: #fff;
  background: linear-gradient(100deg, #061f3d, #00152d);
}

.footer-inner {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 0;
  padding-bottom: 6px;
}

/* Logo i tekst levo */

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo {
  width: 72px;
  height: 72px;
  flex: 0 0 95px;
  display: block;
  object-fit: contain;
  border-radius: 50%;
}

.footer-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.footer-text em {
  color: #d7a143;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  line-height: 1.2;
}

.footer-text strong {
  color: #fff;
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: 1.6px;
}

/* Društvene mreže desno */

.socials {
  display: flex;
  align-items: center;
  gap: 17px;
}

.socials a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;

  color: #d7a143;
  border: 1px solid #d7a143;
  border-radius: 50%;

  background: transparent;
  text-decoration: none;
  font-size: 18px;

  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.socials a:hover {
  color: #061d37;
  background: #d7a143;
  transform: translateY(-3px);
}

/* Donji copyright red */

.footer-bottom {
  border-top: 1px solid rgba(215, 161, 67, 0.8);
  padding: 5px 20px;
}

.copyright {
  margin: 0;
  padding: 0;
  color: #fff;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 10px;
  letter-spacing: 0.4px;
}

/* Tablet */

@media (max-width: 900px) {
  .footer-inner {
    min-height: auto;
    flex-direction: column;
    text-align: center;
    padding-top: 25px;
    padding-bottom: 25px;
  }

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

  .footer-text {
    align-items: center;
  }
}

/* Mobilni */

@media (max-width: 540px) {
  .footer-logo {
    width: 78px;
    height: 78px;
    flex-basis: 78px;
  }

  .footer-text em {
    font-size: 16px;
  }

  .footer-text strong {
    font-size: 9px;
  }

  .socials a {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  .copyright {
    font-size: 11px;
  }
}

.socials a {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: #c38a2d;
  text-decoration: none;
  font-weight: 700;
}

/* ==========================
   REFERENCE
========================== */
.references {
  padding: 70px 0;
  background: #f8f4ed;
  margin-top: 30px;
}
.reference-slider {
  overflow: hidden;
  width: 100%;
  margin-top: 40px;
}

.reference-track {
  display: flex;
  transition: transform 0.7s ease;
}

.reference-card {
  min-width: 33.333%;
  padding: 35px;
  box-sizing: border-box;

  background: #fff;
  border-left: 4px solid var(--gold);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.reference-card p {
  font-style: italic;
  line-height: 1.8;
}

.reference-card span {
  display: block;
  margin-top: 20px;
  font-weight: bold;
  color: var(--navy);
}

/* =========================
   TABLET
   ========================= */
@media (max-width: 1050px) {
  .container {
    padding-inline: 28px;
  }

  .main-nav {
    gap: 17px;
  }

  .main-nav a {
    font-size: 10px;
  }
}

@media (max-width: 900px) {
  .site-header {
    height: auto;
    min-height: 150px;
    padding-bottom: 25px;
  }

  .site-header::after {
    bottom: -17px;
    height: 34px;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 0;
    gap: 16px;
  }

  .top-contact {
    margin-left: auto;
  }

  .hero {
    height: 460px;
  }

  .hero-photo {
    inset: 165px 0 0;
  }

  .hero::after {
    background: linear-gradient(
      180deg,
      #fff 0%,
      #fff 37%,
      rgba(255, 255, 255, 0.2) 62%,
      transparent 78%
    );
  }

  .hero-copy {
    width: 100%;
    padding-top: 30px;
  }

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

  .value-card {
    border-bottom: 1px solid var(--line);
  }

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

  .quality {
    height: auto;
    grid-template-columns: 1fr;
  }

  .quality-left {
    clip-path: none;
  }

  .quality-photo {
    height: 220px;
  }

  .complaint {
    height: auto;
    grid-template-columns: 1fr;
  }

  .bird-panel {
    height: 180px;
  }

  .contact {
    height: auto;
    padding: 20px 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

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

/* =========================
   MOBILNI
   ========================= */
@media (max-width: 540px) {
  .container {
    padding-inline: 18px;
  }

  .brand {
    min-width: 145px;
  }

  .brand-ib {
    font-size: 38px;
  }

  .brand strong {
    font-size: 19px;
  }

  .top-contact {
    width: 105px;
  }

  .hero {
    height: 475px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-copy,
  .hero p {
    width: 100%;
  }

  .value-grid {
    grid-template-columns: 1fr;
  }

  .value-card {
    border-right: 0;
  }

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

  .contact-items {
    grid-template-columns: 1fr;
  }

  .quality-right {
    flex-direction: column;
  }

  .complaint-action {
    padding: 15px;
  }

  .footer-inner {
    padding-inline: 15px;
  }

  .footer-inner em {
    font-size: 11px;
  }
}

/* =========================================================
   FINALNI HEADER, LOGO I HERO SA BELOM LEVOM POZADINOM
   ========================================================= */

.site-header {
  position: relative;
  z-index: 20;
  height: 230px;
  color: #fff;
  background: #061d37;
  overflow: hidden;

  /* Široka i blaga kriva, kao na referentnoj slici. */
  clip-path: polygon(
    0 0,
    100% 0,
    100% 82%,
    94% 84%,
    88% 87%,
    82% 90%,
    76% 93%,
    70% 95%,
    64% 97%,
    58% 99%,
    50% 100%,
    42% 99%,
    36% 97%,
    30% 95%,
    24% 93%,
    18% 90%,
    12% 87%,
    6% 84%,
    0 82%
  );
}

.site-header::before,
.site-header::after {
  content: none !important;
  display: none !important;
}

.header-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding-top: 2px;
}

/* Logo je prikazan ceo, uključujući tekst ispod kruga. */
.brand {
  position: relative;
  z-index: 5;
  width: 218px;
  min-width: 218px;
  height: 218px;
  flex: 0 0 218px;
  margin: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: visible;
  line-height: normal;
  text-decoration: none;
}

.brand img {
  display: block;
  width: 190px;
  height: 218px;
  max-width: none;
  object-fit: contain;
  object-position: center top;
  border: 0;
  border-radius: 0;
  background: transparent;
  filter: none;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-left: auto;
  padding-top: 61px;
  white-space: nowrap;
}

.main-nav a {
  color: #fff;
  font-size: 11px;
}

.main-nav .language-btn {
  width: 28px;
  height: 28px;
  padding: 0;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
}

.top-contact {
  margin-top: 45px;
}

/* =========================================================
   HERO — BELA POZADINA IZA "VIŠE OD ČIŠĆENJA"
   ========================================================= */

.hero {
  position: relative;
  z-index: 1;
  height: 365px;
  margin-top: -42px;
  overflow: hidden;
  background: #ffffff;
}

/* Fotografija počinje tek sa desne strane. */
.hero-photo {
  position: absolute;
  inset: 0 0 0 42%;
  background: url("assets/back.png") center center / cover no-repeat;
}

/*
  Ovaj sloj zadržava potpuno belu pozadinu ispod naslova
  i pravi blag prelaz ka fotografiji.
*/
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    #ffffff 0%,
    #ffffff 39%,
    rgba(255, 255, 255, 0.98) 45%,
    rgba(255, 255, 255, 0.86) 52%,
    rgba(255, 255, 255, 0.4) 62%,
    rgba(255, 255, 255, 0.08) 72%,
    transparent 80%
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  height: 100%;
}

.hero-copy {
  width: 370px;
  padding-top: 67px;
}

.hero h1 {
  color: var(--text);
}

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

.hero h2,
.hero p {
  color: var(--text);
}

/* Tablet */
@media (max-width: 1050px) {
  .site-header {
    height: 220px;
  }

  .brand {
    width: 198px;
    min-width: 198px;
    height: 208px;
    flex-basis: 198px;
  }

  .brand img {
    width: 177px;
    height: 205px;
  }

  .main-nav {
    gap: 15px;
    padding-top: 57px;
  }

  .main-nav a {
    font-size: 9px;
  }

  .top-contact {
    width: 108px;
    margin-top: 41px;
  }

  .hero-photo {
    inset: 0 0 0 46%;
  }
}

/* Uži ekran: logo ostaje ceo, meni prelazi u drugi red. */
@media (max-width: 900px) {
  .site-header {
    height: auto;
    min-height: 302px;
    padding-bottom: 26px;
    overflow: visible;
    clip-path: none;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .brand {
    width: 195px;
    min-width: 195px;
    height: 208px;
    flex-basis: 195px;
  }

  .brand img {
    width: 178px;
    height: 205px;
  }

  .top-contact {
    margin-top: 53px;
    margin-left: auto;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 0;
  }

  .hero {
    height: 460px;
    margin-top: 0;
  }

  .hero-photo {
    inset: 170px 0 0;
  }

  .hero::after {
    background: linear-gradient(
      180deg,
      #ffffff 0%,
      #ffffff 37%,
      rgba(255, 255, 255, 0.2) 63%,
      transparent 80%
    );
  }

  .hero-copy {
    width: 100%;
    padding-top: 30px;
  }
}

@media (max-width: 540px) {
  .site-header {
    min-height: 370px;
  }

  .header-inner {
    justify-content: center;
  }

  .brand {
    width: 100%;
    min-width: 100%;
    height: 220px;
    flex-basis: 100%;
  }

  .brand img {
    width: 190px;
    height: 218px;
  }

  .top-contact {
    margin: 0;
  }

  .hero {
    height: 475px;
  }

  .hero-copy {
    padding-top: 30px;
  }
}

/* =========================================================
   KOMPAKTNI HEADER:
   VIŠI KOD LOGOTIPA, NIŽI ISPOD MENIJA
   ========================================================= */

.site-header {
  position: relative;
  z-index: 20;
  height: 225px;
  color: #fff;
  background: #061d37;
  overflow: hidden;

  /*
    Leva strana ostaje dublja zbog logotipa.
    Ispod menija se tamnoplava zona podiže,
    pa nema velikog praznog prostora.
  */
  clip-path: polygon(
    0 0,
    100% 0,
    100% 66%,
    94% 68%,
    88% 70%,
    82% 72%,
    76% 74%,
    70% 76%,
    64% 78%,
    58% 80%,
    52% 82%,
    46% 84%,
    40% 86%,
    34% 88%,
    28% 91%,
    22% 94%,
    16% 97%,
    10% 99%,
    5% 100%,
    0 100%
  );
}

.site-header::before,
.site-header::after {
  content: none !important;
  display: none !important;
}

.header-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding-top: 2px;
}

/* Logo ostaje ceo i ima dovoljno prostora sa leve strane. */
.brand {
  position: relative;
  z-index: 5;
  width: 218px;
  min-width: 218px;
  height: 218px;
  flex: 0 0 218px;
  margin: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: visible;
  text-decoration: none;
}

.brand img {
  display: block;
  width: 190px;
  height: 218px;
  max-width: none;
  object-fit: contain;
  object-position: center top;
  border: 0;
  border-radius: 0;
  background: transparent;
  filter: none;
}

/* Meni je bliže donjoj krivoj. */
.main-nav {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-left: auto;
  padding-top: 48px;
  white-space: nowrap;
}

.main-nav a {
  color: #fff;
  font-size: 11px;
}

.main-nav .language-btn {
  width: 28px;
  height: 28px;
  padding: 0;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
}

.top-contact {
  margin-top: 32px;
}

/* Hero ide više nagore ispod menija. */
.hero {
  position: relative;
  z-index: 1;
  height: 365px;
  margin-top: -74px;
  overflow: hidden;
  background: #fff;
}

/* Leva pozadina ostaje bela. */
.hero-photo {
  position: absolute;
  inset: 0 0 0 42%;
  background: url("assets/back.png") center center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    #ffffff 0%,
    #ffffff 39%,
    rgba(255, 255, 255, 0.98) 45%,
    rgba(255, 255, 255, 0.86) 52%,
    rgba(255, 255, 255, 0.4) 62%,
    rgba(255, 255, 255, 0.08) 72%,
    transparent 80%
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  height: 100%;
}

.hero-copy {
  width: 370px;
  padding-top: 98px;
}

.hero h1 {
  color: var(--text);
}

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

.hero h2,
.hero p {
  color: var(--text);
}

/* Tablet */
@media (max-width: 1050px) {
  .site-header {
    height: 215px;
  }

  .brand {
    width: 198px;
    min-width: 198px;
    height: 208px;
    flex-basis: 198px;
  }

  .brand img {
    width: 177px;
    height: 205px;
  }

  .main-nav {
    gap: 15px;
    padding-top: 45px;
  }

  .main-nav a {
    font-size: 9px;
  }

  .top-contact {
    width: 108px;
    margin-top: 29px;
  }

  .hero {
    margin-top: -66px;
  }

  .hero-copy {
    padding-top: 90px;
  }

  .hero-photo {
    inset: 0 0 0 46%;
  }
}

/* Uži ekran: vraćamo standardan raspored da sve ostane čitljivo. */
@media (max-width: 900px) {
  .site-header {
    height: auto;
    min-height: 302px;
    padding-bottom: 26px;
    overflow: visible;
    clip-path: none;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .brand {
    width: 195px;
    min-width: 195px;
    height: 208px;
    flex-basis: 195px;
  }

  .brand img {
    width: 178px;
    height: 205px;
  }

  .top-contact {
    margin-top: 53px;
    margin-left: auto;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 0;
  }

  .hero {
    height: 460px;
    margin-top: 0;
  }

  .hero-photo {
    inset: 170px 0 0;
  }

  .hero::after {
    background: linear-gradient(
      180deg,
      #ffffff 0%,
      #ffffff 37%,
      rgba(255, 255, 255, 0.2) 63%,
      transparent 80%
    );
  }

  .hero-copy {
    width: 100%;
    padding-top: 30px;
  }
}

@media (max-width: 540px) {
  .site-header {
    min-height: 370px;
  }

  .header-inner {
    justify-content: center;
  }

  .brand {
    width: 100%;
    min-width: 100%;
    height: 220px;
    flex-basis: 100%;
  }

  .brand img {
    width: 190px;
    height: 218px;
  }

  .top-contact {
    margin: 0;
  }

  .hero {
    height: 475px;
  }

  .hero-copy {
    padding-top: 30px;
  }
}

/* =========================================================
   VIŠA HERO SEKCIJA — "VIŠE OD ČIŠĆENJA" + FOTOGRAFIJA
   ========================================================= */

/* Desktop: povećana visina cele sekcije zajedno sa slikom. */
.hero {
  height: 430px;
}

/* Tekst ostaje lepo poravnat u višoj sekciji. */
.hero-copy {
  padding-top: 112px;
}

/* Fotografija automatski zauzima celu novu visinu hero sekcije. */
.hero-photo {
  top: 0;
  bottom: 0;
}

/* Tablet */
@media (max-width: 1050px) {
  .hero {
    height: 410px;
  }

  .hero-copy {
    padding-top: 102px;
  }
}

/* Uži tablet */
@media (max-width: 900px) {
  .hero {
    height: 520px;
  }

  .hero-photo {
    inset: 185px 0 0;
  }

  .hero-copy {
    padding-top: 34px;
  }
}

/* Mobilni */
@media (max-width: 540px) {
  .hero {
    height: 545px;
  }

  .hero-photo {
    inset: 210px 0 0;
  }
}

/* ==================================================
   UMERENO POVEĆANI RAZMACI IZMEĐU SEKCIJA
   (bez izmene headera i hero sekcije)
   ================================================== */

.values,
#vrednosti {
  padding-top: 85px !important;
  padding-bottom: 85px !important;
}

.services,
#usluge {
  padding-top: 90px !important;
  padding-bottom: 95px !important;
}

.services .cards,
.service-grid {
  margin-top: 32px !important;
  row-gap: 28px !important;
}

.quality,
#quality {
  padding-top: 90px !important;
  padding-bottom: 90px !important;
}

.complaint,
.reclamation {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

.contact,
#kontakt {
  padding-top: 90px !important;
  padding-bottom: 90px !important;
}

.contact-grid {
  margin-top: 36px !important;
  gap: 42px !important;
}

.site-footer,
footer {
  padding-top: 55px !important;
  padding-bottom: 55px !important;
}

/* ==================================================
   MANJA KRIVA I MANJE PLAVOG PROSTORA ISPOD HEADERA
   ================================================== */

/* Smanjena visina headera */
.site-header {
  height: 205px !important;

  /* Kriva ide više, posebno ispod menija,
       ali i ispod logotipa ima manje plavog prostora. */
  clip-path: polygon(
    0 0,
    100% 0,
    100% 70%,
    92% 72%,
    84% 74%,
    76% 76%,
    68% 79%,
    60% 82%,
    52% 85%,
    44% 88%,
    36% 91%,
    28% 94%,
    20% 97%,
    10% 99%,
    0 100%
  ) !important;
}

/* Logo ostaje velik, ali bliže donjoj ivici */
.brand {
  height: 205px !important;
}

.brand img {
  height: 205px !important;
}

/* Meni malo više */
.main-nav {
  padding-top: 42px !important;
}

.top-contact {
  margin-top: 26px !important;
}

/* Hero dolazi malo više ispod krive */
.hero {
  margin-top: -62px !important;
}

/* ==========================================
   UMERENI RAZMACI IZMEĐU SEKCIJA
   (manji od prethodne verzije)
   ========================================== */

.values,
#vrednosti {
  padding-top: 68px !important;
  padding-bottom: 68px !important;
}

.services,
#usluge {
  padding-top: 72px !important;
  padding-bottom: 76px !important;
}

.services .cards,
.service-grid {
  margin-top: 22px !important;
  row-gap: 22px !important;
}

.quality,
#quality {
  padding-top: 72px !important;
  padding-bottom: 72px !important;
}

.complaint,
.reclamation {
  padding-top: 65px !important;
  padding-bottom: 65px !important;
}

.contact,
#kontakt {
  padding-top: 72px !important;
  padding-bottom: 72px !important;
}

.contact-grid {
  margin-top: 26px !important;
  gap: 32px !important;
}

.site-footer,
footer {
  padding-top: 45px !important;
  padding-bottom: 45px !important;
}

/* ==========================================
   JOŠ KOMPAKTNIJI RAZMACI
   ========================================== */

/* Opšti naslovi sekcija */
section h2,
.section-title {
  margin-bottom: 18px !important;
}

/* Vrednosti */
.values,
#vrednosti {
  padding-top: 50px !important;
  padding-bottom: 52px !important;
}

/* Naše usluge */
.services,
#usluge {
  padding-top: 56px !important;
  padding-bottom: 60px !important;
}

.services .cards,
.service-grid {
  margin-top: 16px !important;
  row-gap: 18px !important;
}

/* Quality */
.quality,
#quality {
  padding-top: 56px !important;
  padding-bottom: 56px !important;
}

/* Reklamacije */
.complaint,
.reclamation {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

/* Kontakt */
.contact,
#kontakt {
  padding-top: 56px !important;
  padding-bottom: 56px !important;
}

.contact-grid {
  margin-top: 18px !important;
  gap: 24px !important;
}

/* Footer */
.site-footer,
footer {
  padding-top: 38px !important;
  padding-bottom: 38px !important;
}

/* ==================================================
   LOGO U QUALITY SEKCIJI — BEZ PLAVE POZADINE
   ================================================== */

.quality-logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 0 24px;
  text-align: center;
}

.quality-logo img {
  width: 210px;
  max-width: 82%;
  height: auto;
  display: block;
  object-fit: contain;
}

.quality-logo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 12px;
}

.quality-logo-text strong {
  color: #0b2340;
  font-size: 13px;
  line-height: 1.35;
  letter-spacing: 3px;
  font-weight: 600;
}

.quality-logo-text span {
  margin-top: 10px;
  color: #b67b2a;
  font-size: 11px;
  line-height: 1.6;
  letter-spacing: 2.4px;
}

@media (max-width: 900px) {
  .quality-logo img {
    width: 185px;
  }

  .quality-logo-text strong {
    font-size: 12px;
    letter-spacing: 2px;
  }

  .quality-logo-text span {
    font-size: 10px;
    letter-spacing: 1.7px;
  }
}

/* FINALNA IZMENA: bela pozadina, logo umesto bedža.
   Slika ptice i originalni tekst ispod prvog dela ostaju nepromenjeni. */

.quality,
.quality-right,
.complaint,
.complaint-copy,
.complaint-action {
  background-color: #ffffff;
}

.quality-badge {
  width: 150px;
  height: auto;
  flex: 0 0 150px;
  border: 0;
  border-radius: 0;
  background: #ffffff;
  transform: none;
  padding: 0;
  overflow: visible;
}

.quality-badge img {
  display: block;
  width: 150px;
  height: auto;
  object-fit: contain;
  background: #ffffff;
}

.bird-panel {
  display: block;
  min-height: 133px;
  background-image: url("assets/bird.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media (max-width: 900px) {
  .quality-badge {
    width: 135px;
    flex-basis: 135px;
  }

  .quality-badge img {
    width: 135px;
  }

  .bird-panel {
    min-height: 180px;
  }
}

/* Konačna ispravka visine footera */

.site-footer,
footer.site-footer {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.footer-inner {
  min-height: 70px;
  padding-top: 2px;
  padding-bottom: 2px;
}

.footer-bottom {
  padding: 4px 20px 2px;
}

.copyright {
  margin: 0;
  padding: 0;
  line-height: 1.2;
}

/* =========================================================
   MENI ZA IZBOR JEZIKA
   ========================================================= */

.language-switcher {
  position: relative;
  z-index: 100;
  display: inline-flex;
  align-items: center;
}

.language-switcher .language-btn {
  width: auto;
  min-width: 52px;
  height: 30px;
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #fff;
  border: 0;
  border-radius: 4px;
  background: transparent;
  font: inherit;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}

.language-switcher .language-btn:hover,
.language-switcher .language-btn:focus-visible,
.language-switcher.is-open .language-btn {
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.language-menu {
  position: absolute;
  top: calc(100% + 9px);
  right: 0;
  width: 150px;
  padding: 7px;
  display: none;
  gap: 3px;
  border: 1px solid rgba(201, 145, 50, 0.45);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 21, 45, 0.22);
}

.language-switcher.is-open .language-menu {
  display: grid;
}

.language-menu::before {
  content: "";
  position: absolute;
  top: -6px;
  right: 18px;
  width: 10px;
  height: 10px;
  background: #fff;
  border-top: 1px solid rgba(201, 145, 50, 0.45);
  border-left: 1px solid rgba(201, 145, 50, 0.45);
  transform: rotate(45deg);
}

.language-option {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 9px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  border: 0;
  border-radius: 4px;
  background: transparent;
  text-align: left;
  font: inherit;
  font-size: 12px;
  cursor: pointer;
}

.language-option span {
  width: 25px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
}

.language-option:hover,
.language-option:focus-visible,
.language-option.is-active {
  color: #fff;
  background: var(--navy);
  outline: none;
}

.language-option.is-active span {
  color: var(--gold-light);
}

@media (max-width: 900px) {
  .language-menu {
    right: 50%;
    transform: translateX(50%);
  }

  .language-menu::before {
    right: 50%;
    margin-right: -5px;
  }
}

/* =========================================================
   ISPRAVKA PADAJUĆEG MENIJA JEZIKA
   Meni se prikazuje izvan headera, pa više nije isečen krivom.
   ========================================================= */

.language-menu {
  position: fixed !important;
  top: 0;
  left: 0;
  right: auto !important;
  width: 160px;
  max-height: none !important;
  overflow: visible !important;
  display: none !important;
  z-index: 99999 !important;
  transform: none !important;
}

.language-menu.is-open {
  display: grid !important;
  gap: 3px;
}

.language-menu::before {
  display: none !important;
}

.language-option {
  min-height: 38px;
  flex: 0 0 auto;
}

@media (max-width: 900px) {
  .language-menu {
    right: auto !important;
    transform: none !important;
  }
}

/* =========================================================
   PET JEZIKA + ISPRAVKA ENGLESKE HERO SEKCIJE
   ========================================================= */

.language-menu {
  width: 172px !important;
  max-height: min(330px, calc(100vh - 20px)) !important;
  overflow-y: auto !important;
}

/* Engleski tekst je duži, pa mu ostavljamo dovoljno prostora
   da dugme "LEARN MORE ABOUT US" uvek ostane vidljivo. */
html[lang="en"] .hero-copy {
  width: 405px;
  padding-top: 96px;
}

html[lang="en"] .hero h1 {
  font-size: 45px;
  line-height: 1;
}

html[lang="en"] .hero h2 {
  font-size: 18px;
  line-height: 1.15;
}

html[lang="en"] .hero p {
  width: 360px;
  font-size: 11.5px;
  line-height: 1.42;
  margin-bottom: 6px;
}

html[lang="en"] .hero-copy .navy-btn {
  margin-top: 4px;
  padding: 9px 15px;
  font-size: 10px;
}

/* Francuski i italijanski takođe imaju nešto duže naslove. */
html[lang="fr"] .hero-copy,
html[lang="it"] .hero-copy {
  width: 400px;
}

html[lang="fr"] .hero h1,
html[lang="it"] .hero h1 {
  font-size: 46px;
}

html[lang="fr"] .hero p,
html[lang="it"] .hero p {
  width: 350px;
  font-size: 11.5px;
  line-height: 1.45;
}

html[lang="fr"] .hero-copy .navy-btn,
html[lang="it"] .hero-copy .navy-btn {
  padding: 9px 15px;
  font-size: 10px;
}

@media (max-width: 1050px) {
  html[lang="en"] .hero-copy,
  html[lang="fr"] .hero-copy,
  html[lang="it"] .hero-copy {
    width: 390px;
    padding-top: 88px;
  }

  html[lang="en"] .hero p,
  html[lang="fr"] .hero p,
  html[lang="it"] .hero p {
    width: 335px;
  }
}

@media (max-width: 900px) {
  html[lang="en"] .hero-copy,
  html[lang="fr"] .hero-copy,
  html[lang="it"] .hero-copy {
    width: 100%;
    padding-top: 30px;
  }

  html[lang="en"] .hero p,
  html[lang="fr"] .hero p,
  html[lang="it"] .hero p {
    width: 100%;
  }
}

/* =========================================================
   FLIP KARTICE — SEKCIJA VREDNOSTI
   ========================================================= */

#vrednosti .value-card {
  position: relative;
  min-height: 230px;
  padding: 0;
  border-right: 1px solid var(--line);
  perspective: 1000px;
  cursor: pointer;
  background: transparent;
  outline: none;
}

#vrednosti .value-card:last-child {
  border-right: 0;
}

#vrednosti .value-card-inner {
  position: relative;
  width: 100%;
  min-height: 230px;
  transition: transform 0.72s cubic-bezier(0.2, 0.75, 0.25, 1);
  transform-style: preserve-3d;
}

#vrednosti .value-card.is-flipped .value-card-inner {
  transform: rotateY(180deg);
}

#vrednosti .value-face {
  position: absolute;
  inset: 0;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 8px;
}

#vrednosti .value-front {
  color: var(--text);
  background: #ffffff;
}

#vrednosti .value-back {
  transform: rotateY(180deg);
  color: #ffffff;
  background: linear-gradient(145deg, var(--navy), var(--navy-dark));
  box-shadow: 0 12px 28px rgba(0, 21, 45, 0.18);
}

#vrednosti .value-front h3 {
  margin: 8px 0 16px;
}

#vrednosti .value-back-text {
  margin: 0;
  max-width: 240px;
  color: #ffffff;
  text-align: center;
  font-size: 12px;
  line-height: 1.65;
}

#vrednosti .flip-hint {
  margin-top: auto;
  color: var(--gold);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

#vrednosti .value-back .flip-hint {
  color: var(--gold-light);
}

#vrednosti .value-card:hover .value-front,
#vrednosti .value-card:focus-visible .value-front {
  box-shadow: 0 10px 26px rgba(0, 21, 45, 0.1);
}

#vrednosti .value-card:focus-visible {
  border-radius: 8px;
  box-shadow: 0 0 0 3px rgba(201, 145, 50, 0.35);
}

/* Na uređajima bez 3D podrške sadržaj ostaje čitljiv. */
@supports not (transform-style: preserve-3d) {
  #vrednosti .value-card-inner {
    transform: none !important;
  }

  #vrednosti .value-back {
    display: none;
    transform: none;
  }

  #vrednosti .value-card.is-flipped .value-front {
    display: none;
  }

  #vrednosti .value-card.is-flipped .value-back {
    display: flex;
  }
}

@media (max-width: 900px) {
  #vrednosti .value-card,
  #vrednosti .value-card-inner {
    min-height: 215px;
  }
}

@media (max-width: 540px) {
  #vrednosti .value-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  #vrednosti .value-card,
  #vrednosti .value-card-inner {
    min-height: 205px;
  }
}

/* =========================================================
   FINALNI RESPONSIVE SISTEM
   Desktop, laptop, tablet i mobilni uređaji
   ========================================================= */

.mobile-menu-toggle,
.menu-overlay {
  display: none;
}

/* Stabilniji izgled na svim ekranima */
body {
  overflow-x: hidden;
}

main,
section {
  max-width: 100%;
}

.contact > .container {
  height: 100%;
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  align-items: center;
  gap: 38px;
}

.reference-card {
  flex: 0 0 33.333333%;
  min-width: 33.333333%;
}

/* Laptop */
@media (max-width: 1180px) {
  .container {
    padding-inline: 28px;
  }

  .main-nav {
    gap: 14px !important;
  }

  .main-nav a {
    font-size: 9px !important;
  }

  .top-contact {
    width: 108px;
  }

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

  .service-card {
    height: 235px;
  }

  .reference-card {
    flex-basis: 50%;
    min-width: 50%;
  }
}

/* Tablet i mobilni meni */
@media (max-width: 900px) {
  .site-header {
    height: 108px !important;
    min-height: 108px !important;
    padding: 0 !important;
    overflow: visible !important;
    clip-path: none !important;
  }

  .header-inner {
    height: 108px !important;
    min-height: 108px;
    padding-top: 0 !important;
    display: flex;
    align-items: center !important;
    flex-wrap: nowrap !important;
    gap: 12px !important;
  }

  .brand {
    width: 92px !important;
    min-width: 92px !important;
    height: 100px !important;
    flex: 0 0 92px !important;
    justify-content: flex-start !important;
  }

  .brand img {
    width: 88px !important;
    height: 100px !important;
    object-fit: contain;
  }

  .top-contact {
    order: 2;
    width: 108px;
    height: 38px;
    margin: 0 54px 0 auto !important;
    font-size: 11px;
  }

  .mobile-menu-toggle {
    position: absolute;
    top: 34px;
    right: 24px;
    z-index: 10002;
    width: 38px;
    height: 38px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    color: #fff;
    border: 1px solid rgba(215, 161, 67, 0.7);
    border-radius: 5px;
    background: transparent;
    cursor: pointer;
  }

  .mobile-menu-toggle span {
    width: 100%;
    height: 2px;
    display: block;
    background: currentColor;
    transition:
      transform 0.25s ease,
      opacity 0.25s ease;
  }

  .mobile-menu-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .mobile-menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: fixed !important;
    top: 0;
    right: 0;
    z-index: 10001;
    width: min(360px, 88vw) !important;
    height: 100dvh;
    margin: 0 !important;
    padding: 100px 24px 30px !important;
    display: flex !important;
    flex-direction: column;
    align-items: stretch !important;
    justify-content: flex-start !important;
    flex-wrap: nowrap !important;
    gap: 4px !important;
    overflow-y: auto;
    background: linear-gradient(160deg, #061d37, #00152d);
    box-shadow: -18px 0 45px rgba(0, 0, 0, 0.28);
    transform: translateX(105%);
    transition: transform 0.3s ease;
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  .main-nav > a {
    width: 100%;
    min-height: 48px;
    padding: 13px 12px;
    display: flex;
    align-items: center;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px !important;
    letter-spacing: 0.4px;
  }

  .main-nav > a:hover,
  .main-nav > a:focus-visible {
    padding-left: 18px;
    color: var(--gold-light);
    background: rgba(255, 255, 255, 0.05);
  }

  .main-nav .language-switcher {
    width: 100%;
    margin-top: 10px;
  }

  .main-nav .language-btn {
    width: 100% !important;
    height: 46px !important;
    justify-content: flex-start !important;
    padding: 0 12px !important;
    border: 1px solid rgba(215, 161, 67, 0.45) !important;
  }

  .menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: block;
    visibility: hidden;
    opacity: 0;
    background: rgba(0, 15, 31, 0.62);
    transition:
      opacity 0.3s ease,
      visibility 0.3s ease;
  }

  .menu-overlay.is-visible {
    visibility: visible;
    opacity: 1;
  }

  body.menu-open {
    overflow: hidden;
  }

  /* Hero */
  .hero {
    height: auto !important;
    min-height: 590px;
    margin-top: 0 !important;
    padding-bottom: 0;
  }

  .hero-photo {
    inset: 270px 0 0 !important;
    min-height: 320px;
  }

  .hero::after {
    background: linear-gradient(
      180deg,
      #fff 0%,
      #fff 42%,
      rgba(255, 255, 255, 0.95) 47%,
      rgba(255, 255, 255, 0.35) 62%,
      transparent 76%
    ) !important;
  }

  .hero-inner {
    min-height: 590px;
  }

  .hero-copy,
  html[lang="en"] .hero-copy,
  html[lang="fr"] .hero-copy,
  html[lang="it"] .hero-copy {
    width: 100% !important;
    max-width: 560px;
    padding-top: 35px !important;
  }

  .hero p,
  html[lang="en"] .hero p,
  html[lang="fr"] .hero p,
  html[lang="it"] .hero p {
    width: 100% !important;
    max-width: 510px;
  }

  /* Sadržajne sekcije */
  .values,
  .services,
  .references {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .value-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 18px;
  }

  #vrednosti .value-card {
    border: 1px solid var(--line);
    border-radius: 8px;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px;
  }

  .quality {
    height: auto !important;
    grid-template-columns: 1fr !important;
  }

  .quality-left {
    min-height: 255px;
    clip-path: none !important;
  }

  .quality-copy {
    max-width: 620px;
    margin: auto;
    padding: 34px 28px;
  }

  .quality-copy p {
    width: auto !important;
    max-width: 520px;
    font-size: 12px;
  }

  .quality-photo {
    height: 300px !important;
  }

  .quality-right {
    min-height: 250px;
    justify-content: center;
    padding: 30px 28px;
  }

  .complaint {
    height: auto !important;
    grid-template-columns: 1fr !important;
  }

  .bird-panel {
    height: 250px !important;
  }

  .complaint-copy {
    padding: 30px 28px;
  }

  .complaint-action {
    padding: 0 28px 34px !important;
  }

  .references {
    padding-inline: 0;
  }

  .reference-card {
    flex-basis: 50%;
    min-width: 50%;
  }

  .contact {
    height: auto !important;
    padding: 45px 0 !important;
  }

  .contact > .container {
    height: auto;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-items {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px;
  }

  .contact-form {
    width: 100%;
    max-width: 620px;
    height: auto !important;
    margin: 0 auto;
    padding: 24px;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 14px;
    font-size: 13px;
  }

  .contact-form textarea {
    height: 110px;
  }

  .contact-form button {
    min-height: 42px;
    font-size: 11px;
  }

  .footer-inner {
    min-height: auto !important;
    padding: 20px 28px !important;
    flex-direction: row !important;
    text-align: left !important;
  }

  .footer-brand {
    flex-direction: row !important;
  }

  .footer-text {
    align-items: flex-start !important;
  }
}

/* Telefon */
@media (max-width: 600px) {
  .container {
    padding-inline: 18px !important;
  }

  .site-header,
  .header-inner {
    height: 92px !important;
    min-height: 92px !important;
  }

  .brand {
    width: 76px !important;
    min-width: 76px !important;
    height: 88px !important;
    flex-basis: 76px !important;
  }

  .brand img {
    width: 74px !important;
    height: 88px !important;
  }

  .top-contact {
    width: 92px;
    height: 34px;
    margin-right: 48px !important;
    font-size: 9px;
  }

  .top-contact span {
    display: none;
  }

  .mobile-menu-toggle {
    top: 27px;
    right: 14px;
    width: 36px;
    height: 36px;
  }

  .main-nav {
    width: min(330px, 92vw) !important;
    padding-top: 88px !important;
  }

  .hero {
    min-height: 610px;
  }

  .hero-photo {
    inset: 315px 0 0 !important;
    min-height: 295px;
    background-position: center;
  }

  .hero-inner {
    min-height: 610px;
  }

  .hero h1,
  html[lang="en"] .hero h1,
  html[lang="fr"] .hero h1,
  html[lang="it"] .hero h1 {
    font-size: clamp(35px, 11vw, 44px) !important;
  }

  .hero h2,
  html[lang="en"] .hero h2 {
    font-size: 17px !important;
  }

  .hero p,
  html[lang="en"] .hero p,
  html[lang="fr"] .hero p,
  html[lang="it"] .hero p {
    font-size: 11px !important;
    line-height: 1.45 !important;
  }

  .navy-btn {
    min-height: 40px;
    font-size: 10px;
  }

  .section-heading h2 {
    font-size: 23px;
  }

  .value-grid {
    grid-template-columns: 1fr !important;
  }

  #vrednosti .value-card,
  #vrednosti .value-card-inner {
    min-height: 220px !important;
  }

  .service-grid {
    grid-template-columns: 1fr !important;
  }

  .service-card {
    height: 260px;
  }

  .service-card img {
    height: 145px;
  }

  .quality-copy h2 {
    margin-left: 58px;
    font-size: 18px;
  }

  .quality-right {
    flex-direction: column !important;
  }

  .quality-badge {
    margin-bottom: 10px;
  }

  .reference-card {
    flex-basis: 100%;
    min-width: 100%;
    padding: 28px 24px;
  }

  .reference-card p {
    font-size: 14px;
  }

  .contact-items {
    grid-template-columns: 1fr !important;
  }

  .form-row {
    grid-template-columns: 1fr !important;
    gap: 8px;
  }

  .footer-inner {
    flex-direction: column !important;
    gap: 16px;
    text-align: center !important;
  }

  .footer-brand {
    flex-direction: column !important;
    gap: 8px;
  }

  .footer-text {
    align-items: center !important;
  }

  .socials {
    justify-content: center;
  }
}

/* Veoma mali telefoni */
@media (max-width: 380px) {
  .top-contact {
    display: none;
  }

  .brand {
    margin-right: auto;
  }

  .hero {
    min-height: 635px;
  }

  .hero-photo {
    inset: 340px 0 0 !important;
  }

  .language-menu {
    width: min(172px, calc(100vw - 20px)) !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* =========================================================
   KONTAKT FORMA ISPOD PODATAKA I NA DESKTOPU
   ========================================================= */

.contact > .container {
  grid-template-columns: 1fr !important;
  align-items: start !important;
  gap: 28px !important;
}

.contact-info {
  width: 100%;
}

.contact-form {
  width: 100%;
  max-width: 760px;
  height: auto !important;
  margin: 0 auto;
  padding: 24px;
}

.contact-form textarea {
  min-height: 110px;
}

@media (min-width: 901px) {
  .contact {
    height: auto !important;
    padding: 45px 0 !important;
  }

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

/* =========================================================
   OŠTRIJE I STABILNIJE SLIKE NA MANJIM EKRANIMA
   ========================================================= */

/* Browser ne treba da koristi pixel-art interpolaciju niti da rasteže slike. */
img,
.service-card img,
.footer-logo,
.brand img,
.quality-badge img {
  image-rendering: auto;
  image-rendering: smooth;
  object-fit: cover;
  transform: none;
  filter: none;
}

/* Fotografije u karticama uvek zadržavaju odnos stranica. */
.service-card img {
  width: 100%;
  height: auto;
  min-height: 120px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

/* Pozadinske fotografije bez dodatnog uvećavanja preko CSS transformacija. */
.hero-photo,
.quality-photo,
.bird-panel {
  transform: none !important;
  filter: none !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

/* Laptop i tablet */
@media (max-width: 1180px) {
  .service-card img {
    aspect-ratio: 16 / 10;
    min-height: 135px;
  }

  .hero-photo {
    background-position: center 45% !important;
  }

  .quality-photo,
  .bird-panel {
    background-position: center !important;
  }
}

/* Telefon: fotografije ne zauzimaju preveliku površinu, čime se sprečava
   vidljivo razvlačenje fotografija manje rezolucije. */
@media (max-width: 600px) {
  .service-card {
    height: auto !important;
    min-height: 250px;
  }

  .service-card img {
    height: auto !important;
    min-height: 0;
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }

  .hero-photo {
    background-size: cover !important;
    background-position: center center !important;
  }

  .quality-photo {
    height: 260px !important;
    background-size: cover !important;
    background-position: center !important;
  }

  .bird-panel {
    height: 220px !important;
    background-size: cover !important;
    background-position: center !important;
  }

  .quality-badge img,
  .footer-logo,
  .brand img {
    object-fit: contain !important;
  }
}

/* Veoma mali telefoni */
@media (max-width: 380px) {
  .service-card img {
    aspect-ratio: 3 / 2;
  }

  .quality-photo {
    height: 230px !important;
  }

  .bird-panel {
    height: 200px !important;
  }
}

/* =========================================================
   ISPRAVKA SLIKA U SEKCIJI "NAŠE USLUGE"
   Posebno za tablet i telefon
   ========================================================= */

/* Osnovni prikaz kartice */
#usluge .service-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #ffffff;
}

#usluge .service-card img {
  display: block;
  width: 100%;
  max-width: none;
  margin-top: auto;
  object-fit: cover;
  object-position: center;
  image-rendering: auto;
}

/* Tablet */
@media (max-width: 900px) {
  #usluge .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px !important;
  }

  #usluge .service-card {
    height: 290px !important;
    min-height: 290px;
  }

  #usluge .service-card h3 {
    height: 68px !important;
    min-height: 68px;
    padding: 0 10px;
    font-size: 12px;
    line-height: 1.25;
  }

  #usluge .service-card img {
    height: 165px !important;
    min-height: 165px !important;
    aspect-ratio: auto !important;
    object-fit: cover !important;
    object-position: center center !important;
  }
}

/* Telefon */
@media (max-width: 600px) {
  #usluge .service-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  #usluge .service-card {
    width: 100%;
    height: auto !important;
    min-height: 0 !important;
  }

  #usluge .service-icon {
    height: 58px;
    min-height: 58px;
  }

  #usluge .service-card h3 {
    height: auto !important;
    min-height: 58px;
    padding: 10px 14px 12px;
    font-size: 13px;
    line-height: 1.3;
  }

  #usluge .service-card img {
    width: 100%;
    height: 220px !important;
    min-height: 220px !important;
    aspect-ratio: auto !important;
    object-fit: cover !important;
    object-position: center center !important;
  }
}

/* Vrlo mali telefoni */
@media (max-width: 420px) {
  #usluge .service-card img {
    height: 190px !important;
    min-height: 190px !important;
  }
}

/* Širi telefoni u landscape položaju */
@media (min-width: 601px) and (max-width: 900px) and (orientation: landscape) {
  #usluge .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  #usluge .service-card img {
    height: 150px !important;
    min-height: 150px !important;
  }
}

/* =========================================================
   FINALNO: THUMBNAIL SLIKE U SEKCIJI "NAŠE USLUGE"
   Slike se više ne razvlače preko cele kartice.
   ========================================================= */

#usluge .service-grid {
  align-items: stretch;
}

#usluge .service-card {
  height: auto !important;
  min-height: 230px;
  padding: 14px 12px 18px;
  align-items: center;
  justify-content: flex-start;
  border-radius: 7px;
}

#usluge .service-icon {
  flex: 0 0 48px;
  height: 48px;
}

#usluge .service-card h3 {
  width: 100%;
  height: auto !important;
  min-height: 58px;
  margin: 0 0 10px;
  padding: 4px 6px;
}

#usluge .service-card img {
  width: 128px !important;
  height: 128px !important;
  min-width: 128px;
  min-height: 128px !important;
  max-width: 128px;
  margin: auto auto 0;
  aspect-ratio: 1 / 1 !important;
  object-fit: cover !important;
  object-position: center !important;
  border-radius: 6px;
  box-shadow: 0 5px 14px rgba(0, 21, 45, 0.12);
  image-rendering: auto;
}

/* Laptop */
@media (max-width: 1180px) {
  #usluge .service-card {
    min-height: 240px;
  }

  #usluge .service-card img {
    width: 132px !important;
    height: 132px !important;
    min-width: 132px;
    min-height: 132px !important;
    max-width: 132px;
  }
}

/* Tablet */
@media (max-width: 900px) {
  #usluge .service-card {
    min-height: 250px !important;
    padding: 16px 14px 20px;
  }

  #usluge .service-card img {
    width: 140px !important;
    height: 140px !important;
    min-width: 140px;
    min-height: 140px !important;
    max-width: 140px;
  }
}

/* Telefon */
@media (max-width: 600px) {
  #usluge .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  #usluge .service-card {
    min-height: 230px !important;
    padding: 12px 8px 14px;
  }

  #usluge .service-icon {
    height: 42px;
    min-height: 42px;
    font-size: 30px;
  }

  #usluge .service-card h3 {
    min-height: 52px;
    padding: 4px;
    font-size: 10.5px;
  }

  #usluge .service-card img {
    width: 112px !important;
    height: 112px !important;
    min-width: 112px;
    min-height: 112px !important;
    max-width: 112px;
    border-radius: 5px;
  }
}

/* Veoma mali telefoni */
@media (max-width: 390px) {
  #usluge .service-grid {
    grid-template-columns: 1fr !important;
  }

  #usluge .service-card {
    width: min(100%, 270px);
    min-height: 235px !important;
    margin-inline: auto;
  }

  #usluge .service-card img {
    width: 128px !important;
    height: 128px !important;
    min-width: 128px;
    min-height: 128px !important;
    max-width: 128px;
  }
}

/* ŠEST JEZIKA U PADAJUĆEM MENIJU */
.language-menu {
  width: 178px !important;
  max-height: min(360px, calc(100vh - 20px)) !important;
  overflow-y: auto !important;
  scrollbar-width: thin;
}
.language-option {
  min-height: 38px;
}
@media (max-width: 600px) {
  .language-menu {
    width: min(178px, calc(100vw - 20px)) !important;
  }
}


/* =========================================================
   KONTAKT: PODACI NA STRANICI + MODAL FORMA
   ========================================================= */

/* Na glavnoj stranici ostaju samo kontakt podaci. */
.contact > .container {
  display: block !important;
  height: auto !important;
}

.contact-info {
  width: 100%;
}

.contact {
  height: auto !important;
  min-height: 230px;
  padding: 42px 0 !important;
}

.contact-items {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

/* Modal */
.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 20000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.contact-modal.is-open {
  display: flex;
}

.contact-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 18, 38, 0.58);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}

.contact-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(620px, calc(100vw - 48px));
  max-height: calc(100vh - 56px);
  overflow-y: auto;
  padding: 26px;
  border: 1px solid rgba(215, 161, 67, 0.45);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(0, 16, 35, 0.35);
  animation: contactModalIn .24s ease-out;
}

@keyframes contactModalIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.contact-modal__close {
  position: absolute;
  top: 11px;
  right: 13px;
  z-index: 3;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--navy);
  border: 1px solid rgba(6, 29, 55, 0.14);
  border-radius: 50%;
  background: #ffffff;
  font: 400 25px/1 Arial, sans-serif;
  cursor: pointer;
  transition: .2s ease;
}

.contact-modal__close:hover,
.contact-modal__close:focus-visible {
  color: #ffffff;
  background: var(--navy);
  outline: none;
}

.contact-modal .contact-form {
  width: 100% !important;
  max-width: none !important;
  height: auto !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 28px 22px 22px !important;
  border-radius: 8px;
  background: linear-gradient(145deg, #061d37, #00152d);
}

.contact-modal .contact-form h3 {
  margin: 0 42px 20px 0 !important;
  font-size: 19px !important;
}

.contact-modal .form-row {
  gap: 10px;
}

.contact-modal .contact-form input,
.contact-modal .contact-form textarea {
  min-height: 46px;
  padding: 13px 14px !important;
  border-radius: 4px;
  font-size: 13px !important;
}

.contact-modal .contact-form textarea {
  height: 135px !important;
  min-height: 135px;
  margin-top: 10px !important;
}

.contact-modal .contact-form button {
  min-height: 44px;
  margin-top: 10px !important;
  border-radius: 4px;
  font-size: 11px !important;
}

body.contact-modal-open {
  overflow: hidden;
}

/* Telefon ne koristi modal; JS otvara posebnu stranicu. */
@media (max-width: 600px) {
  .contact-modal {
    display: none !important;
  }

  .contact {
    min-height: 0;
    padding: 34px 0 !important;
  }
}


/* =========================================================
   DETALJNA KONTAKT FORMA — STIL PREMA REFERENTNOM FORMULARU
   ========================================================= */

.contact-modal__dialog {
  width: min(930px, calc(100vw - 52px)) !important;
  max-height: calc(100vh - 42px) !important;
  padding: 22px 30px 24px !important;
  border-radius: 10px;
}

.contact-modal .detailed-contact-form {
  padding: 0 !important;
  color: #111 !important;
  background: #fff !important;
  border-radius: 0 !important;
}

.detailed-contact-form h3 {
  margin: 5px 48px 22px 0 !important;
  color: #111 !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px !important;
  line-height: 1.2;
}

.form-date-row {
  display: grid;
  grid-template-columns: 155px minmax(190px, 280px);
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.form-date-row label,
.form-line label {
  color: #111;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
}

.detailed-contact-form input,
.detailed-contact-form select,
.detailed-contact-form textarea {
  width: 100%;
  min-height: 36px;
  padding: 7px 10px !important;
  color: #111 !important;
  border: 1px solid #aeb4bc !important;
  border-radius: 1px !important;
  background: #fff !important;
  box-shadow: none !important;
  font: 14px Arial, Helvetica, sans-serif !important;
}

.detailed-contact-form input:focus,
.detailed-contact-form select:focus,
.detailed-contact-form textarea:focus {
  border-color: var(--gold) !important;
  outline: 2px solid rgba(201, 145, 50, .14);
  outline-offset: 0;
}

.form-section {
  margin: 0 0 22px;
  padding: 0 0 16px;
  border: 0;
  border-bottom: 2px solid #252525;
}

.form-section legend {
  width: 100%;
  margin-bottom: 14px;
  padding: 0 0 7px;
  color: #111;
  border-bottom: 2px solid #252525;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 700;
}

.form-line {
  display: grid;
  grid-template-columns: 155px minmax(260px, 410px);
  align-items: center;
  gap: 14px;
  margin-bottom: 11px;
}

.object-grid {
  display: grid;
  grid-template-columns: 1.15fr .9fr 1fr;
  gap: 15px 34px;
}

.compact-field {
  display: grid;
  grid-template-columns: minmax(100px, 1fr) minmax(90px, 1.25fr);
  align-items: center;
  gap: 11px;
  color: #111;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
}

.compact-field input,
.compact-field select {
  min-width: 0;
}

.schedule-section {
  margin-bottom: 12px;
}

.choice-row {
  display: grid;
  grid-template-columns: 190px repeat(4, max-content);
  align-items: center;
  gap: 11px 24px;
  margin: 12px 0;
  color: #111;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
}

.choice-row label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.choice-row input[type="radio"],
.choice-row input[type="checkbox"] {
  width: 21px !important;
  height: 21px !important;
  min-height: 21px !important;
  margin: 0;
  padding: 0 !important;
  accent-color: var(--gold);
}

.days-row {
  grid-template-columns: 190px repeat(3, max-content);
}

.time-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-top: 16px;
  color: #111;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
}

.time-row > span {
  width: 166px;
}

.time-row label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.time-row input[type="time"] {
  width: 120px !important;
}

.form-submit-row {
  display: flex;
  justify-content: flex-end;
}

.detailed-contact-form .form-submit-row button {
  width: 150px !important;
  min-height: 44px !important;
  margin: 0 !important;
  padding: 10px 20px !important;
  color: #fff !important;
  border: 0 !important;
  border-radius: 5px !important;
  background: linear-gradient(#d7a143, #b67b1d) !important;
  box-shadow: 0 5px 14px rgba(129, 82, 10, .18);
  font-size: 12px !important;
  font-weight: 800;
  cursor: pointer;
}

@media (max-width: 900px) and (min-width: 601px) {
  .contact-modal__dialog {
    width: calc(100vw - 32px) !important;
    max-height: calc(100vh - 28px) !important;
    padding: 20px 22px !important;
  }

  .object-grid {
    grid-template-columns: 1fr 1fr;
  }

  .choice-row {
    grid-template-columns: 170px repeat(2, max-content);
  }

  .days-row {
    grid-template-columns: 170px repeat(2, max-content);
  }
}


/* =========================================================
   FINALNA DORADA: PTICA I LOGO U QUALITY DELU
   ========================================================= */

/* Pticu vizuelno spuštamo malo niže, da se cela lepše vidi. */
.bird-panel {
  background-image: url("assets/bird.jpg") !important;
  background-size: cover !important;
  background-position: center 32% !important;
  background-repeat: no-repeat !important;
}

/* Treći deo: samo čist logo + tekst, bez plavog oreola/pozadine. */
.quality-badge {
  width: 158px !important;
  flex: 0 0 158px !important;
  height: auto !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  overflow: visible !important;
  transform: none !important;
}

.quality-badge img {
  display: block !important;
  width: 158px !important;
  height: auto !important;
  object-fit: contain !important;
  background: transparent !important;
  border: 0 !important;
  filter: none !important;
}

@media (max-width: 900px) {
  .bird-panel {
    background-position: center 28% !important;
  }

  .quality-badge,
  .quality-badge img {
    width: 145px !important;
  }

  .quality-badge {
    flex-basis: 145px !important;
  }
}

@media (max-width: 600px) {
  .bird-panel {
    background-position: center 24% !important;
  }

  .quality-badge,
  .quality-badge img {
    width: 138px !important;
  }

  .quality-badge {
    flex-basis: 138px !important;
  }
}


/* =========================================================
   ZAVRŠNA DORADA: PTICA, LOGO I QUALITY SLIKA
   ========================================================= */

.bird-panel {
  background-image: url("assets/bird.jpg") !important;
  background-size: cover !important;
  background-position: center 12% !important;
  background-repeat: no-repeat !important;
}

.quality-photo {
  background-image: url("assets/quality.jpg") !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

.quality-badge {
  width: 160px !important;
  flex: 0 0 160px !important;
  height: auto !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #fff !important;
  overflow: visible !important;
  transform: none !important;
}

.quality-badge img {
  display: block !important;
  width: 160px !important;
  height: auto !important;
  object-fit: contain !important;
  background: #fff !important;
  border: 0 !important;
  box-shadow: none !important;
  filter: none !important;
}

@media (max-width: 900px) {
  .bird-panel { background-position: center 8% !important; }

  .quality-badge,
  .quality-badge img {
    width: 145px !important;
  }

  .quality-badge {
    flex-basis: 145px !important;
  }
}

@media (max-width: 600px) {
  .bird-panel { background-position: center 5% !important; }

  .quality-badge,
  .quality-badge img {
    width: 138px !important;
  }

  .quality-badge {
    flex-basis: 138px !important;
  }
}


/* =========================================================
   FINALNA ISPRAVKA: CELA PTICA + LOGO POTPUNO BEZ PLAVOG
   ========================================================= */

/* Nova bird.jpg već ima više prostora iznad glave.
   "contain" garantuje da glava i telo ptice neće biti odsečeni. */
.bird-panel {
  background-image: url("assets/bird.jpg") !important;
  background-color: #ffffff !important;
  background-size: contain !important;
  background-position: center bottom !important;
  background-repeat: no-repeat !important;
}

/* U quality delu nema nikakve plave pozadine oko loga. */
.quality-badge {
  width: 165px !important;
  flex: 0 0 165px !important;
  height: auto !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #ffffff !important;
  box-shadow: none !important;
  overflow: visible !important;
  transform: none !important;
}

.quality-badge img {
  display: block !important;
  width: 165px !important;
  height: auto !important;
  margin: 0 auto !important;
  padding: 0 !important;
  object-fit: contain !important;
  background: #ffffff !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  filter: none !important;
  mix-blend-mode: normal !important;
}

@media (max-width: 900px) {
  .bird-panel {
    background-size: contain !important;
    background-position: center bottom !important;
  }

  .quality-badge,
  .quality-badge img {
    width: 148px !important;
  }

  .quality-badge {
    flex-basis: 148px !important;
  }
}

@media (max-width: 600px) {
  .bird-panel {
    background-size: contain !important;
    background-position: center bottom !important;
  }

  .quality-badge,
  .quality-badge img {
    width: 138px !important;
  }

  .quality-badge {
    flex-basis: 138px !important;
  }
}


/* Dodatno spuštanje ptice da se cela glava vidi */
.bird-panel{
    background-position:center 100% !important;
    background-size:contain !important;
}

@media (max-width:900px){
    .bird-panel{
        background-position:center 100% !important;
    }
}

@media (max-width:600px){
    .bird-panel{
        background-position:center 100% !important;
    }
}


/* FINALNO: smanji plavi panel i pokaži celu pticu */
.bird-panel{
    background-size: 92% auto !important;
    background-position: center bottom !important;
    padding-top: 8px !important;
}
@media (max-width:900px){
  .bird-panel{
    background-size:95% auto !important;
    background-position:center bottom !important;
  }
}
@media (max-width:600px){
  .bird-panel{
    background-size:98% auto !important;
    background-position:center bottom !important;
  }
}

/* Novi IB logo: providna pozadina u svim delovima sajta. */
.quality-badge, .quality-badge img { background: transparent !important; box-shadow: none !important; }
.quality-badge img { object-fit: contain !important; }

.website-field{position:absolute;left:-10000px;width:1px;height:1px;overflow:hidden}.form-status{margin:10px 0;color:#153c31;font-weight:600}.form-privacy{display:flex;align-items:flex-start;gap:8px;margin:14px 0;font-size:12px;line-height:1.5}.form-privacy input{width:16px!important;height:16px!important;min-height:16px!important;flex:0 0 16px;margin-top:1px}
