/******************************

FONTS / COLORS

*******************************/

@font-face {
    font-family: 'Nunito';
    src: url('../fonts/Nunito-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}

:root {
  --font-default: "Nunito", sans-serif;
  --font-primary: "Nunito", sans-serif;
  --font-secondary: "Nunito", sans-serif;
}

:root {
  --color-default: #fff;
  --color-header: #fff;
  --color-primary: #065fa8;
  --color-primary-light: #1476C7;
  --color-primary-dark: #0B518A;
  --color-secondary: #fff;
  --color-background: #fff;
  --color-font: #222;
  --color-one: #fff;
  --color-ltt: #f49910;
  --color-two: #FCFAF5;
}

html {
  scroll-behavior: smooth;
}

html, body{
  width: 100%;
  height: 100%;
  background-color: var(--color-default);
  color: var(--color-font);
  font-family: var(--font-default);
  line-height: 1.4;
  margin: 0;
  padding: 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
  text-decoration: none;
}

/******************************

MENU

*******************************/

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Menu - fiksni, minimalna visina */
.top-menu {
    background-color: var(--color-two);
    padding: 4px 0;
    border-bottom: 1px solid var(--color-primary);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1002;
}

.top-menu .header-container {
    display: flex;
    justify-content: flex-end;
}

.contact-icons {
    list-style: none;
    display: flex;
    gap: 15px;
}

.contact-icons li a {
    color: var(--color-one);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--color-ltt);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    font-size: 14px;
}

.contact-icons li a:hover {
    background-color: var(--color-primary-dark);
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* Main Header - fiksni, ispod top-menu bez preklapanja */
.main-header {
    background-color: var(--color-header);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    top: 38px; /* Tačno ispod top-menu (padding 4px + ikone 30px + padding 4px = 38px) */
    width: 100%;
    z-index: 1001;
    padding: 5px 0; /* Smanjeno padding za manju visinu */
}

.main-header .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    margin: 16px 0px 0px 0px;
	height: 40px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links li a {
    color: var(--color-font);
    text-decoration: none;
    padding: 10px 0;
    position: relative;
    transition: all 0.3s ease;
}

.nav-links li a:hover {
    color: var(--color-primary);
}

.nav-links li a:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-primary-dark);
    transform: scaleX(1);
    transition: transform 0.3s ease;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary-dark);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    /*background-color: var(--color-header);*/
	background: var(--color-two);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    list-style: none;
    min-width: 150px;
    display: none; /* Sakriveno po default */
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.dropdown.open .dropdown-menu {
    display: block;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 15px;
    border-bottom: 1px solid var(--color-two);
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-toggle i {
    transition: transform 0.3s ease;
}

.dropdown.open .dropdown-toggle i {
    transform: rotate(180deg);
}

/* Hamburger */
.hamburger {
    display: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--color-primary);
}

/* Responzivnost - Tablet i Mobilni */
@media (max-width: 768px) {
    body {
        padding-top: 76px; /* Prilagođeno za mobil: top-menu ~34px + main-header ~42px */
    }

    .top-menu {
        padding: 3px 0;
    }

    .contact-icons {
        gap: 10px;
    }

    .contact-icons li a {
        width: 28px;
        height: 28px;
        font-size: 13px;
    }

    .main-header {
        top: 34px; /* Prilagođeno za mobil (padding 3px + ikone 28px + padding 3px = 34px) */
        padding: 5px 0;
    }

    .logo img {
        height: 35px;
    }

.nav-links {
    position: fixed;
    top: 76px; /* Top-menu 34px + main-header ~42px */
    left: -100%;
    width: 100%;
    height: calc(100vh - 76px);
    background-color: var(--color-header);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 20px;
    transition: left 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    overflow-y: auto; /* Dodato: Omogućava skrolovanje na dole ako sadržaj premaši visinu */
}

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #eee;
    }

    .nav-links li a {
        width: 100%;
        display: block;
        padding: 15px;
    }

    /* Hover efekt na mobilu - koristi :active */
    .nav-links li a:active::after {
        transform: scaleX(1);
    }

    .hamburger {
        display: block;
    }

    /* Dropdown na mobilu - sada sakriveno po default, otvara se na klik */
    .dropdown {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        min-width: auto;
        box-shadow: none;
        display: none; /* Sakriveno */
        width: 100%;
        transform: none;
    }

    .dropdown.open .dropdown-menu {
        display: block;
    }

    .dropdown-menu li {
        border-bottom: 1px solid #ddd;
    }

    .dropdown-menu li a {
        padding: 15px;
        border-bottom: 1px solid #ddd;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 72px; /* Još manje za mali mobil */
    }

    .logo img {
        height: 30px;
    }

    .contact-icons {
        gap: 8px;
    }

    .contact-icons li a {
        width: 26px;
        height: 26px;
        font-size: 12px;
    }

    .top-menu {
        padding: 2px 0;
    }

    .main-header {
        top: 30px; /* Prilagođeno (padding 2px + ikone 26px + padding 2px = 30px) */
    }

    .nav-links {
        top: 72px;
        height: calc(100vh - 72px);
    }
}

