/* ===========================
   PRODANIĆ DIGITAL — Global Styles
   =========================== */

/* 1️⃣ Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap");

/* 2️⃣ Root promenljive */
:root {
  --primary-color: linear-gradient(135deg, #0869c4, #0a378a);
  --primary-solid: #007cf0;
  --text-color: #f1f1f1;
  --text-light: #a1a1a1;
  --bg-dark: #0e1117;
  --border-color: rgba(255, 255, 255, 0.1);
  --radius: 12px;
  --transition: 0.3s ease;
  --shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* 3️⃣ Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden !important;
  width: 100% !important;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg-dark);
  color: var(--text-color);
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

/* ====== POZADINSKI PATTERN ====== */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(0, 102, 255, 0.1) 1px, transparent 1px),
              linear-gradient(180deg, rgba(0, 102, 255, 0.1) 1px, transparent 1px);
  background-size: 60px 60px;
  background-color: #0e1117;
}

/* ====== TEKST ====== */
h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: var(--text-color);
}

p {
  color: var(--text-light);
  font-size: 1rem;
}

/* ====== DUGMAD ====== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: var(--primary-color);
  color: #fff;
  padding: 0.8rem 1.4rem;
  border-radius: var(--radius);
  font-weight: 600;
  box-shadow: var(--shadow);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

/* ===========================
   NAVBAR
   =========================== */

.navbar {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.5rem;
  background: rgba(19, 42, 61, 0.144);
  backdrop-filter: blur(15px);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  box-shadow: var(--shadow);
  z-index: 999;
  transition: var(--transition);
}


/* LOGO */

.nav__logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}

.nav__logo img:hover {
  transform: scale(1.1);
}

.nav__logo a {
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.5px;
  color: #fff;
  text-transform: uppercase;
}

.nav__logo span {
  background: var(--primary-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* LINKOVI */
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__links a {
  font-weight: 500;
  text-decoration: none; 
  color: #e6e6e6;
  transition: var(--transition);
}

.nav__links a:hover {
  color: #0084ff;
}

/* CTA */
.nav__cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* BURGER MENI */
.nav__menu__btn {
  display: none;
  font-size: 1.9rem;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}

.nav__menu__btn:hover {
  color: #0077ff;
}



/* ===========================
   HERO SEKCIJA
   =========================== */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  width: 100%;
  padding: 0 5%;
  text-align: center;
  color: #fff;
  background: radial-gradient(circle at center, rgba(5, 110, 247, 0.349) 0%, transparent 75%);
  overflow: hidden;
}

/* Smanjen glow */
.hero::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -80px;
  width: calc(100% + 160px);
  height: calc(100% + 160px);
  background: radial-gradient(circle at center, rgba(0, 223, 216, 0.05) 0%, transparent 80%);
  filter: blur(90px);
  z-index: 0;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  color: #1f9aff;
  background: rgba(0, 89, 223, 0.1);
  border: 1px solid rgba(0, 81, 255, 0.2);
  padding: 0.5rem 1.2rem;
  border-radius: 30px;
  margin-bottom: 1.8rem;
}

.hero__badge i {
  font-size: 1.2rem;
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.2;
  max-width: 850px;
  margin: 0 auto 1.5rem;
}

