@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');




body {
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top left, #dfe9f3, #f7faff);
  background-attachment: fixed;
  color: #1e1e1e;
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.03);
}

.text-box,
.form,
.reviews,
.services,
.why-item {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  background: #fff;
}

header {
  background: rgba(0, 34, 68, 0.9);
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}

/* Logo + 3D */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  height: auto;
  line-height: 1;
}

.logo img {
  height: 36px;
  width: auto;
  display: block;
}

.logo span {
  font-size: 1rem;
  color: #fff;
  font-weight: bold;
  line-height: 1;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

nav a {
  position: relative;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  padding: 6px 10px;
  transition: all 0.3s ease;
}

nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background-color: #ffd500;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  border-radius: 2px;
}

nav a:hover::after {
  transform: scaleX(1);
}

nav a:hover {
  color: #ffd500;
  transform: translateY(-2px);
}

.hero-container {
  display: flex;
  justify-content: center;
  padding: 60px 20px;
}

.hero-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  padding: 30px;
  max-width: 1100px;
  width: 100%;
  gap: 20px;
}

.hero-text {
  flex: 1;
  min-width: 280px;
  padding: 10px;
  text-align: center;
}

.hero-text h1 {
  font-size: 36px;
  color: #002244;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 18px;
  color: #333;
}

.hero-img {
  flex: 1;
  min-width: 280px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    padding: 40px 10px;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .hero-text p {
    font-size: 16px;
  }
}


.cta-btn {
  background: #ffd500;
  padding: 12px 20px;
  text-decoration: none;
  color: #000;
  font-weight: bold;
  border-radius: 5px;
}

.cta-btn:hover {
  background: #ffeb3b;
  transform: scale(1.05);
  transition: all 0.3s ease;
}

.hero-img {
  flex: 1.1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.hero-img img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.info {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  margin: 40px;
  padding: 60px 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.text-box {
  flex: 1;
  min-width: 320px;
  max-width: 600px;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  box-sizing: border-box;
}

.text-box:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.text-box h2 {
  margin-top: 0;
  color: #002244;
}

.text-box p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
}

.text-image {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

footer {
  background: #002244;
  color: #fff;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}

.footer-left {
  display: flex;
  gap: 20px;
}

.footer-left a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.footer-left a:hover {
  text-decoration: underline;
}

footer p {
  flex: 1;
  text-align: center;
  font-size: 14px;
  margin: 10px 0;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1); /* bijele ikone */
  transition: transform 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.2);
}

/*footer mobile */
@media (max-width: 768px) {
  footer {
    gap: 20px;
    padding: 20px 20px;
  }

  .footer-left {
    gap: 20px;
    flex-wrap: wrap;
  }

  .social-icons {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  footer p {
    margin-top: 10px;
  }
}

.reviews, .services {
  padding: 40px 20px;
  text-align: center;
  background: #ffffff;
}

.reviews h3, .services h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #002244;
}

.review-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.review {
  background: #f4f4f4;
  padding: 20px;
  border-radius: 10px;
  width: 280px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.review p {
  font-style: italic;
  margin-bottom: 10px;
}

.review span {
  color: #888;
  font-weight: bold;
}

.services ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 500px;
  text-align: left;
}

.services li {
  font-size: 18px;
  margin: 10px 0;
  padding-left: 25px;
  position: relative;
}

.services li::before {
  content: "✔️";
  position: absolute;
  left: 0;
}

body h1, body h2, body h3, body p {
  text-align: center;
}

.why-us {
  padding: 50px 20px;
  background-color: #e6f0ff;
}

.why-us h3 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #002244;
}

.why-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.why-item {
  max-width: 220px;
  text-align: center;
}

.why-item img {
  height: 60px;
  margin-bottom: 10px;
}

