/* =========================================
   USLUGE STRANICA
   ========================================= */

/* Hero */
.usluge-hero {
  padding: 160px 5% 80px;
  max-width: 100%;
  background-image: url('https://cdn.prod.website-files.com/68a5a028f0d385ae75796c90/68ac45a15272c34c9b38e959_BG%201.svg');
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 100%;
  margin-bottom: 60px;
}
.usluge-hero__inner-wrap {
  max-width: 860px;
}
.usluge-label {
  margin-bottom: 12px;
  opacity: 0.6;
  letter-spacing: 0.05em;
  text-align: left;
}
.usluge-hero__h1 {
  margin-bottom: 20px;
}
.usluge-hero__p {
  margin-bottom: 36px;
  max-width: 580px;
  opacity: 0.8;
}

/* Usluge grid */
.usluge-section {
  padding: 0 5% 100px;
}
.usluge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Kartica */
.usluge-card {
  background-color: #001C36;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.usluge-card:hover {
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-4px);
}

/* Ikona */
.usluge-card__icon {
  width: 36px;
  height: 36px;
  margin-bottom: 24px;
}
.usluge-card__icon svg {
  width: 36px;
  height: 36px;
  stroke: #fff;
  stroke-width: 1.5;
  opacity: 0.85;
}

/* Naslov kartice */
.usluge-card__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 14px;
  line-height: 1.3;
  color: #fff;
}

/* Opis */
.usluge-card__text {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

/* Lista */
.usluge-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  flex: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
}
.usluge-card__list li {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  padding: 5px 0 5px 16px;
  position: relative;
  line-height: 1.5;
}
.usluge-card__list li::before {
  content: "–";
  position: absolute;
  left: 0;
  opacity: 0.4;
}

/* Dugme na kartici */
.usluge-card__link {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 22px;
  font-size: 0.88rem;
  font-weight: 600;
  font-family: "Sequel Sans Roman Body", Arial, sans-serif;
  color: #00142D;
  background-color: #FFC300;
  text-decoration: none;
  border-radius: 999px;
  transition: background-color 0.2s ease, transform 0.15s ease;
  align-self: flex-start;
}
.usluge-card__link:hover {
  background-color: #e6b000;
  transform: translateY(-2px);
}

/* CTA sekcija */
.usluge-cta {
  padding: 80px 5% 100px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.usluge-cta__title {
  margin-bottom: 16px;
}
.usluge-cta__p {
  max-width: 520px;
  margin: 0 auto 36px;
  opacity: 0.75;
}
.usluge-cta__btns,
.div__cta-hero.is--home.usluge-cta__btns {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* Responsive — tablet */
@media (max-width: 991px) {
  .usluge-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .usluge-hero {
    padding: 140px 5% 60px;
  }
}

/* Responsive — mobile */
@media (max-width: 600px) {
  .usluge-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .usluge-hero {
    padding: 120px 5% 48px;
    background-image: none;
  }
  .usluge-card {
    padding: 28px 24px;
  }
  .usluge-cta__btns {
    flex-direction: column;
    align-items: center;
  }
}
