.usluga-sekcija {
    background-color: #f9f9f9;
    padding: 60px 20px;
}

.usluga-sekcija .section-subtitle {
    font-size: 28px;
    text-align: center;
    font-weight: 700;
    margin-bottom: 25px;
}

.usluga-opis {
    max-width: 900px;
    margin: 0 auto 30px auto;
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    text-align: center;
}

.usluga-lista {
    max-width: 800px;
    margin: 0 auto 50px auto;
    padding-left: 20px;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    list-style: disc;
}

.usluga-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.usluga-gallery img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.usluga-gallery img:hover {
    transform: scale(1.03);
}

.center-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    background-color: #f8861b;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #d76e09;
}

/* Responsive */
@media (max-width: 900px) {
    .usluga-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .usluga-gallery {
        grid-template-columns: 1fr;
    }
}


/* POSEBNA STILIZACIJA ZA PLASTICIFIRANJE METALA */
.plastificiranje-section {
    background: #fdfdfd;
    padding: 60px 20px;
    line-height: 1.7;
    font-size: 18px;
    color: #333;
}

.plastificiranje-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.plastificiranje-section h2,
.plastificiranje-section h3 {
    color: #f8861b;
    margin-top: 30px;
}

.content-img {
  display: block;
  margin: 40px auto;
  width: 70%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.check-list,
.grid-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 25px;
  list-style: none;
  padding-left: 0;
  margin: 25px 0;
}

@media (max-width: 768px) {
  .check-list,
  .grid-list {
    grid-template-columns: 1fr;
  }
}

.check-list li,
.grid-list li {
  background-color: #f1f5ec;
  padding: 12px 18px;
  border-left: 5px solid black;
  border-radius: 8px;
  font-weight: 500;
  position: relative;
  transition: background-color 0.3s ease;
}

.check-list li::before {
  content: \"✓\";
  color: #2a4f2b;
  font-weight: bold;
  margin-right: 10px;
}

.vrste-prahova li {
    list-style: none;
    margin-left: 20px;
}

.cta-box {
    background-color: rgb(88, 90, 96, 0.6);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    margin-top: 40px;
}

.cta-box .btn {
    margin-top: 15px;
    display: inline-block;
    padding: 10px 20px;
    background-color: #f8861b;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s;
}

.cta-box .btn:hover {
    background-color: #9c4c00;
}


/* PREGRADNE POLICE u POLICE */
.div-pregradne {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.div-pregradne p {
    margin: auto 20px;
    font-size: 17px;
}

.btn-pregradne {
    background-color: #f8861b;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    text-align: center;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-pregradne:hover {
    background-color: #d76e09;
}