.hero h1 span {
  background: var(--primary-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  max-width: 720px;
  margin: 0 auto 3rem;
  font-size: 1.2rem;
  color: var(--text-light);
}

/* Glavno dugme */
.hero__buttons {
  margin-bottom: 1rem;
}

.hero__link {
  margin-top: 0.8rem;
  font-size: 1rem;
  color: #b0b0b0;
  text-decoration: none;
  display: inline-block;
  opacity: 1;
  transform: translateY(0);
  transition: color 0.3s ease;
}

.hero__link:hover {
  color: #ffffff; 
}

.hero {
  overflow: visible;
  padding-top: 10rem; 
}

.hero__badge {
  margin-top: 1rem;
  z-index: 2;
}


.banner__wrapper {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-top: 5rem;
    overflow: hidden;
    width: 100%;
    padding: 3rem 0;
    position: relative;
}

.banner__inner {
  display: flex;
  align-items: center;
  gap: 4rem;
  animation: scrollLoop 25s linear infinite;
  will-change: transform;
}

.banner__wrapper img {
  height: 80px;
  width: auto;
  filter: drop-shadow(0 0 4px rgba(0,124,240,0.2));
  opacity: 0.8;
  transition: all 0.4s ease;
  flex-shrink: 0;
}


.banner__wrapper img:hover {
  filter: drop-shadow(0 0 8px rgba(0, 124, 240, 0.8))
          drop-shadow(0 0 16px rgba(0, 124, 240, 0.6))
          brightness(1.2);
  transform: scale(1.1);
  opacity: 1;
}


.banner__wrapper::before,
.banner__wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.banner__wrapper::before {
  left: 0;
  background: linear-gradient(to right, #0e1117, transparent);
}

.banner__wrapper::after {
  right: 0;
  background: linear-gradient(to left, #0e1117, transparent);
}

@keyframes scrollLoop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (max-width: 768px) {
  .hero__tech img {
    height: 50px;
  }
}

.hero__buttons .btn.shine {
    text-decoration: none;
    animation: float 3s ease-in-out infinite;
}


@media (max-width: 768px) {
  .hero {
    padding: 8rem 1.5rem 5rem; /* više prostora gore i dole */
    text-align: center;
  }

  .hero__badge {
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
    margin-bottom: 1.2rem;
  }

  .hero h1 {
    font-size: 1.9rem;
    line-height: 1.3;
    margin-bottom: 1rem;
  }

  .hero p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 2rem;
  }

  .hero__buttons .btn {
    padding: 0.9rem 1.3rem;
    font-size: 0.95rem;
  }

  .hero__link {
    margin-top: 1.5rem;
    font-size: 0.9rem;
  }

  .banner__wrapper {
    margin-top: 6rem; /* spušta traku dole da ne seče sadržaj */
    gap: 2rem;
  }

  .banner__wrapper img {
    height: 60px; /* manji logo da sve stane */
  }

  .navbar {
    width: 92%;
    top: 0.5rem;
  }
}

@media (max-width: 768px) {
  .banner__wrapper::before,
  .banner__wrapper::after {
    display: none;
    content: none;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero__tech img {
    height: 40px;
  }
}

.btn.shine {
  position: relative;
  overflow: hidden;
}

.btn.shine::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0.3) 100%
  );
  transform: skewX(-20deg);
  animation: shine 3s infinite;
}


@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes shine {
  0% {
    left: -75%;
  }
  50% {
    left: 125%;
  }
  100% {
    left: 125%;
  }
}




/* =========================
   BENEFITS SECTION — NOVI DIZAJN
========================= */
.benefits {
  position: relative;
  background: linear-gradient(180deg, #0b0e13 0%, #071d44bb 100%);
  padding: 8rem 2rem;
  color: #fff;
  overflow: hidden;
}

/* Fade prelaz od hero sekcije */
.benefits__fade {
  content: "";
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to bottom, #1b2230 0%, rgba(14, 17, 23, 0) 100%);
  pointer-events: none;
  z-index: 1;
}

.benefits__inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: center;
}

