.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1180px;
  }
}


/* ============================================================
   HEADER & NAVBAR
   ============================================================ */
header {
    position: relative;
    z-index: 999;
    background: transparent;
    padding: 0;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    height: 80px;
}

/* ----- Logo ----- */
.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo a,
.custom-logo-link {
    display: inline-flex;
    align-items: center;
}

.custom-logo,
.nav-logo img {
    height: 56px;
    width: auto;
    max-height: 56px;
    display: block;
}

.nav-logo span {
    font-size: 20px;
    font-weight: 800;
    color: #0d3b66;
    letter-spacing: 2px;
}

/* ----- Nav links ----- */
.nav-menu {
    flex: 1;
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-links .nav-item a {
    color: #0d3b66;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 7px 15px;
    border-radius: 8px;
    transition: background 0.2s ease, color 0.2s ease;
    white-space: nowrap;
    display: block;
}

.nav-links .nav-item a:hover {
    background: rgba(13, 59, 102, 0.08);
    color: #0d3b66;
}

.nav-links .nav-item a.active,
.nav-links .nav-item.current-menu-item > a {
    background: rgba(2, 136, 209, 0.1);
    color: #0288D1;
}

/* ----- Nav contact ----- */
.nav-contact {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.nav-email {
    color: #4a7fa5;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    transition: color 0.2s;
}

.nav-email:hover {
    color: #0d3b66;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #4FC3F7 0%, #0288D1 100%);
    color: #fff !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    padding: 9px 20px;
    border-radius: 25px;
    white-space: nowrap;
    box-shadow: 0 3px 14px rgba(2, 136, 209, 0.32);
    transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

.nav-cta:hover {
    background: linear-gradient(135deg, #0288D1 0%, #01579B 100%);
    box-shadow: 0 5px 20px rgba(2, 136, 209, 0.45);
    transform: translateY(-1px);
    color: #fff !important;
}

/* ----- Hamburger ----- */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    margin-left: auto;
    border-radius: 8px;
    transition: background 0.2s;
}

.nav-toggle:hover {
    background: rgba(13, 59, 102, 0.08);
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #0d3b66;
    border-radius: 2px;
    transition: background 0.2s;
}

/* ----- Mobilni meni ----- */
@media (max-width: 992px) {
    .nav-toggle {
        display: flex;
    }

    .nav-contact {
        display: none;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: #fff;
        border-top: 1px solid rgba(13, 59, 102, 0.08);
        box-shadow: 0 8px 24px rgba(13, 59, 102, 0.1);
        padding: 12px 20px 20px;
        z-index: 998;
    }

    .nav-menu.open {
        display: block;
    }

    .nav-links {
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
    }

    .nav-links .nav-item a {
        padding: 11px 14px;
        border-radius: 8px;
        font-size: 15px;
    }

    /* Telefon dugme u mobilnom meniju */
    .nav-menu .nav-mobile-cta {
        display: block;
        margin-top: 14px;
        padding-top: 14px;
        border-top: 1px solid rgba(13, 59, 102, 0.08);
    }

    .nav-mobile-cta a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        background: linear-gradient(135deg, #4FC3F7 0%, #0288D1 100%);
        color: #fff;
        text-decoration: none;
        font-weight: 700;
        font-size: 15px;
        padding: 12px 20px;
        border-radius: 25px;
        box-shadow: 0 3px 14px rgba(2,136,209,0.3);
    }
}

/* Sakrij mobilno dugme na desktopu */
.nav-mobile-cta { display: none; }

/* Fallback tekst kada logo nije uploadovan */
.nav-logo-text {
    font-size: 22px;
    font-weight: 800;
    color: #0d3b66;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .custom-logo,
    .nav-logo img {
        height: 40px;
        max-height: 40px;
    }
}

.carousel{
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  margin-top: -80px;
  position: relative;
}

.carousel .list .item{
  position: absolute;
  inset: 0 0 0 0;
}

.carousel .list .item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel .list .item .content{
  position: absolute;
  top: 20%;
  width: 1140px;
  max-width: 80%;
  left: 50%;
  transform: translateX(-50%);
  padding-right: 30%;
  box-sizing: border-box;
  color: #fff;
  text-shadow: 0 5px 10px #0004;
}

.carousel .list .item .content .author{
  font-weight: bold;
  letter-spacing: 10px;
}

.carousel .list .item .content .title,
.carousel .list .item .content .topic{
  font-weight: bold;
  font-size: 5em;
  list-style: 1.3em;
}

.carousel .list .item .content .topic{
  color: #ffee00;
}

.carousel .list .item .content .buttons{
  display: grid;
  grid-template-columns: repeat(2, 130px);
  grid-template-rows: 40px;
  gap: 5px;
  margin-top: 20px;
}

.carousel .list .item .content button{
  border: none;
  background-color: #eee;
  letter-spacing: 3px;
  font-family: Poppins;
  font-weight: 500;
}

.carousel .list .item .content button:nth-child(2){
  background-color: transparent;
  color: #eee;
  border: 1px solid #eee;
}

/* thumbnail */
.thumbnail{
  position: absolute;
  bottom: 50px;
  left: 50%;
  width: max-content;
  z-index: 100;
  display: flex;
  gap: 20px;
}

.thumbnail .item{
  width: 150px;
  height: 220px;
  flex-shrink: 0;
  position: relative;
}

.thumbnail .item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.thumbnail .item .content{
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
}

.thumbnail .item .content .title{
  font-weight: bold;
}

/* arrow */
.arrows{
  position: absolute;
  top: 80%;
  right: 52%;
  width: 300px;
  max-width: 30%;
  display: flex;
  gap: 10px;
  align-items: center;
}

.arrows button{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #eee4;
  border: none;
  font-family: monospace;
  color: #fff;
  font-weight: bold;
  font-size: large;
  transition: .5s;
  z-index: 100;
}

.arrows button:hover{
  background-color: #eee;
  color: #555;
}

.carousel .list .item:nth-child(1){
  z-index: 1;
}

.carousel .list .item:nth-child(1) .author,
.carousel .list .item:nth-child(1) .title,
.carousel .list .item:nth-child(1) .topic,
.carousel .list .item:nth-child(1) .des,
.carousel .list .item:nth-child(1) .buttons{
  transform: translateY(50px);
  filter: blur(20px);
  opacity: 0;
  animation: showContent 0.5s 1s linear 1 forwards;
}

@keyframes showContent {
  to{
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

.carousel .list .item:nth-child(1) .title{
  animation-delay: 1.2s;
}

.carousel .list .item:nth-child(1) .topic{
  animation-delay: 1.4s;
}

.carousel .list .item:nth-child(1) .des{
  animation-delay: 1.6s;
}

.carousel .list .item:nth-child(1) .buttons{
  animation-delay: 1.8s;
}

/* effect next click */
.carousel.next .list .item:nth-child(1) img{
  width: 150px;
  height: 220px;
  position: absolute;
  left: 50%;
  bottom: 50px;
  border-radius: 20px;
  animation: showImage 0.5s linear 1 forwards;
}
@keyframes showImage{
  to{
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    border-radius: 0;
  }
}

.carousel.next .thumbnail .item:nth-last-child(1){
  width: 0;
  overflow: hidden;
  animation: showThumbnail .5s linear 1 forwards;
}
@keyframes showThumbnail{
  to{
    width: 150px;
  }
}

.carousel.next .thumbnail{
  transform: translateX(150px);
  animation: transformThumbnail .5s linear 1 forwards;
}
@keyframes transformThumbnail{
  to{
    transform: translateX(0);
  }
}

/* efect prev click */

.carousel.prev .list .item:nth-child(2){
  z-index: 2;
}

.carousel.prev .list .item:nth-child(2) img{
  position: absolute;
  bottom: 0;
  left: 0;
  animation: outImage 0.5s linear 1 forwards;
}
@keyframes outImage{
  to{
    width: 150px;
    height: 220px;
    border-radius: 20px;
    left: 50%;
    bottom: 50px;
  }
}

.carousel.prev .thumbnail .item:nth-child(1){
  width: 0;
  overflow: hidden;
  opacity: 0;
  animation: showThumbnail 0.5s linear forwards;
}

.carousel.prev .list .item:nth-child(2) .author,
.carousel.prev .item .item:nth-child(2) .title,
.carousel.prev .item .item:nth-child(2) .topic,
.carousel.prev .item .item:nth-child(2) .desc,
.carousel.prev .item .item:nth-child(2) .buttons{
  animation: contentOut 1.5s linear 1 forwards;
}
@keyframes contentOut{
  to{
    transform: translateY(-150px);
    filter: blur();
    opacity: 0;
  }
}

.carousel.next .arrows button,
.carousel.prev .arrows button{
  pointer-events: none;
}

.time{
  width: 0%;
  height: 5px;
  background-color: #f1683a;
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
}

.carousel.next .time,
.carousel.prev .time{
  width: 100%;
  animation: timeRunning 2s linear 1 forwards;
}
@keyframes timeRunning{
  to{
    width: 0;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== HEADER ===== */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #111;
}

.trust-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 14px;
  color: #666;
}

.trust-items span {
  display: flex;
  align-items: center;
  gap: 6px;
}



@media screen and (max-width: 678px) {
  .carousel .list .item .content{
    padding-right: 0;
  }

  .carousel .list .item .content .title{
    font-size: 30px;
  }
}

/* ===== NAŠI RADOVI — GALLERY SECTION ===== */

.gallery-section {
  padding: 80px 20px;
  background: #E8F4FD;
  position: relative;
}

.gallery-section > .container {
  position: relative;
  z-index: 1;
}

/* Header */
.gallery-header {
  text-align: center;
  margin-bottom: 48px;
}

.gallery-header h2 {
  font-size: 38px;
  font-weight: 700;
  color: #0d3b66;
  margin: 0 0 10px;
}

.gallery-subtitle {
  display: block;
  color: #ff7a00;
  font-style: italic;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 14px;
}

.gallery-header p {
  color: #666;
  font-size: 15px;
  line-height: 1.7;
  max-width: 460px;
  margin: 0 auto 18px;
}

.gallery-checks {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 600;
  color: #2e6da4;
}

/* 2x3 grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Jedan before/after slider */
.ba-slider {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 4 / 3;
  background: #d0e8f5;
  cursor: ew-resize;
  user-select: none;
  box-shadow: 0 4px 20px rgba(13, 59, 102, 0.1);
}

/* After slika (puna površina, iza) */
.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
  background: #d0e8f5;
}

/* Before wrapper (klipovan, leva strana) */
.ba-before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 50%;
  overflow: hidden;
  z-index: 2;
}

/* Before slika — širina se postavlja u JS-u */
.ba-before-img {
  position: absolute;
  inset: 0 auto 0 0;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #d0e8f5;
}

/* Vertikalna linija */
.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: #fff;
  transform: translateX(-50%);
  z-index: 10;
  cursor: ew-resize;
  box-shadow: 0 0 6px rgba(0,0,0,0.2);
}

/* Kružni handle */
.ba-knob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: #444;
  letter-spacing: -1px;
  white-space: nowrap;
}

/* Dugme ispod grida */
.gallery-cta {
  text-align: center;
  margin-top: 36px;
}

.gallery-btn {
  display: inline-block;
  padding: 14px 40px;
  border-radius: 25px;
  background: linear-gradient(135deg, #4FC3F7 0%, #0288D1 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(2,136,209,0.35);
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}

.gallery-btn:hover {
  background: linear-gradient(135deg, #0288D1 0%, #01579B 100%);
  box-shadow: 0 6px 22px rgba(2,136,209,0.45);
  transform: translateY(-2px);
  color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .gallery-header h2 {
    font-size: 28px;
  }
}


/* ===== CONTACT SECTION ===== */
.contact-section {
  position: relative;
  padding: 80px 20px;
  background: #E8F4FD;
}

.contact-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(80px, 15vw, 180px);
  font-weight: 900;
  color: #4CAF50;
  opacity: 0.06;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: 10px;
  z-index: 0;
}

.contact-layout {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 30px;
}

.contact-image {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  max-height: 500px;
  overflow: hidden;
}

.contact-image img {
  width: 100%;
  max-width: 280px;
  height: auto;
  object-fit: contain;
}

.contact-card {
  flex: 0 0 480px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  padding: 48px 40px;
}

.contact-subtitle {
  display: block;
  color: #ff7a00;
  font-style: italic;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 8px;
}

.contact-card h2 {
  font-size: 30px;
  font-weight: 700;
  color: #111;
  margin: 0 0 28px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  font-size: 14px;
  color: #333;
  background: #fafafa;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #ff7a00;
  background: #fff;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23999' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

.form-group--full {
  width: 100%;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-btn {
  width: 100%;
  padding: 15px;
  background: #ff7a00;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  font-family: inherit;
}

.contact-btn:hover {
  background: #e96d00;
  transform: translateY(-2px);
}

.form-note {
  text-align: center;
  font-size: 12px;
  color: #aaa;
  margin: 0;
}

@media (max-width: 992px) {
  .contact-image {
    display: none;
  }

  .contact-card {
    flex: 1;
    max-width: 560px;
    margin: 0 auto;
  }
}

@media (max-width: 560px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 32px 24px;
  }
}

/* ===== O NAMA ===== */
.onama-hero {
  background: #E8F4FD;
  padding: 80px 20px;
  text-align: center;
}

.onama-hero-subtitle {
  display: block;
  color: #ff7a00;
  font-style: italic;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 12px;
}

.onama-hero h1 {
  font-size: 52px;
  font-weight: 700;
  color: #111;
  margin: 0;
}

.onama-about {
  padding: 80px 20px;
  background: #E8F4FD;
}

.onama-about-layout {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.onama-about-text {
  flex: 1;
  min-width: 280px;
}

.onama-about-text h2 {
  font-size: 40px;
  font-weight: 600;
  color: #111;
  margin: 10px 0 20px;
}

.onama-about-text p {
  color: #555;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.onama-about-image {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.onama-about-image img {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
}

.onama-features {
  padding: 80px 20px;
  background: #E8F4FD;
}

.onama-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.onama-feature-item {
  background: #fff;
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.onama-feature-icon {
  width: 60px;
  height: 60px;
  background: #4CAF50;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 20px;
}

.onama-feature-item h3 {
  font-size: 18px;
  font-weight: 600;
  color: #111;
  margin: 0 0 10px;
}

.onama-feature-item p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.onama-stats {
  padding: 80px 20px;
  background: #111;
}

.onama-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
}

.onama-stat-number {
  font-size: 56px;
  font-weight: 800;
  color: #ff7a00;
  line-height: 1;
  margin-bottom: 10px;
}

.onama-stat-label {
  font-size: 16px;
  color: #ccc;
  font-weight: 500;
}

@media (max-width: 992px) {
  .onama-features-grid,
  .onama-stats-grid {
    grid-template-columns: 1fr;
  }

  .onama-about-layout {
    flex-direction: column;
  }

  .onama-hero h1 {
    font-size: 38px;
  }

  .onama-stat-number {
    font-size: 44px;
  }
}

/* ===== FOOTER ===== */
.site-footer {
  position: relative;
  background: linear-gradient(135deg, #29B6F6 0%, #0288D1 50%, #0277BD 100%);
  color: #fff;
  margin-top: -2px;
}

.footer-wave-svg {
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  height: 82px;
  display: block;
  pointer-events: none;
}

.footer-inner {
  padding: 115px 20px 0;
}

.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
}

.footer-col-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 24px;
}

/* Leva kolona — kontakti */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #fff;
}

.footer-contact-list li.footer-hours {
  opacity: 0.75;
  font-size: 14px;
}

.footer-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  color: #fff;
}

.footer-contact-list a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s;
}

