.service-hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 100px 8%;
}

.service-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(7, 17, 31, 0.78),
    rgba(7, 17, 31, 0.35),
    rgba(7, 17, 31, 0.15)
  );
}

.service-hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  color: #fff;
}

.service-hero-content h1 {
  font-size: clamp(42px, 6vw, 82px);
  line-height: 1.05;
  margin: 0 0 22px;
}

.gallery-section {
  padding: 100px 0;
  background: #f8fafc;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.gallery-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
}

.gallery-card:hover {
  transform: translateY(-6px);
}

.gallery-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.gallery-content {
  padding: 22px;
}

.gallery-content span {
  display: inline-block;
  margin-bottom: 10px;
  color: #16a34a;
  font-size: 14px;
  font-weight: 700;
}

.gallery-content h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.3;
  color: #0f172a;
}

@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .gallery-section {
    padding: 70px 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .gallery-card img {
    height: 240px;
  }

  .gallery-content h3 {
    font-size: 20px;
  }
}

.video-section {
  padding: 100px 0;
  background: #f8fafc;
}

.video-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: center;
}

.video-content p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.video-card {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #000;
}

.video-card video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

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

  .video-section {
    padding: 70px 0;
  }
}