/******************************

HERO

*******************************/

/* ========================================= */
/* HERO SECTION — FINAL RESPONSIVE VERSION */
/* ========================================= */
.hero-section {
  width: 100%;
  height: 120vh;
  background: #ffffff;                    /* čista bela */
  padding: 100px 0;
  color: #222222;                         /* tamniji tekst umesto #fff */
  display: flex;
  justify-content: center;
  overflow: hidden;
}
.hero-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  width: 90%;
  max-width: 1400px;
  align-items: center;
}
/* LEFT SIDE CONTENT */
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hero-title h1 {
  font-weight: 900;
  margin: 0;
  text-transform: uppercase;
  color: #065fa8;                         /* --color-primary */
  line-height: 1.1;
  font-size: 44px;
}
.hero-title h2 {
  margin: 5px 0 0;
  font-weight: 700;
  color: #222222;                         /* tamniji umesto #fff */
  opacity: 0.9;
  font-size: 34px;
}
.hero-desc {
  font-size: 20px;
  color: #444444;                         /* vidljiviji sivi umesto #fff */
  line-height: 1.6;
  max-width: 520px;
}
.hero-button {
  display: inline-block;
  background: #065fa8;                    /* --color-primary */
  color: #ffffff;                         /* bela slova na plavom */
  font-weight: 900;
  padding: 14px 28px;
  border-radius: 12px;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(6, 95, 168, 0.28);
  transition: 0.3s ease;
  width: fit-content;
}
.hero-button:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 35px rgba(6, 95, 168, 0.45);
}
/* BENEFITS LEFT */
.benefits {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.benefits h3 {
  color: #065fa8;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 1px;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}
.benefit-card {
  background: #ffffff;                    /* bela */
  border: 1px solid var(--color-primary);
  padding: 16px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: 0.3s ease;
}
.benefit-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-primary-light);
  box-shadow: 0 10px 25px rgba(6, 95, 168, 0.18);
}
.benefit-icon {
  font-size: 28px;
  color: #065fa8;
}
/* RIGHT SIDE (IMAGE + OVERLAY) */
.hero-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  position: relative;
}
.hero-image {
  position: relative;
  isolation: isolate; /* važno za blend efekte */
}