.benefits__badge {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background: rgba(0, 124, 240, 0.15);
  border: 1px solid rgba(0, 124, 240, 0.3);
  color: #1f9aff;
  border-radius: 30px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.benefits__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.benefits__title span {
  background: linear-gradient(135deg, #0869c4, #0a378a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.benefits__text {
  max-width: 700px;
  margin: 0 auto 4rem;
  color: #b0b0b0;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* GRID KARTICE */
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.benefit__card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 2.5rem 1.8rem;
  text-align: center;
  transition: all 0.35s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(0, 124, 240, 0.1);
  position: relative;
}

.benefit__card i {
  font-size: 2rem;
  color: #00a2ff;
  margin-bottom: 1rem;
  display: block;
}

.benefit__card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  color: #fff;
}

.benefit__card p {
  color: #b8b8b8;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Hover efekat */
.benefit__card:hover {
  transform: translateY(-8px);
  background: rgba(0, 124, 240, 0.1);
  box-shadow: 0 0 30px rgba(0, 124, 240, 0.25);
  border-color: rgba(0, 124, 240, 0.4);
}

.benefit__card:hover i {
  color: #0084ff;
}

/* Responsivnost */
@media (max-width: 768px) {
  .benefits {
    padding: 6rem 1.5rem;
  }

  .benefits__text {
    margin-bottom: 3rem;
  }
}


.benefits__image img:hover {
  transform: scale(1);
  box-shadow: 0 0 60px rgba(0, 124, 240, 0.3);
}




/* =========================
   SERVICES SECTION
========================= */
.services {
  position: relative;
  padding: 8rem 2rem;
  color: #fff;
  overflow: hidden;
}

.services__inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.services__badge {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background: rgba(0, 124, 240, 0.15);
  border: 1px solid rgba(0, 124, 240, 0.3);
  color: #1f9aff;
  border-radius: 30px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.services__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.services__title span {
  background: linear-gradient(135deg, #0869c4, #0a378a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.services__text {
  max-width: 700px;
  margin: 0 auto 4rem;
  color: #b0b0b0;
  font-size: 1.1rem;
  line-height: 1.7;
}



/* GRID */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.service__card {
  background: rgba(255, 255, 255, 0.021);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  padding: 3rem 2rem;
  text-align: center;
  transition: all 0.35s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 25px rgba(0, 124, 240, 0.1);
  position: relative;
  overflow: hidden;
}

.service__icon {
  font-size: 2.5rem;
  color: #00a2ff;
  margin-bottom: 1.2rem;
}

.service__card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: #fff;
}

.service__card p {
  color: #b8b8b8;
  font-size: 1rem;
  line-height: 1.6;
}

/* Hover efekat */
.service__card:hover {
  transform: translateY(-10px);
  background: rgba(0, 124, 240, 0.1);
  box-shadow: 0 0 35px rgba(0, 124, 240, 0.25);
  border-color: rgba(0, 124, 240, 0.4);
}

.service__card:hover .service__icon {
  color: #0084ff;
}

/* Responsivnost */
@media (max-width: 768px) {
  .services {
    padding: 6rem 1.5rem;
  }

  .service__card {
    padding: 2.2rem 1.6rem;
  }
}

.service__card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  padding: 3rem 2rem;
  text-align: center;
  transition: all 0.35s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 25px rgba(0, 124, 240, 0.1);
  position: relative;
  overflow: hidden;
}

.btn__small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 1.5rem auto 1.2rem;
  padding: 0.7rem 1.4rem;
  font-size: 0.9rem;
  background: linear-gradient(135deg, #007cf0, #0a378a);
  color: #fff;
  border: none;
  border-radius: 10px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 124, 240, 0.25);
}

.btn__small::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(255, 255, 255, 0.7) 50%,
    rgba(255, 255, 255, 0.3) 100%
  );
  transform: skewX(-20deg);
  opacity: 0;
  transition: all 0.6s ease;
}

.btn__small:hover::before {
  left: 130%;
  opacity: 1;
}

.btn__small:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 22px rgba(0, 124, 240, 0.4);
}

/* Tehnologije */
.service__tech {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.service__tech img {
  height: 35px;
  width: auto;
  opacity: 0.9;
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 4px rgba(0,124,240,0.3));
}

.service__tech img:hover {
  transform: scale(1.1);
  opacity: 1;
  filter: drop-shadow(0 0 8px rgba(0,124,240,0.7));
}

/* ===========================
   PROJECTS */


