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

body {
  font-family: system-ui, sans-serif;
}

img {
  -webkit-user-drag: none;
  -moz-user-drag: none;
  user-select: none;
}

/* Container to center and pad */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Top header styling */
.top-header {
  background: #0c5a00;
  border-bottom: 1px solid #eee;
  padding: 25px;
}

.top-header .logo img {
  display: block;
  height: 80px;
}

/* Contact block */
.contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.phone {
  font-size: 1.25rem;
  font-weight: bold;
  color: #f1c310; /* orange */
  text-decoration: none;
}

.tagline {
  font-size: 0.875rem;
  color: #f1c310;
  margin-top: 0.25rem;
}

/* Availability block (umesto search) */
.availability-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.availability-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

/* Tekstualni stilovi (isti kao za broj telefona) */
.availability .label {
  font-size: 1.25rem;
  font-weight: bold;
  color: #f1c310;
  display: block;
  line-height: 1.2;
}

.availability .tagline {
  font-size: 0.875rem;
  color: #f1c310;
  display: block;
}

.contact-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}

.phone-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

/* Responsive: Mobile-only phone */
@media (max-width: 600px) {
  .top-header .container {
    justify-content: center;
  }
  /* hide everything except the phone link */
  .logo,
  .tagline,
  .search-form,
  .label,
  .phone-icon,
  .availability-wrapper {
    display: none;
  }
  .contact {
    flex-direction: row;
    align-items: center;
  }
  .phone {
    font-size: 1.5rem;
  }
}

/* ─────────────────────────────────────────────────────── */
/*                          BASE                          */
/* ─────────────────────────────────────────────────────── */
/* ─────────────────────────────────────────────────────── */

/* Base navbar styling */
.navbar {
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  z-index: 1000;
}

/* Inner container */
.navbar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo (desktop hidden, mobile shown) */
.navbar__logo {
  display: none;
}
.navbar__logo img {
  height: 45px;
}

/* Hamburger (desktop hidden, mobile shown) */
.navbar__toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 201;
}
.navbar__toggle .bar {
  height: 3px;
  width: 100%;
  background: #333;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.navbar__toggle.open .bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.navbar__toggle.open .bar:nth-child(2) {
  opacity: 0;
}
.navbar__toggle.open .bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Main menu (desktop) */
.navbar__menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 48px;
}
.navbar__item {
  position: relative;
}
.navbar__link {
  position: relative;
  text-decoration: none;
  color: #333;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  padding: 12px 8px;
  transition: color 0.3s;
}
.navbar__link:hover,
.navbar__link.is-active {
  color: #f49f00;
}
.navbar__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: #f49f00;
  transition: width 0.3s;
}
.navbar__link:hover::after,
.navbar__link.is-active::after {
  width: 100%;
}

/* Desktop dropdown adjustments */
.has-dropdown {
  position: relative;
}
.has-dropdown .dropdown-toggle {
  display: inline-block;
  background: none;
  border: none;
  font-size: 0.6rem;
  margin-left: 6px;
  cursor: pointer;
  transition: transform 0.3s;
}
.has-dropdown:hover .dropdown-toggle {
  transform: rotate(-180deg);
}
.dropdown {
  position: absolute;
  top: 100%; /* directly below the menu item */
  left: 0;
  margin-top: 4px; /* small gap to avoid stickiness issues */
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(0);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  min-width: 220px;
  overflow: hidden;
}
.has-dropdown:hover .dropdown,
.dropdown:hover {
  opacity: 1 !important;
  transform: translateY(0) !important;
  pointer-events: auto !important;
}
.dropdown li + li {
  border-top: 1px solid #f0f0f0;
}
.dropdown a {
  display: block;
  padding: 12px 16px;
  font-size: 0.9rem;
  color: #333;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.dropdown a:hover {
  background: #f49f00;
  color: #fff;
}

/* Sticky only on desktop */
@media (min-width: 769px) {
  .navbar {
    position: sticky;
    top: 0;
  }
}

