@charset "UTF-8";

.service-hero {
  position:relative;
  height:450px;
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:center;
}

.service-hero-overlay {
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(13,44,62,0.92) 0%, rgba(13,44,62,0.7) 60%, transparent 100%);
}

.service-hero-content {
  position:relative;
  z-index:1;
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;
  width:100%;
}

.service-hero-content h1 {
  font-size:2.5rem;
  color:var(--white);
  margin-bottom:15px;
  font-weight:700;
}

.service-hero-content p {
  font-size:1.05rem;
  color:rgba(255,255,255,0.8);
  max-width:550px;
  line-height:1.8;
}

/* Service Detail */
.service-detail { padding:80px 0; }

.service-detail-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
}

.service-detail-img {
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 8px 30px var(--shadow);
}

.service-detail-img img { width:100%; }

.service-detail-text h2 {
  font-size:1.8rem;
  color:var(--bg-dark);
  margin-bottom:20px;
}

.service-detail-text p {
  font-size:0.95rem;
  color:var(--text-mid);
  line-height:1.9;
  margin-bottom:20px;
}

.service-features { list-style:none; }

.service-features li {
  padding:10px 0;
  padding-left:28px;
  position:relative;
  font-size:0.9rem;
  color:var(--text-dark);
  border-bottom:1px solid var(--border);
}

.service-features li::before {
  content:'\2713';
  position:absolute;
  left:0;
  color:var(--primary);
  font-weight:700;
}

/* Equipment List */
.equipment-section {
  padding:60px 0;
  background:var(--bg-light);
}

.equipment-grid {
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:25px;
}

.equipment-card {
  background:var(--white);
  border-radius:12px;
  padding:30px;
  text-align:center;
  box-shadow:0 4px 15px var(--shadow);
  transition:all 0.3s;
}

.equipment-card:hover {
  transform:translateY(-5px);
  box-shadow:0 8px 25px var(--shadow-hover);
}

.equipment-icon {
  width:60px; height:60px;
  background:var(--primary-light);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 15px;
  font-size:1.5rem;
  color:var(--primary-dark);
}

.equipment-card h3 {
  font-size:1.1rem;
  color:var(--bg-dark);
  margin-bottom:10px;
}

.equipment-card p {
  font-size:0.85rem;
  color:var(--text-mid);
  line-height:1.7;
}

/* Related Services */
.related-services { padding:80px 0; }

.related-grid {
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:20px;
}

.related-card {
  background:var(--white);
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 4px 15px var(--shadow);
  transition:all 0.3s;
}

.related-card:hover {
  transform:translateY(-5px);
  box-shadow:0 8px 25px var(--shadow-hover);
}

.related-card-img {
  height:120px;
  background-size:cover;
  background-position:center;
}

.related-card-body { padding:18px; }

.related-card-body h4 {
  font-size:0.95rem;
  color:var(--bg-dark);
  font-weight:600;
}

/* Responsive */
@media (max-width:1024px) {
  .service-detail-grid { grid-template-columns:1fr; }
  .equipment-grid { grid-template-columns:repeat(2, 1fr); }
  .related-grid { grid-template-columns:repeat(2, 1fr); }
}

@media (max-width:768px) {
  .service-hero { height:350px; }
  .service-hero-content h1 { font-size:1.8rem; }
  .equipment-grid { grid-template-columns:1fr; }
  .related-grid { grid-template-columns:1fr; }
}
