.service-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 100px);
  padding: 40px 10%;
  background: 
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cpath fill='%23cdddf5' fill-opacity='0.3' d='M0 0h2v2H0z'/%3E%3C/svg%3E") repeat,
    linear-gradient(135deg, #e9f1ff, #f5f9ff);
  background-size: auto, cover;
}

.service-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 1200px;
  background: white;
  border-radius: 30px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  padding: 60px;
  transition: all 0.3s ease;
}

.service-image img {
  width: 320px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.service-image img:hover {
  transform: scale(1.05);
}

.service-text {
  flex: 1;
}
.service-text h1 {
  font-size: 2.8rem;
  background: linear-gradient(90deg, #004aad, #007bff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

.service-text p {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 10px;
  color: #333;
}

.service-text ul li {
  background: rgba(0, 75, 173, 0.05);
  border-left: 4px solid #007bff;
  border-radius: 6px;
  padding: 8px 12px;
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.btn-call {
  display: inline-block;
  padding: 14px 28px;
  background: linear-gradient(90deg, #004aad, #007bff);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s;
}

.btn-call:hover {
  background: linear-gradient(90deg, #003a90, #0066e6);
  transform: translateY(-3px);
}

/* ===== SEKCIJA WHY US ===== */

.why-us {
  background: linear-gradient(135deg, #f4f8ff, #e8efff),
              url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='1.5' stroke='%23031c35'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M11.42 15.17 17.25 21A2.652 2.652 0 0 0 21 17.25l-5.877-5.877M11.42 15.17l2.496-3.03c.317-.384.74-.626 1.208-.766M11.42 15.17l-4.655 5.653a2.548 2.548 0 1 1-3.586-3.586l6.837-5.63m5.108-.233c.55-.164 1.163-.188 1.743-.14a4.5 4.5 0 0 0 4.486-6.336l-3.276 3.277a3.004 3.004 0 0 1-2.25-2.25l3.276-3.276a4.5 4.5 0 0 0-6.336 4.486c.091 1.076-.071 2.264-.904 2.95l-.102.085m-1.745 1.437L5.909 7.5H4.5L2.25 3.75l1.5-1.5L7.5 4.5v1.409l4.26 4.26m-1.745 1.437 1.745-1.437m6.615 8.206L15.75 15.75M4.867 19.125h.008v.008h-.008v-.008Z'/%3E%3C/svg%3E");
  background-size: 80px 80px;
  background-color: #f4f8ff;
  padding: 120px 10%;
  text-align: center;
  position: relative;
  overflow: hidden;
}



.why-us.visible {
  opacity: 1;
  transform: translateY(0);
}

.why-us h2 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 50px;
  background: linear-gradient(90deg, #004aad, #007bff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.why-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.why-grid div {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  padding: 40px 30px;
  max-width: 320px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(40px);
}

.why-grid div:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.why-grid div .icon {
  font-size: 2.5rem;
  color: #007bff;
  margin-bottom: 15px;
  transition: text-shadow 0.5s ease, transform 0.5s ease;
}

.why-us.visible .why-grid div .icon {
  text-shadow: 0 0 15px rgba(0, 123, 255, 0.6);
  transform: scale(1.05);
}

.why-grid div h3 {
  font-size: 1.3rem;
  color: #012a4a;
  margin-bottom: 10px;
}

.why-grid div p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

/* Animacija kartica u WHY US sekciji */
.why-us.visible .why-grid div {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.why-us.visible .why-grid div:nth-child(1) {
  transition-delay: 0.2s;
}

.why-us.visible .why-grid div:nth-child(2) {
  transition-delay: 0.4s;
}

.why-us.visible .why-grid div:nth-child(3) {
  transition-delay: 0.6s;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .why-grid {
    flex-direction: column;
    align-items: center;
  }
}
.btn-group {
  display: flex;
  gap: 15px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.btn-call,
.btn-scroll {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-call {
  background: linear-gradient(90deg, #004aad, #007bff);
  color: white;
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.btn-scroll {
  background: #fff;
  color: #004aad;
  border: 2px solid #004aad;
}

.btn-scroll:hover {
  background: #004aad;
  color: white;
  transform: translateY(-3px);
}

/* === RESPONSIVE DIZAJN ZA USLUGE === */
@media (max-width: 992px) {
  .service-container {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
    gap: 30px;
  }

  .service-image img {
    width: 80%;
    max-width: 300px;
  }

  .service-text h1 {
    font-size: 2rem;
  }

  .service-text p {
    font-size: 1.05rem;
  }

  .service-text ul {
    text-align: left;
    padding-left: 20px;
  }

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

@media (max-width: 600px) {
  .service-section {
    padding: 20px;
  }

  .service-text h1 {
    font-size: 1.7rem;
  }

  .service-text p {
    font-size: 1rem;
  }

  .service-text ul li {
    font-size: 0.95rem;
  }

  .service-container {
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  }

  .btn-group {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .btn-call, .btn-scroll {
    width: 80%;
    max-width: 260px;
    text-align: center;
  }
}

@media (max-width: 400px) {
  .service-text h1 {
    font-size: 1.5rem;
  }

  .service-text p {
    font-size: 0.95rem;
  }
}