/* MOBILE & OVERLAY (≤ 768px) */
@media (max-width: 768px) {
  .navbar__inner {
    display: none;
  }
  .mobile-nav {
    position: relative;
    z-index: 1000;
  }
  .mobile-nav__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 0 16px;
    height: 60px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  }
  .mobile-nav__logo img {
    height: 40px;
  }
  .mobile-nav__toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
  }
  .mobile-nav__toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: #333;
    border-radius: 1px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .mobile-nav.open .mobile-nav__toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .mobile-nav.open .mobile-nav__toggle span:nth-child(2) {
    opacity: 0;
  }
  .mobile-nav.open .mobile-nav__toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .mobile-nav__overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 1050;
  }
  .mobile-nav.open .mobile-nav__overlay {
    opacity: 1;
    visibility: visible;
  }
  .mobile-nav__drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: #fff;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1090;
    overflow-y: auto;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
  }
  .mobile-nav.open .mobile-nav__drawer {
    transform: translateX(0);
  }
  .mobile-nav__list {
    list-style: none;
    margin: 0;
    padding: 16px;
  }
  .mobile-nav__item {
    margin-bottom: 4px;
  }
  .mobile-nav__link,
  .submenu-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 0;
    font-size: 1rem;
    color: #333;
    font-weight: 500;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s, background 0.3s;
  }
  .mobile-nav__link:hover,
  .submenu-toggle:hover {
    color: #f49f00;
  }
  .mobile-nav__item.active > .mobile-nav__link {
    background: #fff5e6;
    color: #f49f00;
  }
  .arrow {
    width: 8px;
    height: 8px;
    border-right: 2px solid #333;
    border-bottom: 2px solid #333;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    margin-left: 8px;
  }
  .mobile-nav__item.open > .submenu-toggle .arrow {
    transform: rotate(225deg);
  }
  .submenu {
    list-style: none;
    margin: 0;
    padding: 0 0 0 16px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .mobile-nav__item.open > .submenu {
    max-height: 500px;
  }
  .submenu li + li {
    margin-top: 4px;
  }
  .mobile-nav__sublink {
    display: block;
    padding: 8px 0;
    font-size: 0.95rem;
    color: #444;
    text-decoration: none;
    transition: color 0.3s, background 0.3s;
  }
  .mobile-nav__sublink:hover {
    background: #f0e5d8;
    color: #f49f00;
  }
}

/* Hero section */
.hero-section {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url("images/hero-background.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.7);
}

.hero-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
}

