    body {
      margin: 0;
      font-family: 'Poppins', sans-serif;
      background: #fff;
      min-height: 2000px;
    }

    nav.navbar-custom {
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 1030;
      transition: background-color 0.4s ease, box-shadow 0.4s ease;
      box-shadow: none;
      background-color: transparent;
      flex-direction: column;
    }

nav.navbar-custom.scrolled {
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
backdrop-filter: saturate(180%) blur(8px);
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255,255,255,0.03),
    rgba(255,255,255,0.03) 1px,
    transparent 1px,
    transparent 10px
  );
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}


    /* Top bar stil */
    .navbar-topbar {
      font-size: 1.1rem;
      color: white;
      background: transparent;
      padding: 0.3rem 5rem;
      display: flex;
      justify-content: flex-end;
      gap: 2rem;
      user-select: none;
      transition: color 0.3s ease;
		width: 100%;  /* dodaj ovu liniju */
    }
    nav.navbar-custom.scrolled .navbar-topbar {
      color: white;
    }

    /* Glavni meni padding i boje */
    .navbar-main {
      padding: 0.1rem 3rem;
      background: transparent;
      transition: background-color 0.4s ease;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    nav.navbar-custom.scrolled .navbar-main {
      background: transparent;
    }

    /* Logo stilizacija */
    .navbar-brand {
	  color: white; /* plava, ili bilo koja druga boja */
      font-weight: 800;
      font-size: 1.6rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      text-shadow: 1px 1px 2px rgba(0,0,0,0.15);
      transition: color 0.3s ease;
      user-select: none;
      display: flex;
      align-items: center;
      gap: 8px;
      cursor: pointer;
      flex-shrink: 0;
    }
    .navbar-brand svg {
      width: 28px;
      height: 28px;
      fill: none;
      stroke: currentColor;
      stroke-width: 2;
      stroke-linejoin: round;
      stroke-linecap: round;
      transition: stroke 0.3s ease;
    }
    nav.navbar-custom:not(.scrolled) .navbar-brand:hover {
      color: #e67e22;
    }
    nav.navbar-custom:not(.scrolled) .navbar-brand:hover svg {
      stroke: #e67e22;
    }
    nav.navbar-custom.scrolled .navbar-brand:hover {
      color: #f39c12;
    }
    nav.navbar-custom.scrolled .navbar-brand:hover svg {
      stroke: #f39c12;
    }

    /* Linkovi */
    nav.navbar-custom .nav-link {
      color: white !important;
      transition: color 0.3s ease;
    }
    nav.navbar-custom.scrolled .nav-link {
      color: white !important;
    }

    /* Dugme GET STARTED */
nav.navbar-custom .btn-get-started {
  background: black;
  color: white !important;
  border: 2px solid white;  /* DODATO: vidljiv okvir */
  font-weight: 700;
  padding: 0.55rem 1.8rem;
  border-radius: 30px;
  font-size: 0.9rem;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(255 255 255 / 0.4); /* svetliji sjaj */
  white-space: nowrap;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
  display: inline-block;
}
nav.navbar-custom .btn-get-started:hover,
nav.navbar-custom .btn-get-started:focus {
  background: #444;
  color: white !important;
  border-color: #e67e22; /* promena boje ivice na hover */
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(0 0 0 / 0.5);
  filter: brightness(1.1);
  transition: all 0.3s ease;
  text-decoration: none;
}

    nav.navbar-custom.scrolled .btn-get-started {
      background: white;
      color: black !important;
      box-shadow: 0 4px 12px rgba(255 255 255 / 0.5);
    }
    nav.navbar-custom.scrolled .btn-get-started:hover,
    nav.navbar-custom.scrolled .btn-get-started:focus {
      background: #e67e22;
      color: white !important;
      box-shadow: 0 6px 18px rgba(0 0 0 / 0.3);
    }


    /* Hover na linkove */
    nav.navbar-custom .nav-link:hover,
    nav.navbar-custom .nav-link:focus {
      color: #d35400 !important;
      background-color: rgba(0, 0, 0, 0.05);
      border-radius: 4px;
      transition: background-color 0.3s ease, color 0.3s ease;
    }
    nav.navbar-custom.scrolled .nav-link:hover,
    nav.navbar-custom.scrolled .nav-link:focus {
      color: #f9f9f9 !important;
      background-color: rgba(255, 255, 255, 0.15);
      border-radius: 4px;
      transition: background-color 0.3s ease, color 0.3s ease;
    }

    .dropdown-menu {
      background-color: white;
      border-radius: 8px;
      border: none;
      margin-top: 0.4rem;
      min-width: 160px;
      box-shadow: 0 6px 20px rgba(211, 84, 0, 0.4);
      transition: opacity 0.3s ease;
    }
    .dropdown-item {
      color: #222;
      font-weight: 600;
      padding: 0.5rem 1.5rem;
      transition: background-color 0.3s ease, color 0.3s ease;
      text-decoration: none;
    }
    .dropdown-item:hover,
    .dropdown-item:focus {
      background-color: #d35400;
      color: white;
      border-radius: 6px;
    }
    .nav-link.dropdown-toggle::after {
      border-top-color: black;
      margin-left: 6px;
      transition: border-top-color 0.3s ease;
    }
    nav.navbar-custom.scrolled .nav-link.dropdown-toggle::after {
      border-top-color: white;
    }

    /* Navbar toggler */
    .navbar-toggler {
	  filter: invert(1);
      border: none;
      opacity: 0.85;
      transition: opacity 0.3s ease;
    }
    .navbar-toggler:hover {
      opacity: 1;
    }
    nav.navbar-custom.scrolled .navbar-toggler {
      filter: invert(1);
    }

    /* Responsive topbar za manje ekrane */
    @media (max-width: 991px) {
      .navbar-topbar {
        justify-content: center;
        padding: 0.3rem 1rem;
        font-size: 0.75rem;
      }
    }

/* HERO sekcija - optimizovana za brzinu i glatkoću */
#hero {
  padding-top: 110px;
  height: 100vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1.2;
  font-family: 'Poppins', sans-serif;
  user-select: none;
  background: url('abstract.webp') no-repeat center center/cover;
  box-shadow: inset -20px 0 40px -15px rgba(0, 0, 0, 0.3);
  padding-left: 6rem;
  padding-right: 6rem;

  /* GPU akceleracija za transformacije i opacity */
  will-change: transform, opacity;
}