.projects {
  padding: 8rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.projects__badge {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background: rgba(0, 124, 240, 0.15);
  border: 1px solid rgba(0, 124, 240, 0.3);
  color: #1f9aff;
  border-radius: 30px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.projects__title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.projects__title span {
  background: linear-gradient(135deg, #0869c4, #0a378a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.projects__text {
  max-width: 700px;
  margin: 0 auto 4rem;
  color: #b0b0b0;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Kartice */
.project__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(4px);
  transition: transform 0.4s ease;
}

.project__mockup img {
  width: 100%;
  max-width: 750px;
  border-radius: 12px;
}

.project__info {
  margin-top: 2rem;
  text-align: center;
}

.project__info h3 {
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
}

.project__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  color: #b0b0b0;
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.project__meta i {
  color: #1f9aff;
  margin-right: 0.3rem;
}

.project__buttons {
  display: flex;
  align-items: center;  /* 👈 poravnava vertikalno */
  justify-content: center;
  gap: 2.5rem;            /* razmak između njih */
  margin-top: 0.5rem;
}

.project__details {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 1;       /* sprečava da izgleda spušteno */
  position: relative;
  top: 1px;             /* fino podešavanje da bude tačno u liniji sa dugmetom */
}

.project__details:hover {
  color: rgba(255, 255, 255, 0.8);
  transform: translateY(-1px);
}

/* Swiper stilovi */
.projects__slider {
  width: 100%;
  padding-bottom: 3rem;
}

.swiper-pagination-bullet {
  background: #007cf0 !important;
}

.swiper-button-prev,
.swiper-button-next {
  color: #007cf0;
}

@media (max-width: 768px) {
  .project__mockup img {
    max-width: 120%;
  }

  .project__buttons {
    flex-direction: column;
  }
}

.btn {
  background: linear-gradient(135deg, #0869c4, #0a378a);
  border: none;
  padding: 0.8rem 1.6rem;
  border-radius: 10px;
  color: #fff;
  font-weight: 600;
  transition: 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(0, 124, 240, 0.4);
}

@media (max-width: 768px) {
  .select__info {
    flex-direction: column;
  }

  .select__form {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .select__price {
    justify-content: center;
  }
}

.project__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.5rem;
  position: relative;
}

.project__details {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.project__details:hover {
  color: #fff;
}

/* === Tooltip kartica === */
.project__details::after {
  content: attr(data-info);
  position: absolute;
  bottom: 140%;
  left: 50%;
  transform: translateX(-50%) scale(0.9);
  background: #10141b;
  color: #fff;
  padding: 1rem 1.2rem;
  border-radius: 12px;
  font-size: 0.9rem;
  white-space: nowrap;
  box-shadow: 0 0 20px rgba(0,124,240,0.2);
  border: 1px solid rgba(255,255,255,0.1);
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s ease;
  z-index: 20;
}

/* strelica */
.project__details::before {
  content: "";
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: #10141b transparent transparent transparent;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.project__details:hover::after,
.project__details:hover::before {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

/* === Novi tooltip kartica === */
.tooltip-card {
  position: absolute;
  bottom: 150%;
  left: 50%;
  transform: translateX(-50%) scale(0.95);
  background: #10141b;
  color: #fff;
  padding: 1rem 1.2rem;
  border-radius: 12px;
  font-size: 0.9rem;
  box-shadow: 0 0 20px rgba(0, 124, 240, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s ease;
  white-space: nowrap;
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
}

.tooltip-card i {
  color: #007cf0;
  margin-right: 6px;
}

.tooltip-card.show {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) scale(1);
}

.project__details {
  position: relative;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.project__details:hover {
  color: #fff;
}


/* === PROJECT MODAL === */
.project-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  animation: fadeIn 0.3s ease;
}

.project-modal__content {
  background: #10141b;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 2.5rem;
  max-width: 420px;
  width: 90%;
  color: #fff;
  box-shadow: 0 0 30px rgba(0,124,240,0.3);
  text-align: left;
  position: relative;
  animation: slideUp 0.4s ease;
}

.close-modal {
  position: absolute;
  top: 12px;
  right: 14px;
  font-size: 1.8rem;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: 0.3s;
}

.close-modal:hover {
  color: #fff;
}

.project-modal__info p {
  margin: 0.7rem 0;
  font-size: 1rem;
  color: #d0d0d0;
}

.project-modal__info strong {
  color: #1f9aff;
}

/* === PRICING === */
.pricing {
  padding: 8rem 2rem;
  text-align: center;
  background: transparent;
}

.pricing__header {
  max-width: 700px;
  margin: 0 auto 4rem;
}

.pricing__badge {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background: rgba(0, 124, 240, 0.15);
  border: 1px solid rgba(0, 124, 240, 0.3);
  color: #1f9aff;
  border-radius: 30px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.pricing__title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  margin-top: 1rem;
}

.pricing__title span {
  color: #007cf0;
}

.pricing__text {
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.pricing__grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
}

.price__card {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 2.5rem 2rem;
  border-radius: 18px;
  width: 300px;
  transition: all 0.3s ease;
  color: #fff;
}

.price__card:hover {
  border-color: #007cf0;
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(0, 124, 240, 0.2);
}

.price__card.active {
  border-color: #007cf0;
  box-shadow: 0 0 30px rgba(0, 124, 240, 0.25);
  transform: scale(1.05);
}

.price__card h3 {
  font-size: 1.3rem;
  color: #007cf0;
  margin-bottom: 0.5rem;
}

.price__card h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.price__card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.price__card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.price__card li {
  margin: 0.6rem 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.price__card li i {
  color: #007cf0;
  margin-right: 8px;
}

.price__card .btn {
  width: 100%;
}


.pricing__badge {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background: rgba(0, 124, 240, 0.15);
  border: 1px solid rgba(0, 124, 240, 0.3);
  color: #1f9aff;
  border-radius: 30px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

/* Tabs */
.pricing__tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.tab-btn {
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  padding: 0.6rem 1.5rem;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn:hover {
  border-color: #007cf0;
  color: #fff;
}

.tab-btn.active {
  background: #007cf0;
  color: #fff;
  border-color: #007cf0;
}

/* Groups */
.pricing__group {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}

.pricing__group.active {
  display: block;
}

@keyframes fadeIn {
  from {opacity: 0; transform: translateY(20px);}
  to {opacity: 1; transform: translateY(0);}
}

.tab-btn i {
  font-size: 1.2rem;
  margin-right: 8px;
  color: #007cf0;
  transition: color 0.3s ease;
}

.tab-btn:hover i,
.tab-btn.active i {
  color: #fff;
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes slideUp {
  from {transform: translateY(20px); opacity: 0;}
  to {transform: translateY(0); opacity: 1;}
}


/* === FAQ SECTION === */
.faq {
  padding: 8rem 2rem;
  background: transparent;
  text-align: center;
}

.faq__header {
  max-width: 700px;
  margin: 0 auto 3rem;
}

.faq__badge {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background: rgba(0, 124, 240, 0.15);
  border: 1px solid rgba(0, 124, 240, 0.3);
  color: #1f9aff;
  border-radius: 30px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.faq__title {
  font-size: 2.2rem;
  color: #fff;
  margin-top: 1rem;
}

.faq__title span {
  color: #007cf0;
}

.faq__text {
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.8rem;
}

/* === FAQ LIST === */
.faq__list {
  max-width: 800px;
  margin: 3rem auto 0;
  text-align: left;
}

.faq__item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq__item.active {
  border-color: #007cf0;
  box-shadow: 0 0 20px rgba(0,124,240,0.15);
}

.faq__question {
  width: 100%;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  padding: 1.2rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq__question:hover {
  color: #007cf0;
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 1.5rem;
}

.faq__item.active .faq__answer {
  max-height: 200px;
  padding: 0 1.5rem 1rem;
}

.faq__answer p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq__question i {
  transition: transform 0.3s ease;
  font-size: 1.3rem;
}

.faq__item.active .faq__question i {
  transform: rotate(180deg);
}

.faq__item.payment {
  border-color: rgba(0,124,240,0.3);
  background: rgba(0,124,240,0.05);
}

/* === CONTACT SECTION — ISPRAVLJENO === */
.contact {
  padding: 8rem 2rem;
  text-align: center;
  background: transparent;
  position: relative;
  overflow: hidden;
}

.contact__header {
  max-width: 700px;
  margin: 0 auto 3rem;
}

.contact__badge {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background: rgba(0, 124, 240, 0.15);
  border: 1px solid rgba(0, 124, 240, 0.3);
  color: #1f9aff;
  border-radius: 30px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.contact__title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #fff;
  margin-top: 1rem;
  line-height: 1.3;
}

.contact__title span {
  color: #007cf0;
}

.contact__text {
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.8rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* === FORM === */
.contact__form {
  max-width: 600px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: relative;
  z-index: 2;
}

.form__group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.contact__form input,
.contact__form textarea {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 1rem;
  color: #fff;
  font-size: 0.95rem;
  outline: none;
  transition: all 0.3s ease;
}

.contact__form textarea {
  resize: none;
  min-height: 140px;
}

.contact__form input:focus,
.contact__form textarea:focus {
  border-color: #007cf0;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 12px rgba(0, 124, 240, 0.25);
}

.contact__form button {
  width: 100%;
  font-size: 1rem;
  margin-top: 0.5rem;
  padding: 1rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #007cf0, #0a378a);
  border: none;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(0, 124, 240, 0.2);
}

.contact__form button:hover {
  transform: scale(1.03);
  box-shadow: 0 0 30px rgba(0, 124, 240, 0.35);
  background: linear-gradient(135deg, #0a378a, #007cf0);
}

/* === SOCIAL LINKS === */
.contact__socials {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.9rem 1.8rem;
  border-radius: 10px;
  color: #fff;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social i {
  font-size: 1.2rem;
}

/* WhatsApp */
.social.whatsapp {
  background: #11a548;
}
.social.whatsapp:hover {
  background: #07af47;
  transform: translateY(-3px);
}

/* Instagram */
.social.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.social.instagram:hover {
  filter: brightness(1.1);
  transform: translateY(-3px);
}

/* Email */
.social.email {
  background: #007cf0;
}
.social.email:hover {
  background: #0063c2;
  transform: translateY(-3px);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .contact {
    padding: 6rem 1.5rem;
  }

  .contact__form {
    gap: 1rem;
  }

  .form__group {
    flex-direction: column;
  }

  .contact__form button {
    font-size: 0.95rem;
  }

  .social {
    width: 100%;
    justify-content: center;
  }
}


/* === FOOTER === */
.footer {
  background: #111316c2; /* tamno siva nijansa */
  color: #fff;
  padding: 5rem 2rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.footer__col {
  flex: 1 1 300px;
}

.footer__logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
}

.footer__logo span {
  color: #007cf0;
}

.footer__col p {
  color: rgba(255, 255, 255, 0.65);
  margin: 1rem 0 1.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* === Social Icons === */
.footer__socials {
  display: flex;
  gap: 0.8rem;
}

.footer__socials a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer__socials a:hover {
  background: #007cf0;
  transform: translateY(-3px);
}

/* === Links === */
.footer__col h4 {
  color: #007cf0;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer__col ul {
  list-style: none;
  padding: 0;
}

.footer__col ul li {
  margin: 0.6rem 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.footer__col ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__col ul li a:hover {
  color: #007cf0;
}

/* === Bottom === */
.footer__bottom {
  text-align: center;
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer__bottom span {
  color: #007cf0;
}

/* === Responsive === */
@media (max-width: 768px) {
  .footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .footer__socials {
    justify-content: center;
  }
}

.footer__divider {
  width: 40px;
  height: 2px;
  background: #007cf0;
  border-radius: 2px;
  margin-bottom: 1rem;
}


.footer__logo {
  display: flex;
  align-items: center;
}

.footer__logo img {
  width: 250px;
  height: auto;
  object-fit: contain;
  filter: brightness(1.2);
}

/* Malo vizuelno odvajanje sekcija unutar jedne kolone */
.footer__col h4 + .footer__divider + ul {
  margin-bottom: 1.5rem;
}

.footer__col h4 {
  color: #007cf0;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #007cf0;
  color: #fff;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 0 20px rgba(0, 124, 240, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.scroll-top:hover {
  background: #0094ff;
  transform: translateY(-4px);
  box-shadow: 0 0 25px rgba(0, 124, 240, 0.5);
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 768px) {
  .hero__badge {
    margin-top: -6rem;
  }

  .hero h1 {
    padding-top: 1rem;
  }

  .nav__menu__btn {
    display: block !important;
    position: relative;
    z-index: 9999 !important;
    color: #ffffff !important;
    cursor: pointer;
  }

  .nav__menu__btn i {
    color: #ffffff !important;
    font-size: 2rem;
  }

  /* Samo na mobilnom – navbar iznad hero sekcije */
  .navbar {
    position: relative !important;
    z-index: 9999 !important;
    overflow: visible !important;
    top: 0.6rem !important;
    width: 94%;
    padding: 0.8rem 1.2rem !important;
  }

  .banner__wrapper {
    margin-top: 3rem !important;
  }

  .nav__logo img {
    height: 62px !important;
  }

  .hero {
    padding-top: 9rem !important;
  }

  .nav__links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    background: rgba(15, 17, 25, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 0 0 16px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    transform: translateY(-300%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
  }

  .nav__links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav__cta .btn {
    display: none;
  }
}


/* === PRELOADER === */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0e0f13;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.preloader__logo {
  width: 140px;
  height: auto;
  animation: logoGlow 2s ease-in-out infinite alternate;
  filter: brightness(1.2);
}

.preloader__spinner {
  width: 45px;
  height: 45px;
  border: 3px solid rgba(255, 255, 255, 0.15);
  border-top: 3px solid #007cf0;
  border-radius: 50%;
  animation: spin 1.2s linear infinite;
}

/* === Animacije === */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes logoGlow {
  0% {
    filter: brightness(1.2) drop-shadow(0 0 5px rgba(0, 124, 240, 0.3));
  }
  50% {
    filter: brightness(1.4) drop-shadow(0 0 15px rgba(0, 124, 240, 0.6));
  }
  100% {
    filter: brightness(1.6) drop-shadow(0 0 25px rgba(0, 124, 240, 0.9));
  }
}