.footer-contact-list a:hover {
  opacity: 0.75;
}

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

.footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255,255,255,0.18);
  color: #fff;
  text-decoration: none;
  transition: background 0.2s;
}

.footer-social-icon:hover {
  background: rgba(255,255,255,0.32);
}

/* Desna kolona — forma */
.footer-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-input {
  width: 100%;
  padding: 16px 24px;
  border-radius: 25px;
  border: 1.5px solid rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 15px;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.2s, background 0.2s;
}

.footer-input::placeholder {
  color: rgba(255,255,255,0.75);
}

.footer-input:focus {
  border-color: #fff;
  background: rgba(255,255,255,0.22);
}

.footer-btn {
  width: 100%;
  padding: 16px;
  border-radius: 25px;
  border: none;
  background: #fff;
  color: #0288D1;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}

.footer-btn:hover {
  background: #e8f4fd;
}

/* Copyright */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.25);
  text-align: center;
  padding: 20px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

@media (max-width: 768px) {
  .footer-cols {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ===== DEKORATIVNI KRUGOVI — SISTEM ===== */

html, body {
  overflow-x: hidden;
}

.why-us-section,
.clean-process-section,
.services-prices-section,
.gallery-section,
.reviews-section,
.faq-section,
.before-after-section,
.onama-hero,
.onama-about,
.onama-features {
  position: relative;
}

/* Sadržaj ostaje iznad krugova */
.why-us-section > .container,
.clean-process-section > .container,
.before-after-section > .container,
.onama-hero > .container,
.onama-about > .container,
.onama-features > .container {
  position: relative;
  z-index: 1;
}

.sec-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* ===== ZAŠTO NAS BIRAJU ===== */

.why-us-section {
  padding: 80px 20px;
  background: #E8F4FD;
}

.why-us-header {
  text-align: center;
  margin-bottom: 40px;
}

.why-us-header h2 {
  font-size: 40px;
  font-weight: 700;
  color: #0d3b66;
  margin: 0;
}

/* Jedan zajednički beli kontejner */
.why-us-box {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(13, 59, 102, 0.08);
  padding: 48px 40px;
  display: flex;
  align-items: flex-start;
}

/* Jedna stavka */
.why-us-item {
  flex: 1;
  text-align: center;
  padding: 0 32px;
}

/* Vertikalni separator */
.why-us-separator {
  width: 1px;
  align-self: stretch;
  background: #e0edf7;
  flex-shrink: 0;
}

/* Ikonica — plavi krug sa SVG */
.why-us-icon {
  width: 68px;
  height: 68px;
  background: #E8F4FD;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.why-us-icon svg {
  width: 30px;
  height: 30px;
  color: #1a7fc1;
  stroke: #1a7fc1;
}

.why-us-item h3 {
  font-size: 19px;
  font-weight: 700;
  color: #0d3b66;
  margin: 0 0 10px;
}

.why-us-item p {
  font-size: 14px;
  color: #777;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .why-us-box {
    flex-direction: column;
    align-items: center;
    padding: 36px 24px;
    gap: 0;
  }

  .why-us-item {
    padding: 28px 16px;
    width: 100%;
  }

  .why-us-separator {
    width: 100%;
    height: 1px;
    align-self: auto;
  }

  .why-us-header h2 {
    font-size: 30px;
  }
}

/* ===== FAQ ===== */

.faq-section {
  padding: 80px 20px;
  background: #E8F4FD;
  position: relative;
}

.faq-section > .container {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.faq-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #1B3A6B;
  margin: 0 0 48px;
}

/* Lista */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Jedan FAQ item */
.faq-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

/* Dugme — zatvoreno stanje */
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 25px;
  background: #fff;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  color: #2A9ED8;
  transition: background 0.3s ease, color 0.3s ease;
  font-family: inherit;
  line-height: 1.4;
}