.hero-image::before {
  content: "";
  position: absolute;
  inset: -15%;
  background: radial-gradient(
    farthest-side circle at 50% 30%,
    rgba(6, 95, 168, 0.35) 0%,
    rgba(4, 66, 120, 0.25) 40%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: -1;
  filter: blur(40px);
}
.hero-image img {
  width: 100%;
  max-width: 420px;
  object-fit: cover;
  mask-image: linear-gradient(to bottom, black 10%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 10%, transparent 100%);
  border-radius: 24px;           /* blago zaobljeno ako želiš */
  box-shadow: 
    0 25px 50px -12px rgba(6, 95, 168, 0.35),
    inset 0 4px 12px rgba(255,255,255,0.15);
}
/* ========================================= */
/* IMAGE BENEFITS OVERLAY */
/* ========================================= */
.image-benefits-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 380px;
  transform: translateY(55%);
}
.image-benefit {
  background: #ffffff;
  border: 1px solid var(--color-primary);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
}
.image-benefit:hover {
  border-color: var(--color-primary-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(6, 95, 168, 0.16);
}
.ib-icon {
  font-size: 28px;
  color: #065fa8;
}
.image-benefit h5 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #065fa8;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.image-benefit p {
  margin: 4px 0 0;
  font-size: 14px;
  color: #555555;
  opacity: 0.9;
}
/* ========================================= */
/* TABLET — da overlay NE PREKRIVA TEKST */
/* ========================================= */
@media (max-width: 1230px) {
  .hero-section {
    height: auto;
    padding: 160px 0 160px 0 !important;
  }
}
@media (max-width: 900px) {
  .hero-section {
    height: auto;
    padding: 100px 0 100px 0 !important;
  }
  .hero-wrapper {
    grid-template-columns: 1fr;
  }
  .hero-right {
    order: -1;
  }
  .hero-image {
    padding-bottom: 50px;
  }
  .image-benefits-overlay {
    transform: translateY(35%);
  }
}
@media (max-width: 600px) {
  .image-benefits-overlay {
    transform: translateY(55%);
  }
}
@media (max-width: 420px) {
  .hero-title h1 {
    font-size: 26px;
  }
  .hero-title h2 {
    font-size: 18px;
  }
}

/******************************

TITLES

*******************************/

.section {
  margin: 0;
  padding: 0;
  overflow: hidden;
  margin: auto;
}

