/*--------------------
         HERO
----------------------*/
.serv_hero {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/hero.webp') center/cover no-repeat;
  /*background-attachment: fixed;*/
  height: 60vh;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 100px;
}

.serv_hero h1{
  font-weight: 700;
  font-size: 60pt;
  text-shadow: 1px 1px 2px #000;
}

.serv_hero p{
  font-weight: 400;
}

/*--------------------
        services
----------------------*/
.services-page {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.services-page a{
    color: #A31621;
}

.page-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #222;
}

.service-group {
    margin-bottom: 60px;
}

.group-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #A31621;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sub-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);/*repeat(auto-fit, minmax(280px, 1fr));*/
    gap: 25px;
}

.sub-item {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.sub-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

.sub-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
}

.sub-item p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

.service-img {
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: contain;
  border-radius: 10px;
  margin-bottom: 15px;
  background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
  transition: background 0.3s ease;
}

.service-img[loading="lazy"]:not([src]) {
  min-height: 200px;
}

.service-img.loaded {
  background: none;
  animation: none;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}