/* Ikonica — plavi krug sa strelicom */
.faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4FC3F7 0%, #0288D1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.faq-icon svg {
  width: 16px;
  height: 16px;
}

/* Otvoreno stanje — pitanje */
.faq-question[aria-expanded="true"] {
  background: linear-gradient(135deg, #4FC3F7 0%, #0288D1 100%);
  color: #fff;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
  background: rgba(255, 255, 255, 0.25);
}

/* Odgovor — skriven po defaultu */
.faq-answer {
  background: #fff;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
  padding: 0 25px;
}

.faq-answer.faq-answer--open {
  max-height: 300px;
  padding: 18px 25px 22px;
}

.faq-answer p {
  margin: 0;
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

/* Dugme ispod */
.faq-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.faq-cta-text {
  font-size: 16px;
  color: #777;
}

.faq-cta-btn {
  display: inline-block;
  padding: 14px 35px;
  border-radius: 25px;
  background: linear-gradient(135deg, #4FC3F7 0%, #0288D1 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(2, 136, 209, 0.35);
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}

.faq-cta-btn:hover {
  background: linear-gradient(135deg, #0288D1 0%, #01579B 100%);
  box-shadow: 0 6px 20px rgba(2, 136, 209, 0.45);
  transform: translateY(-2px);
  color: #fff;
}

@media (max-width: 600px) {
  .faq-title {
    font-size: 26px;
  }

  .faq-question {
    font-size: 14px;
    padding: 16px 18px;
  }

  .faq-answer {
    padding: 0 18px;
  }

  .faq-answer.faq-answer--open {
    padding: 14px 18px 18px;
  }

  .faq-cta {
    flex-direction: column;
    gap: 12px;
  }
}

/* ===== RECENZIJE ===== */

.reviews-section {
  padding: 80px 20px;
  background: #E8F4FD;
  position: relative;
}

.reviews-section > .container {
  position: relative;
  z-index: 1;
}

.reviews-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #1B3A6B;
  margin: 0 0 48px;
}

/* Wrapper: strelice + track */
.reviews-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Strelice */
.reviews-arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #2A9ED8;
  background: transparent;
  color: #2A9ED8;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
  line-height: 1;
}

.reviews-arrow:hover {
  background: #2A9ED8;
  color: #fff;
}

/* Clip area */
.reviews-track-wrap {
  flex: 1;
  overflow: hidden;
}

/* Animirani red kartica */
.reviews-track {
  display: flex;
  gap: 24px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Jedna kartica */
.review-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  flex: 0 0 calc(33.333% - 16px);
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

/* Zvezde */
.review-stars {
  font-size: 24px;
  color: #F5B800;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

/* Tekst recenzije */
.review-text {
  font-size: 15px;
  color: #666;
  line-height: 1.65;
  margin: 0 0 24px;
  flex: 1;
}

/* Autor */
.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}

/* Kružni avatar sa inicijalima */
.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4FC3F7 0%, #0288D1 100%);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-info {
  display: flex;
  flex-direction: column;
}

.review-info strong {
  font-size: 15px;
  color: #1B3A6B;
  font-weight: 700;
}

.review-info span {
  font-size: 13px;
  color: #999;
  margin-top: 2px;
}

/* Dots */
.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.reviews-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #B8D8EE;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.reviews-dot--active {
  background: #1B3A6B;
  transform: scale(1.25);
}

/* Mobilni prikaz */
@media (max-width: 900px) {
  .review-card {
    flex: 0 0 100%;
  }
}

@media (max-width: 580px) {
  .reviews-arrow {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

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

/* ===== USLUGE I CENE ===== */

.services-prices-section {
  padding: 80px 20px;
  background: #E8F4FD;
  position: relative;
}

.services-prices-section > .container {
  position: relative;
  z-index: 1;
}

.sp-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #1B3A6B;
  margin: 0 0 40px;
}

/* Grid 3 kartice */
.sp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Kartica */
.sp-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 30px 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.sp-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14);
  transform: translateY(-4px);
}

