/* Services catalog page — reuses the home page's card visual language,
   scoped to just these selectors so it doesn't touch global body/reset rules
   already set by basserli-global.css. */

.catalog-section-title{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:16px;
  margin-bottom:8px;
}
.catalog-section-title::before,.catalog-section-title::after{
  content:"";
  width:130px;height:1px;
  background:linear-gradient(90deg,transparent,#f1b74d,transparent);
}
.catalog-section-title h1{
  margin:0;
  color:#35104f;
  font-size:36px;
  line-height:1.35;
}
.catalog-section-title span{color:#f1b74d}

.catalog-category-title{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:19px;
  color:#2d123d;
  margin-bottom:20px;
}
.catalog-category-title .bar{
  width:4px;height:20px;background:#f1b74d;border-radius:999px;display:inline-block;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.service-card{
  display:block;
  text-decoration:none;
  cursor:pointer;
  position:relative;
  overflow:hidden;
  min-height:208px;
  padding:22px 18px 18px;
  text-align:center;
  color:#fff;
  border-radius:25px;
  background:
    radial-gradient(circle at 50% -8%, rgba(255,255,255,.20), transparent 42%),
    linear-gradient(180deg, rgba(160,137,191,.78), rgba(112,89,145,.92) 42%, rgba(88,62,121,.98));
  border:1px solid rgba(255,255,255,.34);
  box-shadow:0 12px 28px rgba(56,14,81,.10);
  transition:transform .18s,box-shadow .18s;
}
.service-card:hover{
  transform:translateY(-3px);
  box-shadow:0 18px 40px rgba(40,8,58,.32);
}
.service-card::before{
  content:"";
  position:absolute;
  inset:8px;
  border-radius:19px;
  border:1px solid rgba(241,183,77,.32);
  pointer-events:none;
}
.service-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 12% 12%, rgba(255,255,255,.18), transparent 22%),
    radial-gradient(circle at 88% 16%, rgba(241,183,77,.18), transparent 20%),
    radial-gradient(circle at 16% 86%, rgba(241,183,77,.12), transparent 18%);
}
.service-icon{
  width:90px;height:90px;object-fit:contain;
  margin:0 auto 10px;
  filter:drop-shadow(0 12px 18px rgba(40,8,58,.24));
  position:relative;z-index:2;
}
.service-card h3{
  position:relative;z-index:2;
  margin:0;
  font-size:22px;
}
.service-card p{
  position:relative;z-index:2;
  margin:7px auto 0;
  font-size:14px;
  line-height:1.6;
  color:rgba(255,255,255,.82);
  max-width:200px;
}
.service-card-meta{
  position:relative;z-index:2;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  margin-top:12px;
}
.service-card-meta img{width:16px;height:16px;object-fit:contain}
.service-card-meta span{color:#ffd98e;font-weight:600;font-size:13px}
.service-card-badge{
  position:relative;z-index:2;
  display:inline-block;
  margin-top:8px;
  font-size:11px;
  color:rgba(255,255,255,.75);
  background:rgba(255,255,255,.14);
  padding:2px 10px;
  border-radius:999px;
}

@media (max-width: 1050px){
  .services-grid{
    grid-template-columns:repeat(2,1fr);
  }
}
@media (max-width: 700px){
  .services-grid{
    grid-template-columns:1fr;
  }
  .catalog-section-title::before,.catalog-section-title::after{
    width:50px;
  }
}
