/*USLUGE NEW */


/* GRID LAYOUT */
.usluge-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding: 2rem;
}

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

/* ITEM CARD */
.usluge-item {
  position: relative;
  height: 480px;
  overflow: hidden;
  background: #F2F2F2; /* soft neutral */
  color: #4F6F6F; /* deep sage text */
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: all 0.35s ease;
 /* box-shadow: 0 4px 18px rgba(107, 138, 138, 0.12);*/ /* soft sage shadow */
}

/* IMAGE */
.usluge-image-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.usluge-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 6s ease;
}

.usluge-item:hover .usluge-image {
  transform: scale(1.15);
}

/* CONTENT AREA */
.usluge-info {
  position: relative;
  z-index: 2;
  padding: 2rem;
	background:#fff;
 /* background: rgba(255,255,255,0.86); *//* soft frosted overlay */
  backdrop-filter: blur(6px);
 /* border-top: 1px solid #AFCFB1;*/ /* light leaf border */
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-radius: 0 0 14px 14px;
	margin-bottom: -1px;
	min-height: 225px;
	   
}

/* TITLE */
.usluge-title {
font-size: 22px;
    font-weight: 700;
    color: #3f3a34;
  margin-bottom: 6px;
}

/* SUBTITLE */
.usluge-subtitle {
  font-size: 16px;
  line-height: 1.5;
  color: #6B8A8A; /* soft sage */
  min-height: 60px;
}

/* BUTTON WRAPPER */
.usluge-button-wrapper {
  margin-top: 12px;
}

/* ISKRA BRAND BUTTON */
.usluge-readmore-button {
  padding: 10px 26px;
  display: inline-block;
  font-weight: 600;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;

  background-color: #D7987D; /* soft teal */
  color: #fff;

  transition: all 0.3s ease;
}

/* BUTTON HOVER */
.usluge-readmore-button:hover {
  background-color: #F9DED4; /* deep sage */
  color: #D7987D;
}

/* ITEM HOVER */
.usluge-item:hover {
/*  box-shadow: 0 8px 22px rgba(107, 138, 138, 0.18);*/
  transform: translateY(-4px);
}