/* Slika */
.sp-card-img {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.sp-card-img img {
  max-height: 160px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

/* Naslov kartice */
.sp-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #2A9ED8;
  margin: 0 0 14px;
}

/* Cena */
.sp-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 22px;
}

.sp-price-from {
  font-size: 14px;
  color: #999;
}

.sp-price-amount {
  font-size: 36px;
  font-weight: 700;
  color: #1B3A6B;
  line-height: 1;
}

/* Dugme */
.sp-btn {
  display: block;
  width: 100%;
  padding: 0 25px;
  height: 46px;
  line-height: 46px;
  border-radius: 25px;
  background: linear-gradient(135deg, #4FC3F7 0%, #0288D1 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 14px rgba(2, 136, 209, 0.35);
}

.sp-btn:hover {
  background: linear-gradient(135deg, #0288D1 0%, #01579B 100%);
  box-shadow: 0 6px 20px rgba(2, 136, 209, 0.45);
  color: #fff;
}

/* Pill tagovi */
.sp-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.sp-pill {
  border: 2px solid #2A9ED8;
  background: transparent;
  border-radius: 50px;
  padding: 12px 28px;
  font-size: 15px;
  color: #2A9ED8;
  cursor: default;
  transition: background 0.25s ease;
}

.sp-pill:hover {
  background: #E3F2FD;
}

/* Responsive */
@media (max-width: 900px) {
  .sp-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .sp-pills {
    flex-direction: column;
    align-items: center;
  }

  .sp-pill {
    text-align: center;
    width: 100%;
    max-width: 340px;
  }

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

/* ===== ZAŠTO SMO BOLJI ===== */

.better-section {
  padding: 80px 20px;
  background: #E8F4FD;
  position: relative;
}

/* Dekorativna sofa levo */
.better-deco-left {
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 340px;
  z-index: 0;
  opacity: 0.15;
  filter: blur(3px);
  pointer-events: none;
}

.better-deco-left img {
  width: 100%;
  height: auto;
  display: block;
}

/* Dekorativna 3D kvačica desno */
.better-deco-right {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 280px;
  z-index: 0;
  opacity: 0.55;
  pointer-events: none;
}

.better-deco-right svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Kontejner iznad dekoracija */
.better-section > .container {
  position: relative;
  z-index: 1;
}

.better-title {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  color: #0d3b66;
  margin: 0 0 48px;
}

/* 2x2 grid kartica */
.better-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 860px;
  margin: 0 auto;
}

.better-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px 24px;
  box-shadow: 0 4px 20px rgba(13, 59, 102, 0.08);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.better-card:hover {
  box-shadow: 0 10px 30px rgba(13, 59, 102, 0.13);
  transform: translateY(-3px);
}

/* Plavi kružni checkmark */
.better-check {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: #1a7fc1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.better-check svg {
  width: 16px;
  height: 16px;
}

.better-card p {
  font-size: 15px;
  color: #444;
  line-height: 1.65;
  margin: 0;
  padding-top: 7px;
}

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

  .better-deco-left,
  .better-deco-right {
    display: none;
  }

  .better-title {
    font-size: 24px;
  }
}

/* ===== PROCES ČIŠĆENJA ===== */

.clean-process-section {
  padding: 80px 20px;
  background: #E8F4FD;
  position: relative;
}

.clean-process-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #0d3b66;
  margin: 0 0 56px;
}

