/* ========================================
    SERVICE HERO 4 - DARK COMPACT
    ======================================== */
.service-hero-4 {
  padding-inline: 5%;
  position: relative;
}
.service-hero-4 .container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.service-hero-4 .top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--white-transparent);
  flex-wrap: nowrap;
}
.service-hero-4 .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.85rem;
}
.service-hero-4 .breadcrumb a {
  color: var(--gray-dark);
  text-decoration: none;
}
.service-hero-4 .breadcrumb a:hover {
  color: var(--gray-dark);
}
.service-hero-4 .breadcrumb span {
  color: var(--gray-dark);
}
.service-hero-4 .breadcrumb .current {
  color: var(--white);
}
.service-hero-4 h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 16px;
}
.service-hero-4 .description {
  font-size: 1rem;
  color: var(--white);
  line-height: 1.7;
  max-width: 500px;
}
.service-hero-4 .right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  flex-shrink: 0;
}
.service-hero-4 .left {
  flex: 1;
  min-width: 0;
}

.service-hero-4 .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--secondary);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.service-hero-4 .btn:hover {
  background: var(--primary);
}
.service-hero-4 .phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray-dark);
  font-size: 0.95rem;
}
.service-hero-4 .phone svg {
  width: 20px;
  height: 20px;
  color: var(--secondary);
}
.service-hero-4 .phone strong {
  color: var(--white);
  font-size: 1.1rem;
}
.service-hero-4 .bottom {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}
.service-hero-4 .stat {
  padding: 40px 30px;
  text-align: center;
  background: var(--secondary);
}
.service-hero-4 .stat-value {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 8px;
}
.service-hero-4 .stat-label {
  font-size: 0.85rem;
  color: var(--white);
}
@media (max-width: 1024px) {
  .service-hero-4 .bottom {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .service-hero-4 .top {
    flex-direction: column;
  }
  .service-hero-4 .right {
    align-items: flex-start;
    width: 100%;
  }
  .service-hero-4 .bottom {
    grid-template-columns: 1fr;
  }
}