.sction-btn {
  display: inline-block;
  position: relative;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  background: linear-gradient(135deg, #1476c7, #0B518A);
  color: var(--color-one);
  padding: 12px 24px;
  margin: 20px 0px 0px 0px;
  border-radius: 50px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sction-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.section-page {
  margin: 90px 0px 0px 0px !important;
  padding: 70px 0px 0px 0px !important;
  overflow: hidden;
  margin: auto;
}

.section-one {
  padding: 80px 0px 0px 0px;
  background-color: var(--color-one);
}

.section-primary {
  padding: 80px 0px 0px 0px;
  background: linear-gradient(to right, var(--color-primary-dark) 0%, var(--color-primary) 50%, var(--color-primary-light) 100%);
}

.section-primary h2,
.section-primary h3 {
  color: var(--color-two) !important;
}

.section-primary .gradient-line {
  background-color: var(--color-two);
}

.section-primary .box a {
  color: var(--color-one) !important;
}

.section-two {
  padding: 80px 0px 0px 0px;
  background-color: var(--color-two);
}

.section h1,
.section h2 {
  margin: 0px 24px 30px 24px;
  text-align: center;
  font-size: 34px;
  font-weight: 800;
}

.section h3 {
  margin: 0px 24px 30px 24px;
  text-align: center;
  font-size: 20px;
  font-weight: 800;
}

.section .white-title {
  margin: 0px 24px 30px 24px;
  text-align: center;
  font-size: 34px;
  color: #f0f0f0;
}

.section span {
  color: var(--color-primary);
}

.section h5 {
  margin: 0px 24px 30px 24px;
  text-align: center;
  width: 90%;
  margin: auto;
  font-size: 20px;
  font-weight: 800;
}

.gradient-line {
  width: 200px;
  height: 3px;
  margin: 0px auto 30px auto;
  background: linear-gradient(90deg, var(--color-primary-light), var(--color-primary-dark), var(--color-primary));
  background-size: 200% auto;
  border-radius: 3px;
}

.section-qta {
  position: relative;
  padding: 100px 0;
  background: var(--color-primary-dark);
}

.section-qta .qta-btn {
  position: relative;
  margin: 30px 0px 0px 0px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

a.swipe {
  display: inline-block;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  color: var(--color-one);
  background: var(--color-primary-light);
  padding: 10px 20px;
  border-radius: 6px;
  margin: 10px;
  transition: all 0.3s ease;
}

a.swipe:hover {
  background: var(--color-primary);
  box-shadow: 0 0 15px rgba(224, 224, 224, 0.5);
  transform: scale(1.05);
}

.section-qta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.section-qta * {
  position: relative;
  z-index: 2;
}

.section-qta h2 {
  color: var(--color-one); 
}

.section-qta h3 {
  margin: auto auto 50px auto !important; 
  color: var(--color-two); 
}

.section-qta p {
  padding: 0px 22px 0px 22px;
  font-size: 16px;
  text-align: center;
  color: var(--color-one); 
}

.section-qta ul {
  padding: 0px 22px 0px 22px;
  margin: auto;
  display: table;
  text-align: center;
}

.section-qta ul li {
  list-style: none;
  position: relative;
  color: var(--color-one);
}

.section-qta .gradient-line {
  background-color: var(--color-two);
}

.section-primary .gradient-line {
  background-color: var(--color-two);
}

/******************************

SECTIONS

*******************************/

.container {
  position: relative;
  margin: 50px auto;
  display: flex;
  flex-wrap: wrap;
  width: 1200px;
  height: auto;
  padding-bottom: 34px;
}

.container .box {
  position: relative;
  float: left;
  width: 550px;
  height: auto;
  margin: 34px 0px 0px 34px;
}

.container .box-border {
  background: var(--color-one);
  border-radius: 20px;
  border: 1px solid var(--color-primary-light);
  transition: all 0.3s ease-in-out;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.container .box-border:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.container .light {
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}


.container .box img {
  position: relative;
  width: 100%;
  height: auto;
  object-fit: cover; /* Osigurava da slika popuni prostor bez deformacija */
  border-radius: 8px; /* Zaobljeni uglovi za moderan izgled */
  transition: all 0.3s ease-in-out; /* Glatki prelazi za efekte */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Suptilna senka za dubinu */
}

/* Hover efekat za interaktivnost */
.container .box img:hover {
  transform: scale(1.05); /* Blago povećanje slike na hover */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* Jača senka na hover */
}

/* Responzivnost za manje ekrane */
@media (max-width: 768px) {
  .container .box img {
    border-radius: 4px; /* Manji radius na mobilnim uređajima */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Lakša senka */
  }
}

.container .box h1,
.container .card h1 {
  font-size: 32px;
  text-align: right;
  color: #000;
  margin: 20px 0px 20px 0px;
}

.container .box h2,
.container .card h2 {
  text-align: left;
  margin: 20px 0px 20px 0px;
  color: var(--color-primary-dark);
  font-size: 30px;
}

.container .box h3,
.container .card h3 {
  text-align: left;
  margin: 20px 0px 20px 0px;
  font-size: 26px;
  font-weight: 800;
  color: var(--color-primary-dark) !important;
}

.container .box h4,
.container .card h4 {
  text-align: left;
  margin: 20px 0px 20px 0px;
  font-size: 22px;
  font-style: italic;
  font-weight: 800;
  color: var(--color-primary);
}

.container .box h5,
.container .card h5 {
  text-align: left;
  margin: 20px 0px 20px 0px;
  font-size: 18px;
  color: var(--color-primary-light);
}

.container .box h6,
.container .card h6 {
  text-align: left;
  margin: 20px 0px 20px 0px;
  font-size: 18px;
  color: var(--color-font);
}

.container .card {
  position: relative;
  margin: 0px 0px 20px 28px;
  float: left;
  width: 350px;
  height: auto;
  background: var(--color-one);
  border-radius: 20px;
  border: 1px solid var(--color-primary-light);
  transition: all 0.3s ease-in-out;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.container .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.container .content {
  position: relative;
  padding: 20px 24px 20px 24px;
}

.container .card .content .imgBx {
  position: relative;
  width: 100%;
  height: 170px;
  overflow: hidden;
}

.container .content .icon {
	  align-items: center;
	  display: flex;
	  justify-content: center;
	  width: 80px;
	  height: 80px;
	  border-radius: 100%;
      margin-bottom: 1rem;
      background-color: var(--color-primary-light);
	  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }

.container .content .icon i {
      font-size: 32px !important;
      color: var(--color-one) !important;
    }

.container .card .content .icon img {
  width: 120px;
  height: 100%;
}

.container .card .content .imgBx img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.container .card .content .imgBlog {
  position: relative;
  width: 100%;
  height: 150px;
  overflow: hidden;
}

.container .card .content .imgBlog img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.container .card .content .contentBx p {
  font-size: 16px; 
  font-weight: 300;
  text-transform: initial;
}

a[itemprop="url"] {
  display: inline-block;
  position: relative;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  background: var(--color-primary-dark);
  padding: 12px 24px;
  margin: 20px 0px 0px 0px;
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

a[itemprop="url"]:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

a[itemprop="url"] span {
  position: relative;
  color: #fff;
  z-index: 1;
}

a[itemprop="url"] .liquid {
  position: absolute;
  top: -80px;
  left: 0;
  width: 100%;
  height: 200px;
  background: rgba(255, 255, 255, 0.2);
  z-index: 0;
  transition: transform 0.5s ease;
  transform: translateY(100%);
}

a[itemprop="url"]:hover .liquid {
  transform: translateY(0);
}

.container .poravnanje {
  font-size: 18px;
  text-align: left;
  margin: 12px 12px 0px 12px;
}

.zoom-effect {
  display: inline-block;
  overflow: hidden;
}

.zoom-effect img {
  transition: transform 4s;
}

.zoom-effect:hover img {
  transform: scale(1.2);
}

.container .fa-angle-double-right,
.container .fa-question-circle-o {
  cursor: pointer;
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  background-color: var(--color-background);
  color: var(--color-primary);
  border-radius: 50%;
  text-align: center;
  font-size: 20px;
  margin: 0px 0px 0px 10px;
}

.container .box ul {
  margin: 20px 0px 20px 20px;
}

.container .box li {
  list-style: none;
}

.container .box p {
  font-size: 18px;
  margin: 6px auto;
}

.container-b .box-b p {
  font-size: 12px;
  margin: 0px 0px 20px 0px;
  text-align: left;
}

.container-b .box-b a {
  color: var(--color-one) !important;
}

.container-b .box-b i {
  margin: 0px 6px 0px 0px;
  background-color: var(--color-primary);
  color: #000;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  text-align: center;
  line-height: 16px;
  font-size: 10px;
}

.container .box .white-font {
  color: var(--color-default);
}

.container span {
  font-weight: 700;
}

.line-up {
  border-top: 1px solid #f0f0f0;
}

.cube-o {
  position: relative;
  margin: 50px auto;
  width: 100%;
  height: auto;
}

.container-b {
  position: relative;
  margin: 50px auto;
  display: flex;
  flex-wrap: wrap;
  width: 1200px;
  height: auto;
  background-color: transparent;
  color: #f0f0f0;
  padding-bottom: 34px;
}

.container-b .box-b {
  position: relative;
  float: left;
  width: 350px;
  height: auto;
  font-size: 18px;
  margin: 34px 0px 0px 34px;
  text-align: center;
}

.container .box .fa-icon {
  background-color: var(--color-ltt);
  color: var(--color-one);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  font-size: 16px;
  font-weight: 700;
  margin: 10px;
}

.container-b .box-b h4 {
  font-size: 18px;
  color: var(--color-primary);
  text-align: left;
  margin: 0px 0px 12px 0px;
}

.container-b .box-b .web {
  color: var(--color-primary);
}

#call-icons {
  position: fixed;
  bottom: 30px;
  right: 20px;
  z-index: 9999;
}

#call-icons img {
  width: 50px;
  height: 50px;
  margin-right: 10px;
  -webkit-filter: drop-shadow(5px 5px 5px #090909);
  filter: drop-shadow(5px 5px 5px #090909);
  cursor: pointer;
  transition: transform 0.3s ease;
}

#call-icons img:hover {
  transform: scale(1.1);
}

.telefon-icon {
  position: fixed;
  padding: 6px 32px 6px 32px;
  bottom: 0;
  right: 15px;
  cursor: pointer;
  background-color: var(--color-primary);
}

.notification {
  width: 10px;
  height: 10px;
  background-color: #d50808;
  border-radius: 50%;
  position: absolute;
  top: 5px;
  right: 5px;
  transition: background-color 0.5s ease;
}

.notification.pulsate {
  animation: pulsate 1s infinite;
}

@keyframes pulsate {
    0% {
      box-shadow: 0 0 5px 0px #0e9916;
    }
    50% {
      box-shadow: 0 0 20px 10px rgba(0, 128, 0, 0);
    }
    100% {
      box-shadow: 0 0 5px 0px #0e9916;
    }
}

/******************************

GALLERY

*******************************/

.gallery-container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  padding: 20px 0px 0px 0px;
  margin: 50px auto;
  width: 1200px;
  height: auto;
  border-radius: 8px;
}

.gallery-container h4 {
  position: relative;
  width: 100%;
  padding: 0px 0px 10px 0px;
  text-align: center;
  font-size: 18px;
  color: var(--color-primary);
}

.gallery-container .gallery-item {
  position: relative;
  margin: 0px 0px 20px 20px;
  float: left;
  width: 275px;
  height: 280px;
  transition: 0.5s ease-in-out;
}

.gallery-container .gallery-item:hover {
  transform: translate(0px,-5px);
  box-shadow: -4px -4px 10px #ababab, 4px 4px 10px #ababab;
}

.gallery-container .gallery-item img {
  width: 100%;
  height: 100%;
}

.lightbox {
  position: fixed;
  display: none;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100vh;              
  overflow: auto;
  top: 0;
  left: 0;
  z-index: 9999;
}

.lightbox::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 1;
  transition: opacity 0.3s ease;
}

.lightbox-content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  height: 100vh;
  margin: auto;
}

.lightbox-content img {
  border-radius: 8px;
  box-shadow: 0 0 3px 0 rgba(225, 225, 225, .25);
  border: 2px solid #252525;
  width: 520px;
  height: auto;
  object-fit: cover;
  transition: 0.5s ease-in-out;
}

.lightbox-content img:hover {
  transform: translate(0px,-5px);
  box-shadow: -4px -4px 10px #000, 4px 4px 10px #000;
}

.lightbox-prev,
.lightbox-next {
  position: absolute !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  text-align: center !important;
  background-color: var(--color-primary);
  border-radius: 50% !important;
  width: 50px !important;
  height: 50px !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  margin: 10px !important;
  color: #303A48 !important;
  border: 2px solid #252525;
  top: 45% !important;
  cursor: pointer !important;
}

.lightbox-next {
  margin: 0px -120px 0px 0px;
  right: 0;
  opacity: 0.5;
}

.lightbox-prev {
  margin: 0px 0px 0px -120px;
  left: 0;
  opacity: 0.5;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  opacity: 1;
}

.lightbox-close {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  top: 30px;
  right: 30px;
  width: 38px;
  height: 38px;
  cursor: pointer;
  background-color: var(--color-primary);
  color: var(--color-default);
  font-size: 28px;
  border: 2px solid #252525;
  border-radius: 100px;
  z-index: 1000;
}

/******************************

FOOTER

*******************************/

.footer {
  background-color: #000;
  padding: 50px 0px 0px 0px;
}

.copyright {
  position: relative;
  width: 100%;
  height: 42px;
  float: left;
  text-align: center;
  margin: 0 auto;
  font-size: 12px;
}

.copyright .border-line {
  position: relative;
  display: block;
  margin: auto;
  width: 70%;
  height: 1px;
  background-color: #f0f0f0;
}

.copyright p {
  margin: 10px auto;
  color: #f0f0f0;
  font-size: 12px;
}

/******************************

FORMS

*******************************/
.form-group {
  margin-bottom: 1.2rem;
}

label {
  display: block;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: var(--color-one);
}

input, textarea {
  width: 90%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 5px rgba(52, 152, 219, 0.3);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

#contactForm button {
  width: 90%;
  padding: 0.8rem;
  background-color: var(--color-primary);
  color: var(--color-one);
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#contactForm button:hover {
  opacity: 0.7;
}

.error {
  color: #e74c3c;
  font-size: 0.9rem;
  margin-top: 0.3rem;
  display: none;
}

/******************************

PAGE HEADER

*******************************/
.page-header {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 90px auto;
  width: 100%;
  height: 280px;
  overflow: hidden;
  z-index: 1;
  border-bottom: 1px solid var(--color-primary-dark);
  box-shadow: inset 0 -30px 30px -20px rgba(0, 0, 0, 0.3);
}

.page-header h1 {
  font-size: 28px;
  color: var(--color-one);
  z-index: 3;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-primary-dark);
  opacity: 0.8;
  z-index: 2;
}

.breadcrumb {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 40px;
  background-color: var(--color-primary);
  color: var(--color-one);
  font-size: 14px;
  z-index: 3;
}

.breadcrumb span {
  margin: 0px 12px 0px 12px;
  color: #e7a300;
}

.breadcrumb i {
  margin: 0px 8px 0px 0px;
  color: #e7a300;
}

.page-header-slider {
  position: relative;
  margin: 90px auto;
  width: 100%;
  height: 320px;
  overflow: hidden;
}

.page-header-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}