/* Wrapper koji drži brojeve + kartice zajedno */
.clean-process-wrapper {
  position: relative;
  padding-top: 72px; /* prostor da brojevi budu vidljivi iznad kartica */
}

/* Veliki brojevi u pozadini */
.clean-process-nums {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  z-index: 0;
  pointer-events: none;
}

.clean-process-nums span {
  display: block;
  font-size: 96px;
  font-weight: 900;
  color: #7EC8E3;
  opacity: 0.6;
  text-align: center;
  line-height: 1;
}

/* Grid kartica */
.clean-process-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  position: relative;
  z-index: 2;
}

/* Isprekidana horizontalna linija kroz sredinu kartica */
.clean-process-cards::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  border-top: 2px dashed #7EC8E3;
  z-index: 0;
  pointer-events: none;
}

/* Pojedinačna kartica */
.clean-process-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px 16px;
  box-shadow: 0 4px 20px rgba(13, 59, 102, 0.09);
  position: relative;
  z-index: 1;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.clean-process-card:hover {
  box-shadow: 0 10px 32px rgba(13, 59, 102, 0.14);
  transform: translateY(-4px);
}

.clean-process-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: #0d3b66;
  margin: 0 0 8px;
}

.clean-process-card p {
  font-size: 13px;
  color: #777;
  line-height: 1.65;
  margin: 0;
}