.why-item h4 {
  margin: 10px 0 5px;
  color: #002244;
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }
  .hero-text, .hero-img {
    flex: unset;
    width: 100%;
    padding: 10px;
  }
  .review-list, .why-list {
    flex-direction: column;
    align-items: center;
  }
  .info {
    flex-direction: column;
    align-items: center;
  }
}


.scroll-fade {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.scroll-fade.visible {
  opacity: 1;
  transform: translateY(0);
}


/* FAQ sekcija */
.faq {
  max-width: 700px;
  margin: 60px auto;
  background: #fff;
  padding: 30px 20px;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.faq h3 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 22px;
  color: #222;
}

.faq details {
  border: 1px solid #e0e0e0;
  background: #f9f9f9;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 10px 15px;
  cursor: pointer;
}

.faq summary {
  font-weight: bold;
  font-size: 16px;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq p {
  margin: 10px 0 0 25px;
  font-size: 15px;
  color: #333;
}

/* Ikonica */
.faq i.fa-thumbtack {
  color: #e91e63;
}

/* Call to Action */
.cta-whatsapp {
  padding: 60px 20px;
  background: linear-gradient(135deg, #002244, #004488);
  color: white;
  text-align: center;
}

.cta-whatsapp h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.cta-whatsapp p {
  font-size: 18px;
  margin-bottom: 30px;
}

.cta-whatsapp a.whatsapp-btn {
  display: inline-block;
  background: #25D366;
  color: white;
  padding: 12px 24px;
  font-size: 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.cta-whatsapp a.whatsapp-btn:hover {
  background: #1ebe5d;
}


/* Mobilni meni dugme */
.mobile-menu-toggle {
  display: none;
  font-size: 30px;
  cursor: pointer;
  color: #fff;
}

/* Sidebar meni */
.mobile-menu {
  display: none;
  position: fixed;
  top: 60px;
  right: -100%;
  width: 80%;
  max-width: 280px;
  height: 35%;
  background: #002244;
  color: #fff;
  padding: 40px 20px;
  transition: right 0.3s ease;
  z-index: 999;
  box-shadow: -5px 0 10px rgba(0, 0, 0, 0.2);
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  transition: right 0.3s ease, border-radius 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;   /* horizontalno centriranje */
  justify-content: center; /* vertikalno centriranje ako želiš */
  text-align: center; /* centriraj tekst */
}

.mobile-menu.open {
  display: block;
  right: 0;
}

.mobile-menu .close-btn {
  font-size: 30px;
  position: absolute;
  top: 4px;
  right: 15px;
  cursor: pointer;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 60px;
}

.mobile-menu ul li {
  margin: 20px 0;
}

.mobile-menu ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
}

.mobile-menu a {
  position: relative;
}

.mobile-menu a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #ffd500;
  transition: width 0.3s ease;
}

.mobile-menu a:hover::after {
  width: 60%;
}

@media (max-width: 768px) {
  nav ul {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
    position: absolute;
    top: 6px;
    right: 25px;
    z-index: 1000;
  }

  .logo {
    margin-right: auto;
  }
}


/* ========== RESPONSIVE ZA TABLETE (do 1024px) ========== */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
  }

  .hero-text, .hero-img {
    width: 100%;
    padding: 10px 0;
  }

  .info {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 40px 20px;
  }

  .text-box, .form {
    max-width: 90%;
  }

  .why-list {
    flex-direction: column;
    align-items: center;
  }

  .review-list {
    flex-direction: column;
    align-items: center;
  }

  nav ul {
    gap: 15px;
  }
}

/* ========== MOBILNI (do 768px) – dodatna podešavanja ========== */
@media (max-width: 768px) {
  .text-box h2, .form h2,
  .why-us h3, .reviews h3, .services h3 {
    font-size: 22px;
  }

  .cta-btn {
    padding: 10px 16px;
    font-size: 16px;
  }

  footer {
    font-size: 14px;
    padding: 15px;
  }
}

@media (max-width: 1024px) {
  .text-box, .form {
    width: 90%;
    max-width: 600px;
  }
}