.page-header-box.active {
  opacity: 1;
  z-index: 1;
}

/******************************

TESTIMONIALS

*******************************/


        .container-2 {
            max-width: 1200px;
            margin: 0 auto 80px auto;
        }

        #properties-slider-2 {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            gap: 20px;
            padding: 20px;
            scroll-behavior: smooth;
        }

        .div-box {
            flex: 0 0 30%;
            min-width: 300px;
            background: #f9f9f9;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            text-align: center;
            scroll-snap-align: start;
        }

        .div-box img {
            width: 50px;
            height: 50px;
            margin-bottom: 10px;
        }

        .div-box h4 {
            font-size: 1.5em;
            margin: 10px 0;
        }

        .div-box h5 {
            font-size: 1.2em;
            color: #555;
            margin: 5px 0;
        }

        .star {
            color: #ffd700;
            font-size: 1.2em;
            margin: 5px 2px;
            display: inline-block;
        }

        .div-box p {
            font-size: 1em;
            color: #333;
            margin-top: 10px;
        }

        .slick-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            font-size: 2em;
            color: #ff7e5f;
            cursor: pointer;
            text-decoration: none;
        }

        .slick-prev {
            left: -40px;
        }

        .slick-next {
            right: -40px;
        }

        @media (max-width: 1100px) {
            .div-box {
                flex: 0 0 80%;
                min-width: 80%;
            }
        }

        @media (max-width: 767px) {
            .div-box {
                flex: 0 0 90%;
                min-width: 90%;
            }

            .slick-prev {
                left: 10px;
            }

            .slick-next {
                right: 10px;
            }
        }

        @media (max-width: 530px) {
            .div-box {
                flex: 0 0 100%;
                min-width: 100%;
            }
        }