/* Mobilni prikaz */
@media (max-width: 900px) {
  .clean-process-nums {
    display: none;
  }

  .clean-process-wrapper {
    padding-top: 0;
  }

  .clean-process-cards {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
    gap: 0;
  }

  /* Vertikalna isprekidana linija na mobilnom */
  .clean-process-cards::before {
    top: 0;
    bottom: 0;
    left: 50%;
    right: auto;
    width: 0;
    border-top: none;
    border-left: 2px dashed #7EC8E3;
    transform: none;
  }

  .clean-process-card {
    margin: 6px 0;
  }

  .clean-process-title {
    font-size: 26px;
  }
}

/* ===== HERO SECTION ===== */

/* Navigacija — tamna na svetloj hero pozadini */
.home-page-template-default header,
.home header,
body.home header {
  background: transparent;
}

/* Hero wrapper */
.hero-section {
  position: relative;
  background: #E8F4FD;
  padding: 100px 20px 80px;
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  align-items: center;
}

/* Dekorativni oblaci/krugovi */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  pointer-events: none;
}

.hero-blob--1 {
  width: 420px;
  height: 420px;
  top: -120px;
  right: -80px;
  background: rgba(197, 227, 247, 0.6);
}

.hero-blob--2 {
  width: 260px;
  height: 260px;
  bottom: -60px;
  left: -60px;
  background: rgba(255, 255, 255, 0.5);
}

.hero-blob--3 {
  width: 160px;
  height: 160px;
  top: 60px;
  left: 38%;
  background: rgba(197, 227, 247, 0.4);
}

/* Dvostubni layout */
.hero-layout {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* Leva strana */
.hero-content {
  flex: 1;
  max-width: 560px;
}

/* Tag iznad naslova */
.hero-tag {
  display: inline-block;
  background: rgba(13, 59, 102, 0.1);
  color: #0d3b66;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  border: 1px solid rgba(13, 59, 102, 0.15);
}

/* Glavni naslov */
.hero-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: #0d3b66;
  line-height: 1.2;
  margin: 0 0 20px;
  letter-spacing: -0.5px;
}

/* Podnaslov */
.hero-subtitle {
  font-size: 20px;
  font-weight: 600;
  color: #2e6da4;
  margin: 0 0 32px;
  letter-spacing: 1px;
}