#hero .left {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  will-change: transform, opacity;
}

#hero .right {
  width: 50%;
  height: 100%;
  background-image: url('pc2.webp');
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  border-radius: 0 0 0 150px;
  animation: float 4s ease-in-out infinite;

  /* Masku sam malo pojednostavio radi bolje performanse */
  -webkit-mask-image: radial-gradient(
    ellipse at 60% 60%,
    rgba(0, 0, 0, 1) 20%,
    rgba(0, 0, 0, 0.7) 45%,
    rgba(0, 0, 0, 0.3) 65%,
    rgba(0, 0, 0, 0) 85%
  );
  -webkit-mask-size: 150% 150%;
  -webkit-mask-repeat: no-repeat;
  mask-image: radial-gradient(
    ellipse at 50% 50%,
    rgba(0, 0, 0, 1) 20%,
    rgba(0, 0, 0, 0.7) 45%,
    rgba(0, 0, 0, 0.3) 65%,
    rgba(0, 0, 0, 0) 85%
  );
  mask-size: 150% 150%;
  mask-repeat: no-repeat;
  will-change: transform;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); } /* smanjeno pomeranje */
}

#hero h1 {
  font-size: 2.5rem;
  line-height: 1.1;
  margin: 0;
  text-transform: uppercase;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.3);
  will-change: opacity, transform;
}

#hero p {
  font-size: 1.2rem;
  max-width: 360px;
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.25);
  will-change: opacity, transform;
}