/******************************

COOKIE

*******************************/

    #cookie-consent-banner {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        max-width: 520px;
        background: #222;
        color: #fff;
        padding: 20px 25px;
        text-align: center;
        z-index: 9999;
        font-size: 15px;
        line-height: 1.4em;
        border-radius: 14px;
        box-shadow: 0 6px 25px rgba(0,0,0,0.35);
        font-family: Arial, sans-serif;
    }
    #cookie-consent-banner button {
        margin: 8px 6px 0;
        padding: 9px 16px;
        border: none;
        border-radius: 6px;
        cursor: pointer;
        font-size: 14px;
        transition: all 0.2s ease-in-out;
    }
    #acceptCookies, #confirmSelection {
        background: #01b803;
        color: #fff;
    }
    #acceptCookies:hover, #confirmSelection:hover {
        background: #029a03;
        transform: translateY(-1px);
    }
    #rejectCookies {
        background: #e30000;
        color: #fff;
    }
    #rejectCookies:hover {
        background: #c20000;
        transform: translateY(-1px);
    }
    .cookie-toggle-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 8px 0;
        font-size: 14px;
    }
    .cookie-switch {
        position: relative;
        display: inline-block;
        width: 52px;
        height: 26px;
    }
    .cookie-switch input { display:none; }
    .cookie-slider {
        position: absolute;
        cursor: pointer;
        top:0; left:0; right:0; bottom:0;
        background-color:#ccc;
        transition:.4s;
        border-radius: 34px;
    }
    .cookie-slider:before {
        position: absolute;
        content:"";
        height:20px; width:20px;
        left:3px; bottom:3px;
        background-color:white;
        transition:.4s;
        border-radius:50%;
    }
    .cookie-switch input:checked + .cookie-slider {
        background-color:#01b803;
    }
    .cookie-switch input:checked + .cookie-slider:before {
        transform: translateX(26px);
    }

    #cookie-settings-btn {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background: #444;
        color: #fff;
        border: none;
        padding: 8px 14px;
        border-radius: 8px;
        font-size: 14px;
        cursor: pointer;
        z-index: 9998;
        display: none;
    }
    #cookie-settings-btn:hover {
        background: #666;
    }

    @media (max-width:600px){
        #cookie-consent-banner { font-size:14px; padding:15px; }
        #cookie-consent-banner button { width:100%; margin:6px 0; }
    }