/* CTA dugme */
.hero-cta {
  display: inline-block;
  background: linear-gradient(135deg, #4FC3F7 0%, #0288D1 100%);
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 24px rgba(2, 136, 209, 0.35);
}

.hero-cta:hover {
  background: linear-gradient(135deg, #0288D1 0%, #01579B 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(2, 136, 209, 0.45);
  color: #fff;
}

/* Checkmark stavke */
.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 24px;
  font-size: 14px;
  font-weight: 500;
  color: #2e6da4;
}

.hero-features span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-check {
  color: #2e9e3e;
  font-weight: 700;
  font-size: 16px;
}

/* Desna strana — slika */
.hero-image-wrap {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-image-card {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 32px;
  padding: 24px;
  box-shadow:
    0 20px 60px rgba(13, 59, 102, 0.12),
    0 4px 16px rgba(13, 59, 102, 0.08);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  max-width: 500px;
  width: 100%;
}

.hero-image-card img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-section {
    padding: 80px 20px 60px;
    min-height: auto;
  }

  .hero-layout {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

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

  .hero-features {
    justify-content: center;
  }

  .hero-image-wrap {
    width: 100%;
  }

  .hero-image-card {
    max-width: 420px;
  }

  .hero-blob--1 {
    width: 280px;
    height: 280px;
  }
}

@media (max-width: 600px) {
  .hero-section {
    padding: 70px 16px 50px;
  }

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

  .hero-subtitle {
    font-size: 17px;
  }

  .hero-cta {
    font-size: 15px;
    padding: 14px 28px;
    width: 100%;
    text-align: center;
  }

  .hero-features {
    gap: 12px;
    font-size: 13px;
  }

  .hero-blob--3 {
    display: none;
  }
}

/* ============================================================
   STICKY HEADER
   ============================================================ */
header {
  position: sticky;
  top: 0;
  transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}

header.header--scrolled {
  background: rgba(255, 255, 255, 0.92) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 20px rgba(13, 59, 102, 0.1);
}

header.header--scrolled .nav-menu {
  background: rgba(255, 255, 255, 0.97);
  border-top-color: rgba(13, 59, 102, 0.06);
}

/* ============================================================
   DEKORATIVNI MEHURIĆI (BUBBLES)
   ============================================================ */
/* ===== BUBBLE JS ANIMACIJA ===== */
.bubbles-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 5;
  overflow: hidden;
}

.bubble-js {
  position: absolute;
  top: 0; left: 0;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(
    circle at 34% 28%,
    rgba(255,255,255,0.45) 0%,
    rgba(2,136,209,0.28) 38%,
    rgba(13,59,102,0.14) 65%,
    transparent 100%
  );
  border: 1.5px solid rgba(2,136,209,0.45);
  box-shadow:
    inset 2px 2px 6px rgba(255,255,255,0.3),
    inset -1px -1px 3px rgba(13,59,102,0.08),
    0 0 6px rgba(2,136,209,0.08);
  will-change: transform, opacity;
}

/* ============================================================
   STATS SEKCIJA
   ============================================================ */
.stats-section {
  padding: 64px 20px;
  background: linear-gradient(135deg, #0d3b66 0%, #1a7fc1 60%, #29B6F6 100%);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.stats-section::before {
  content: '';
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  top: -140px; right: -80px;
  animation: floatBlob 10s ease-in-out infinite;
  pointer-events: none;
}
.stats-section::after {
  content: '';
  position: absolute;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  bottom: -80px; left: -50px;
  animation: floatBlob 14s ease-in-out infinite reverse;
  pointer-events: none;
}

@keyframes floatBlob {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-24px) scale(1.06); }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 16px 20px;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.stat-item:last-child { border-right: none; }

.stat-num-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 3px;
  margin-bottom: 8px;
}

.stat-number {
  font-size: 58px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -2px;
}

.stat-suffix {
  font-size: 30px;
  font-weight: 700;
  color: #4FC3F7;
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.3px;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    padding: 20px;
  }
  .stat-item:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,0.15); }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4)    { border-bottom: none; }
  .stat-number { font-size: 46px; }
}

@media (max-width: 420px) {
  .stat-number { font-size: 38px; }
  .stat-suffix { font-size: 24px; }
}

/* ============================================================
   FLOATING CTA DUGME
   ============================================================ */
.float-cta {
  position: fixed;
  bottom: 28px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9998;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.float-btn:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.28);
}

.float-btn svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.float-btn--whatsapp {
  background: #25D366;
  color: #fff;
  animation: pulseRing 2.8s ease-in-out infinite;
}

.float-btn--phone {
  background: linear-gradient(135deg, #4FC3F7 0%, #0288D1 100%);
  color: #fff;
}

@keyframes pulseRing {
  0%   { box-shadow: 0 0 0 0   rgba(37,211,102,0.55), 0 4px 20px rgba(0,0,0,0.22); }
  60%  { box-shadow: 0 0 0 14px rgba(37,211,102,0),   0 4px 20px rgba(0,0,0,0.22); }
  100% { box-shadow: 0 0 0 0   rgba(37,211,102,0),    0 4px 20px rgba(0,0,0,0.22); }
}

@media (max-width: 480px) {
  .float-cta { bottom: 20px; right: 16px; }
  .float-btn  { width: 50px; height: 50px; }
  .float-btn svg { width: 22px; height: 22px; }
}

/* ============================================================
   RIPPLE EFEKAT NA DUGMADIMA
   ============================================================ */
.ripple-btn {
  position: relative;
  overflow: hidden;
}

.ripple-btn .ripple-wave {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: rippleAnim 0.6s linear;
  background: rgba(255,255,255,0.35);
  pointer-events: none;
}

@keyframes rippleAnim {
  to { transform: scale(4); opacity: 0; }
}

/* ============================================================
   SCROLL REVEAL ANIMACIJE
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(38px);
  transition:
    opacity   0.65s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.17s; }
.reveal-delay-3 { transition-delay: 0.26s; }
.reveal-delay-4 { transition-delay: 0.35s; }
.reveal-delay-5 { transition-delay: 0.44s; }

/* Sekcija naslovi — blagi fade-up */
.section-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.section-reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   CENOVNIK STRANICA
   ============================================================ */

.pricing-container {
  max-width: 1200px;
}

/* ----- Hero ----- */
.pricing-hero {
  position: relative;
  background: #E8F4FD;
  padding: 80px 20px 64px;
  overflow: hidden;
  text-align: center;
}

.pricing-hero-tag {
  display: inline-block;
  background: rgba(13,59,102,0.09);
  color: #0d3b66;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
  border: 1px solid rgba(13,59,102,0.12);
}

.pricing-hero-title {
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 800;
  color: #0d3b66;
  margin: 0 0 14px;
  letter-spacing: -0.5px;
  line-height: 1.15;
}

.pricing-hero-sub {
  font-size: 16px;
  color: #4a7fa5;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ----- Grid sekcija ----- */
.pricing-cards-section {
  padding: 64px 20px 72px;
  background: #E8F4FD;
  position: relative;
  overflow: hidden;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: stretch;
}

/* ----- Pojedinačna kartica ----- */
.pc-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(13,59,102,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  border: 1px solid rgba(13,59,102,0.05);
}

.pc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(13,59,102,0.14);
}

/* Header kartice */
.pc-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 24px 20px;
  border-bottom: 1px solid rgba(13,59,102,0.07);
  background: linear-gradient(135deg, rgba(232,244,253,0.8) 0%, rgba(255,255,255,0.6) 100%);
}