#hero .btn-hero {
  background-color: white;
  color: #f15a24;
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 30px;
  padding: 0.7rem 2.2rem;
  border: none;
  cursor: pointer;
  user-select: none;
  width: fit-content;
  box-shadow: 0 6px 18px rgba(241, 90, 36, 0.5);
  transition: background-color 0.2s ease, color 0.2s ease; /* skraćeno */
  will-change: background-color, color;
}
#hero .btn-hero:hover,
#hero .btn-hero:focus {
  background-color: #d35400;
  color: white;
  box-shadow: 0 6px 18px rgba(0,0,0,0.6);
  transition: all 0.2s ease; /* skraćeno */
  outline: none;
}

/* Animacije za tekst i dugme - skraćene i ubrzane */
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

#hero .left > h1,
#hero .left > p {
  animation: fadeInLeft 1.5s ease forwards;
}

#hero .left > .btn-hero {
  opacity: 0;
  animation: fadeInLeft 0.7s ease forwards;
  animation-delay: 0.7s;
}

/* Optimizacija shake animacije logoa */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
  25% { transform: translateX(-3px); }
  75% { transform: translateX(-6px); }
}

.navbar-brand svg {
  animation: shake 2.5s ease-in-out infinite;
  will-change: transform;
}

/* Dugme "Get Started" pulsiranje malo brže */
@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 10px 3px rgba(230, 126, 34, 0.6);
  }
  50% {
    box-shadow: 0 0 20px 6px rgba(230, 126, 34, 1);
  }
}

.btn-get-started {
  animation: pulseGlow 2s infinite ease-in-out;
  will-change: box-shadow;
}


#why-us {
  background: #fdfdfd;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.why-title {
  font-size: 2.2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #222;
  margin-bottom: 1rem;
}

.why-desc {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 1.5rem;
  max-width: 500px;
}

.why-list {
  list-style: none;
  padding: 0;
  font-size: 1rem;
  color: #333;
}

.why-list li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  font-weight: 500;
}

.animate-fadein {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1.5s ease-in-out forwards;
  animation-delay: 0.5s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
	  
.hover-effect {
  transition: all 0.3s ease;
  cursor: pointer;
}
.hover-effect:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  background: #f9f9ff;
}

.step-icon {
  font-size: 2.5rem;
  color: #0d6efd;
  transition: transform 0.3s ease, color 0.3s ease;
}
.hover-effect:hover .step-icon {
  color: #ffc107;
  transform: scale(1.2);
  filter: drop-shadow(0 0 6px #ffd85d);
}

.btn-animate {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-animate:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
/* Dugme za kontakt */
.btn-contact {
  background: linear-gradient(135deg, #1976d2, #64b5f6);
  border-radius: 12px;
  padding: 12px 0;
  font-size: 1.2rem;
  transition: background 0.4s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(25, 118, 210, 0.5);
  display: inline-block;
  text-decoration: none;
}

.btn-contact:hover, .btn-contact:focus {
  background: linear-gradient(135deg, #64b5f6, #1976d2);
  box-shadow: 0 6px 20px rgba(100, 181, 246, 0.75);
  transform: translateY(-2px);
  outline: none;
}

/* FAQ stilovi */
.faq-question {
  background: rgba(255 255 255 / 0.1);
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover, .faq-question:focus {
  background: rgba(255 255 255 / 0.2);
  outline: none;
}

.faq-answer {
  font-size: 1rem;
  line-height: 1.5;
  transition: max-height 0.35s ease;
}

/* Za animaciju otvaranja odgovora možeš koristiti bootstrap collapse, ili JS */

.site-footer {
  background-color: #1a1a1a;
  color: white;
  font-family: 'Poppins', sans-serif;
}

.site-footer a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-footer a:hover,
.site-footer a:focus {
  color: white; 
  text-decoration: underline;
}

.footer-title {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.social-icons a {
  display: inline-block;
  margin-right: 15px;
  font-size: 1.5rem;
  color: white;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #c78f00;
}

.footer-divider {
  border-color: #444;
  margin: 2rem 0 1.5rem;
}

@media (max-width: 576px) {
  .social-icons a {
    margin-right: 10px;
    font-size: 1.3rem;
  }
}



/*zasto bas mi efekat*/
.zoom-animation {
  animation: zoomInOut 3s ease-in-out infinite;
  display: inline-block;
}

@keyframes zoomInOut {
  0% {
    transform: scale(0.9);
  }
  50% {
    transform: scale(1.10);
  }
  100% {
    transform: scale(0.9);
  }
}



@media (max-width: 991px) {
  #hero {
    flex-direction: column;
    padding-left: 2rem;
    padding-right: 2rem;
    height: auto; /* da ne bude visina 100vh već da može da raste */
    font-size: 1.8rem; /* manji font za manje ekrane */
  }
  #hero .left,
  #hero .right {
    width: 100%;
  }
  #hero .right {
    border-radius: 0 0 0 0; /* ukloni zaobljenje na manjim ekranima */
    height: 300px; /* fiksna visina za sliku */
    margin-top: 2rem;
  }
}

@media (max-width: 575px) {
  #hero {
    padding-left: 1rem;
    padding-right: 1rem;
    font-size: 1.4rem;
  }
  #hero p {
    max-width: 100%; /* da tekst zauzima celu širinu */
    font-size: 1rem;
  }
  #hero .btn-hero {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
  }
  #hero .right {
    height: 200px; /* još manja visina za sliku na mobilnim */
  }
}