/******************************

RESPONSIVE

*******************************/

@media only screen and (max-width: 1080px) {

  .container {
    width: 750px;
  }
  
  .container .box {
    margin: 34px 0px 0px 100px;
  }
  
  .base {
    width: 750px;
  }
  
  .base .side {
    margin: 34px 0px 0px 100px;
  }
  
  .container .card {
    width: 320px;
  }
  
  .container-b {
    width: 750px;
  }
  
  .container-b .box-b {
    width: 320px;
  }
  
  .gallery-container {
    width: 720px;
  }
  
  .gallery-container .gallery-item {
    width: 330px;
  }

}

@media only screen and (max-width: 770px) {

  .sk-cube-grid {
    width: 300px;
    height: 300px;
    margin: 160px auto;
  }

  .section h1 {
    font-size: 22px;
    margin: 0px 8px 30px 8px;
  }

  .section h5 {
    font-size: 16px;
  }

  .container .box h3 {
    font-size: 16px;
  }
  
  .base .side h3 {
    font-size: 16px;
  }

  .section .bor-border {
    width: 70%;
  }

  .container {
    width: 100%;
  }

  .container .box {
    width: 360px;
    margin: 20px auto;
  }

  .base {
    width: 100%;
  }

  .base .side {
    width: 360px;
    margin: 50px auto;
  }
  
  .container .card {
    width: 360px;
    margin: 20px auto;
  }

  .container .box h1 {
    font-size: 20px;
  }

  .container .box p {
    font-size: 16px;
  }

  .container .poravnanje {
    font-size: 16px;
  }

  .form-control {
    width: 94%;
    font-size: 16px;
  }

  .container-b .box-b h6 {
    margin: 6px 0px 6px 0px;
    font-size: 16px;
  } 

  .submit {
    width: 110px;
    font-size: 16px ;
  }

  .container-b .box-b h5 {
    font-size: 16px;
  }

  .container-b {
    width: 98%;
  }

  .container-b .box-b {
    width: 360px;
    margin: 20px auto;
    font-size: 16px;
  }

  .gallery-container {
    width: 100%;
    padding: 2% 0px 0px 0px;
  }

  .gallery-container .gallery-item {
    width: 47%;
    height: 200px;
    margin: 0px 0px 2% 2%;
  }

  .lightbox-content {
    width: 84%;
    margin: 100px auto;
  }

  .gallery-container .gallery-item a.info {
    top: 140px;
    right: 0px;
  }
  
  .lightbox-content img {
    width: 100%;
  }
  
  -webkit-transform: scale(1);
    transform: scale(1);
  }

  .lightbox-next {
    margin: 0;
    right: 0;
  }

  .lightbox-prev {
    margin: 0;
    left: 0;
  }

  #call-icons {
    bottom: 80px;
  }

  .copyright {
    font-size: 16px;
  }
  
  input.captcha-btn {
    margin: 20px 0 20px 0 !important;
 }
}

@media only screen and (max-width: 380px) {
  .container .box {
   width: 310px;
  }

  .container .box img {
    width: 290px;
  }

  .base .side {
   width: 310px;
  }

  .base .side img {
    width: 290px;
  }

  .gallery-container .gallery-item {
    width: 310px;
  }
}