.hero-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-subtitle {
  color: white;
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  letter-spacing: 0.025em;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fbbf24; /* amber-400 */
  margin-bottom: 1.5rem;
  letter-spacing: 0.025em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-button {
  background-color: #f59e0b; /* amber-500 */
  color: white;
  padding: 0.75rem 1.5rem;
  font-size: 1.125rem;
  font-weight: bold;
  border-radius: 0.375rem;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background-color 0.3s;
  text-decoration: none;
}

.hero-button:hover {
  background-color: #d97706; /* amber-600 */
}

/* Responsive styles */
@media (min-width: 768px) {
  .hero-section {
    height: 600px;
  }

  .hero-content {
    padding: 0 2rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }

  .hero-title {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

/* Services section */
.services-section {
  background-color: #ffffff;
  padding: 50px 20px;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

/* Service box styles */
.service-box {
  background-color: #0c5a00;
  padding: 25px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: transform 0.3s ease;
}

.service-box:hover {
  transform: translateY(-5px);
}

.service-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  padding: 10px;
  border-radius: 10px;
  background-color: #255ab7;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-icon svg {
  width: 40px;
  height: 40px;
  stroke: white;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-content {
  flex-grow: 1;
}

.service-title {
  color: #fbbe24;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.service-title a {
  color: #fbbe24;
  text-decoration: none;
}

.service-description {
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
}

.highlight {
  color: #f97316;
  font-weight: 500;
}

/* Responsive styles */
@media (min-width: 768px) {
  .services-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-container {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* Boxed responzivni kontejner */
.sekcija-vodoinstalater {
  max-width: 1200px;
  margin: 0px auto; /* prostor iznad i ispod + centriranje */
  padding: 20px; /* unutrašnji razmak */
}
@media (max-width: 600px) {
  .sekcija-vodoinstalater {
    position: relative;
    left: 50%;
    right: 50%;
    width: 100vw; /* puni viewport width */
    margin-left: -50vw; /* pomeri levo za pola viewporta */
    margin-right: -50vw; /* pomeri desno za pola viewporta */
    padding: 0; /* nema unutrašnjih razmaka */
    background: none; /* bez pozadine */
  }
  /* Svi naslovi i pasusi leže flush do sekcije */
  .sekcija-vodoinstalater > * {
    margin: 0;
    padding: 0 20px; /* opcionalno minimalni unutrašnji razmak */
    text-align: left;
  }
}

/* Naslovi i tekst */
.naslov1 {
  font-size: 2rem;
  margin-bottom: 10px;
  text-align: center;
}
.naslov2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-align: center;
  color: #333;
}
.naslov3 {
  font-size: 1.5rem;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #333;
}
.paragraf {
  margin-bottom: 20px;
  line-height: 1.6;
  color: #444;
  column-count: 1;
  text-align: justify;
  column-gap: 2rem;
}

/* Linkovi */
.link {
  color: #0066cc;
  text-decoration: none;
}
.link:hover {
  text-decoration: underline;
}
.odgusenje-50-50 {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 20px;
}

.odgusenje-tekst,
.odgusenje-slika,
.odgusenje-slika1 {
  column-count: 1;
  text-align: justify;
  column-gap: 2rem;
  width: 50%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.odgusenje-tekst {
  font-family: sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

.odgusenje-tekst h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.odgusenje-slika {
  padding-left: 20px;
}

.odgusenje-slika1 {
  padding-right: 20px;
}

.odgusenje-slika img {
  max-width: 100%;
  height: 450px;
  object-fit: cover;
}

.odgusenje-slika1 img {
  max-width: 100%;
  height: 450px;
  object-fit: cover;
}

/* Responsive za mobilne */
@media (max-width: 768px) {
  .odgusenje-50-50 {
    flex-direction: column;
  }

  .odgusenje-tekst,
  .odgusenje-slika {
    width: 100%;
  }

  .odgusenje-slika img {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-top: 20px;
    padding-right: 20px;
  }
}

.bojler-50-50 {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 20px;
  align-items: stretch;
}

.bojler-tekst,
.bojler-slika {
  column-count: 1;
  text-align: justify;
  column-gap: 2rem;
  width: 50%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bojler-tekst {
  font-family: sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

.bojler-tekst h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.bojler-slika img {
  max-width: 100%;
  height: 100% !important;
  object-fit: cover;
  padding-right: 20px;
}
.bojler-tekst,
.bojler-slika {
  column-count: 1;
  text-align: justify;
  column-gap: 2rem;
  width: 50%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bojler-tekst {
  font-family: sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

.bojler-tekst h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.bojler-slika img {
  max-width: 100%;
  height: 450px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .bojler-50-50 {
    flex-direction: column;
  }

  .bojler-slika,
  .bojler-tekst {
    width: 100%;
  }

  .bojler-slika img {
    width: 100%;
    height: auto;
    object-fit: cover;
    padding: 0;
  }
  .bojler-50-50 {
    flex-direction: column;
  }

  .bojler-slika {
    order: 2;
    width: 100%;
  }

  .bojler-tekst {
    order: 1;
    width: 100%;
  }

  .bojler-slika img {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-top: 20px;
  }
}

.call-button-mobile {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #03bb00;
  color: white;
  text-align: center;
  padding: 10px 0;
  font-size: 1.3rem;
  font-weight: bold;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);

  /* Remove display: flex from here */
  /* Keep flex settings here if needed */
  justify-content: center;
  align-items: center;
  gap: 10px;
}

/* Show only on mobile */
@media (max-width: 768px) {
  .call-button-mobile {
    display: flex;
  }
}

/* ─────────── Show/hide desktop vs mobile ─────────── */
@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }
  .mobile-only {
    display: block;
  }
}
@media (min-width: 769px) {
  .desktop-only {
    display: flex !important;
  }
  .mobile-only {
    display: none !important;
  }
}

/* ─────────── Mobile-nav styles (≤768px) ─────────── */
/* copy your previously working .mobile-nav {…}, .mobile-nav__header {…}, etc. here */
@media (max-width: 768px) {
  .mobile-nav {
    position: relative;
    z-index: 1000;
  }
  .mobile-nav__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 0 16px;
    height: 60px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  }
  .mobile-nav__logo img {
    height: 70px;
    padding: 10px;
  }
  .mobile-nav__toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
  }
  .mobile-nav__toggle span {
    display: block;
    height: 2px;
    background: #333;
    border-radius: 1px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .mobile-nav.open .mobile-nav__toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .mobile-nav.open .mobile-nav__toggle span:nth-child(2) {
    opacity: 0;
  }
  .mobile-nav.open .mobile-nav__toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .mobile-nav__overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 1050;
  }
  .mobile-nav.open .mobile-nav__overlay {
    opacity: 1;
    visibility: visible;
  }
  .mobile-nav__drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: #fff;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1090;
    overflow-y: auto;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
  }
  .mobile-nav.open .mobile-nav__drawer {
    transform: translateX(0);
  }
  .mobile-nav__list {
    list-style: none;
    margin: 0;
    padding: 16px;
  }
  .mobile-nav__item {
    margin-bottom: 4px;
  }
  .mobile-nav__link,
  .submenu-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 0;
    font-size: 1rem;
    color: #333;
    font-weight: 500;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s, background 0.3s;
  }
  .mobile-nav__link:hover,
  .submenu-toggle:hover {
    color: #f49f00;
  }
  .mobile-nav__item.active > .mobile-nav__link {
    background: #fff5e6;
    color: #f49f00;
  }
  .arrow {
    width: 8px;
    height: 8px;
    border-right: 2px solid #333;
    border-bottom: 2px solid #333;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    margin-left: 8px;
  }
  .mobile-nav__item.open > .submenu-toggle .arrow {
    transform: rotate(225deg);
  }
  .submenu {
    list-style: none;
    margin: 0;
    padding: 0 0 0 16px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .mobile-nav__item.open > .submenu {
    max-height: 500px;
  }
  .submenu li + li {
    margin-top: 4px;
  }
  .mobile-nav__sublink {
    display: block;
    padding: 8px 0;
    font-size: 0.95rem;
    color: #444;
    text-decoration: none;
    transition: color 0.3s, background 0.3s;
  }
  .mobile-nav__sublink:hover {
    background: #f0e5d8;
    color: #f49f00;
  }
  /* 1) Linija ispod svakog linka */
  .mobile-nav__link,
  .submenu-toggle {
    border-bottom: 1px solid #ececec;
  }

  /* Ukloni liniju ispod poslednje stavke */
  .mobile-nav__list > .mobile-nav__item:last-child > .mobile-nav__link,
  .mobile-nav__list > .mobile-nav__item:last-child > .submenu-toggle {
    border-bottom: none;
  }

  /* 2) Blagi žuti background i boja teksta kad je dropdown otvoren */
  .mobile-nav__item.open > .mobile-nav__link {
    color: #f49f00; /* narandžasta ista kao active */
  }
  /* ─ MOBILE PERSISTENT ACTIVE ─ */
  .mobile-nav__link.active {
    color: #f49f00; /* orange text */
  }

  /* keep the arrow orange too */
  .mobile-nav__item.active > .mobile-nav__link .arrow {
    border-right-color: #f49f00;
    border-bottom-color: #f49f00;
  }
}

/* ==================================
   FOOTER
================================== */
.site-footer {
  background: #0c5a00;
  color: #fff;
  position: relative;
  padding: 60px 20px 20px;
  font-family: sans-serif;
  font-size: 14px;
  line-height: 1.6;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

/* Jedna kolona */
.footer-col {
  flex: 1;
  min-width: 220px;
  margin: 0 20px 40px;
}

/* Naslove stilizujemo zlatno i dodajemo linijicu ispod */
.footer-col h4 {
  color: #f9a826;
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
}
.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background: #f9a826;
}

/* Logo */
.footer-logo img {
  max-width: 300px;
  display: block;
  margin-bottom: 15px;
}

/* Paragraf */
.footer-col p {
  margin-bottom: 15px;
}

/* Linkovi po kolonama */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0 0 15px;
}
.footer-links li {
  margin-bottom: 8px;
}
.footer-links li a {
  color: #f9a826;
  text-decoration: none;
}
.footer-links li a:hover {
  text-decoration: underline;
}

/* Kontakt info */
.footer-phone {
  font-size: 28px;
  margin-bottom: 15px;
  color: #f1c310;
}

.footer-phone a {
  text-decoration: none;
  color: #f9a826;
  display: inline-flex;
  align-items: center;
  gap: 8px; /* razmak između ikone i broja */
}

.phone-icon {
  width: 28px;
  height: 28px;
  display: inline-block;
}

.contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-info a {
  color: white;
}
.contact-info li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.contact-info li i {
  margin-right: 8px;
  color: #f9a826;
}

/* Donji deo footer-a */
.footer-bottom {
  border-top: 1px solid rgb(255, 255, 255);
  text-align: center;
  padding: 15px 0;
  margin-top: 20px;
}
.footer-bottom p {
  margin: 0;
  font-size: 16px;
}
.footer-bottom-link {
  color: #f9a826;
  text-decoration: none;
}
.footer-bottom-link:hover {
  text-decoration: underline;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }
  .footer-col {
    margin: 20px 0;
    text-align: center;
  }
  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .footer-bottom p {
    padding-bottom: 60px !important;
  }
}

/* ========== Sekcija cevi ========== */
.sekcija-cevi__header {
  background: #0c5a00;
  text-align: center;
  padding: 16px 0;
}
.sekcija-cevi__title {
  color: #f9a826;
  font-size: 32px;
  padding: 20px;
}

/* ========== Glavni container ========== */
.sekcija-cevi__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto 1fr;
  gap: 32px;
  padding: 50px 20px;
}

/* a) BRZO ČITANJE */
.sekcija-cevi-intro {
  border-left: 6px solid #0c5a00;
  padding-left: 20px;
  grid-column: 1 / -1;
  grid-row: 1;
  margin-bottom: 24px;
}
.sekcija-cevi-intro p {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

/* b) GLAVNI SADRŽAJ */
.sekcija-cevi-main {
  grid-column: 1 / 2;
  grid-row: 2;
}
.sekcija-cevi-main h3 {
  margin-top: 0;
  font-size: 24px;
  color: #243147;
}
.sekcija-cevi-main p {
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}
.sekcija-cevi-main img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 20px 0;
  border-radius: 4px;
}

/* c) SIDEBAR */
.sekcija-cevi-sidebar {
  grid-column: 2 / 3;
  grid-row: 2;
}
.sekcija-cevi-sidebar h4 {
  margin-bottom: 14px;
  font-size: 18px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 8px;
  color: #243147;
}
.sidebar-links {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}
.sidebar-links li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 15px;
  color: #444;
}
.sidebar-links li a {
  text-decoration: none;
  color: #f9a826;
}
.sidebar-links li::before {
  content: "➤";
  position: absolute;
  left: 0;
  top: 2px;
  color: #f9a826;
}
.sidebar-cta h4 {
  margin-bottom: 10px;
  font-size: 18px;
  color: #243147;
}
.sidebar-phone {
  font-size: 20px;
  font-weight: bold;
  margin: 0 0 6px;
  color: #243147;
  text-decoration: none;
}
.sidebar-phone a {
  color: #f9a826;
}

/* ====== RESPONSIVE za mobilne ====== */
@media (max-width: 768px) {
  .sekcija-cevi__container {
    display: flex;
    flex-direction: column;
  }
  .sekcija-cevi-intro p {
    font-size: 20px;
  }
  .sekcija-cevi-main h3 {
    font-size: 22px;
  }
  .sekcija-cevi-main p {
    font-size: 18px;
  }
  .sidebar-links li {
    font-size: 16px;
  }
  .sidebar-phone {
    font-size: 22px;
  }
  .sekcija-cevi__title {
    font-size: 28px;
  }
}

:root {
  --color-header-bg: #2c3e50;
  --color-accent: #ffa500;
  --color-dark: #2c3e50;
  --color-light: #ffffff;
  --radius: 8px;
}

/* 1) Header */
.sekcija-kontakt__header {
  background-color: var(--color-header-bg);
  padding: 1.5rem 1rem;
}
.sekcija-kontakt__title {
  color: var(--color-accent);
  text-align: center;
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
}

/* 2) Content grid */
.sekcija-kontakt__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  align-items: center;
  justify-items: center;
  padding: 2rem 1rem;
  background-color: var(--color-light);
}

/* 3) CTA block */
.kontakt-cta {
  text-align: center;
}
.btn-kontakt {
  display: inline-block;
  background-color: var(--color-accent);
  color: var(--color-light);
  padding: 1rem 2rem;
  text-decoration: none;
  font-weight: 600;
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
}
.btn-kontakt:hover {
  filter: brightness(0.9);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}
.kontakt-telefon {
  margin-top: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-dark);
}

/* 4) Info block */
.kontakt-info {
  max-width: 360px;
  color: var(--color-dark);
  text-align: center;
}
.info-title {
  margin-bottom: 0.5rem;
  font-size: 1.75rem;
  font-weight: 700;
}
.kontakt-info p {
  margin: 0.5rem 0;
  line-height: 1.4;
}

/* 5) Responsive tweaks */
@media (max-width: 480px) {
  .sekcija-kontakt__title {
    font-size: 1.75rem;
  }
  .kontakt-telefon {
    font-size: 1.25rem;
  }
  .info-title {
    font-size: 1.5rem;
  }
}