/*hamburger menu pozadina*/
@media (max-width: 991px) {
  .navbar-collapse {
    background-color: rgba(0, 0, 0, 0.85); /* tamna poluprovidna pozadina */
    padding: 1rem 2rem;
    backdrop-filter: blur(8px);
    border-radius: 0 0 12px 12px;
  }

  .navbar-nav {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-link {
    font-size: 1.1rem;
    text-align: center;
  }
}

@media (max-width: 767px) {
  #hero .right {
    -webkit-mask-image: none;
    mask-image: none;
    will-change: auto;
    animation: none;
  }

  #hero .left,
  #hero .btn-hero,
  #hero h1,
  #hero p {
    will-change: auto;
  }
}


@media (max-width: 991px) {
  .navbar-main {
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 0.5rem 1rem !important;
  }

  .navbar-brand {
    font-size: 1.2rem !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px;
    max-width: 100%;
    flex-shrink: 1;
  }

  .navbar-brand svg {
    width: 24px !important;
    height: 24px !important;
    flex-shrink: 0;
  }

  .navbar-toggler {
    margin-left: auto !important;
    flex-shrink: 0;
  }
}



.hero-kontakt {
  background: url('kontakt.webp') no-repeat center center;
  height: 50vh;
  min-height: 350px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-kontakt::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-kontakt .container {
  position: relative;
  z-index: 2;
}

.kontakt-sekcija a {
  color: #0d6efd;
  text-decoration: none;
}
.kontakt-sekcija a:hover {
  text-decoration: underline;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-footer {
  margin-top: auto;
}

html, body {
  overflow-x: hidden;
}


.hero-izrada {
  background: url('izradasajtacover.webp') no-repeat center center;
  height: 50vh;
  min-height: 350px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-izrada::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-izrada .container {
  position: relative;
  z-index: 2;
}




.hero-onama {
  background: url('onama.webp') no-repeat center center;
  height: 50vh;
  min-height: 350px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-onama::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-onama .container {
  position: relative;
  z-index: 2;
}

.btn-hero {
  text-decoration: none;
}


.pricing-card {
    display: flex;
    flex-direction: column;
}

.pricing-card .price {
    margin-top: auto;
}

.pricing-card a.btn {
    margin-top: auto;
}
.pricing-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card .btn-get-started {
    margin-top: auto; /* poravnava dugme dole */
}