.pc-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #4FC3F7 0%, #0288D1 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(2,136,209,0.3);
}

.pc-icon svg {
  width: 26px;
  height: 26px;
  stroke: #fff;
}

.pc-header-text { flex: 1; }

.pc-title {
  font-size: 20px;
  font-weight: 800;
  color: #0d3b66;
  margin: 0 0 3px;
}

.pc-subtitle {
  font-size: 13px;
  color: #4a7fa5;
  margin: 0;
}

/* Body kartice */
.pc-body {
  flex: 1;
  padding: 0;
}

.pc-group-label {
  padding: 8px 24px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #0288D1;
  background: rgba(2,136,209,0.05);
  border-bottom: 1px solid rgba(2,136,209,0.09);
}

.pc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 24px;
  border-bottom: 1px solid rgba(13,59,102,0.05);
  transition: background 0.18s ease;
}

.pc-row:last-of-type {
  border-bottom: none;
}

.pc-row:hover {
  background: rgba(79,195,247,0.05);
}

.pc-row--highlight {
  background: rgba(2,136,209,0.04);
}
.pc-row--highlight:hover {
  background: rgba(2,136,209,0.08);
}

.pc-name {
  font-size: 14px;
  font-weight: 600;
  color: #1B3A6B;
}

.pc-name em {
  font-style: normal;
  font-weight: 400;
  color: #88a8c0;
  font-size: 13px;
  margin-left: 4px;
}

.pc-price {
  font-size: 18px;
  font-weight: 800;
  color: #0288D1;
  white-space: nowrap;
  letter-spacing: -0.3px;
}

.pc-price small {
  font-size: 12px;
  font-weight: 500;
  color: #88a8c0;
  margin-left: 3px;
}

.pc-price--inquiry {
  font-size: 13px;
  font-weight: 600;
  color: #88a8c0;
}

/* Footer kartice */
.pc-footer {
  padding: 18px 24px;
  border-top: 1px solid rgba(13,59,102,0.07);
  background: rgba(232,244,253,0.4);
}

.pc-cta {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #4FC3F7 0%, #0288D1 100%);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  padding: 9px 22px;
  border-radius: 25px;
  box-shadow: 0 3px 12px rgba(2,136,209,0.3);
  transition: background 0.25s, box-shadow 0.25s, transform 0.2s;
}

.pc-cta:hover {
  background: linear-gradient(135deg, #0288D1 0%, #01579B 100%);
  box-shadow: 0 5px 18px rgba(2,136,209,0.4);
  transform: translateY(-1px);
  color: #fff;
}

/* ----- Napomena + CTA ----- */
.pricing-cta-section {
  padding: 0 20px 80px;
  background: #E8F4FD;
}

.pricing-note {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  background: rgba(2,136,209,0.07);
  border: 1px solid rgba(2,136,209,0.14);
  border-radius: 12px;
  padding: 14px 18px;
  max-width: 1200px;
  margin: 0 auto 40px;
  color: #2e6da4;
}

.pricing-note svg {
  flex-shrink: 0;
  margin-top: 2px;
  stroke: #0288D1;
}

.pricing-note p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.pricing-cta-box {
  background: linear-gradient(135deg, #0d3b66 0%, #1a7fc1 100%);
  border-radius: 24px;
  padding: 52px 40px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(13,59,102,0.22);
}

.pricing-cta-box-deco {
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  top: -110px; right: -70px;
  pointer-events: none;
}

.pricing-cta-box h3 {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 10px;
  position: relative;
}

.pricing-cta-box p {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  margin: 0 0 30px;
  position: relative;
}

.pricing-cta-btns {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
}

.pricing-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 26px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.pricing-btn--primary {
  background: #fff;
  color: #0288D1;
  box-shadow: 0 4px 14px rgba(0,0,0,0.14);
}

.pricing-btn--primary:hover {
  background: #f0f9ff;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.18);
  color: #0288D1;
}

.pricing-btn--outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
}

.pricing-btn--outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
  color: #fff;
}

/* ----- Responsive ----- */
@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pc-card:hover {
    transform: none;
  }
}

@media (max-width: 560px) {
  .pricing-cta-box {
    padding: 36px 22px;
  }

  .pricing-cta-box h3 {
    font-size: 21px;
  }

  .pricing-cta-btns {
    flex-direction: column;
    align-items: stretch;
  }

  .pricing-btn {
    justify-content: center;
  }
}