/* ========================================
    SERVICE HERO 2 - SPLIT LAYOUT
    ======================================== */
.service-hero-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  padding-top: var(--header-height);
}
.service-hero-2 .content {
  background: var(--primary);
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-hero-2 .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 0.85rem;
}
.service-hero-2 .breadcrumb a {
  color: var(--gray-light);
  text-decoration: none;
}
.service-hero-2 .breadcrumb a:hover {
  color: var(--white);
}
.service-hero-2 .breadcrumb span {
  color: var(--gray-dark);
}
.service-hero-2 .breadcrumb .current {
  color: var(--gray-light);
}
.service-hero-2 .eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}
.service-hero-2 h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  margin-bottom: 20px;
}
.service-hero-2 .description {
  font-size: 1.05rem;
  color: var(--white);
  line-height: 1.8;
  margin-bottom: 32px;
}
.service-hero-2 .features {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}
.service-hero-2 .feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 0.9rem;
}
.service-hero-2 .feature svg {
  width: 18px;
  height: 18px;
  color: var(--white);
}
.service-hero-2 .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;
  align-self: flex-start;
}
.service-hero-2 .btn:hover {
  background: var(--white);
  color: var(--black);
}
.service-hero-2 .image {
  position: relative;
  overflow: hidden;
}
.service-hero-2 .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-hero-2 .image-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: var(--secondary);
  padding: 20px 24px;
  text-align: center;
}
.service-hero-2 .image-badge .value {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--white);
  line-height: 1;
}
.service-hero-2 .image-badge .label {
  font-size: 0.8rem;
  color: var(--white);
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .service-hero-2 {
    grid-template-columns: 1fr;
  }
  .service-hero-2 .image {
    height: 400px;
    order: -1;
  }
  .service-hero-2 .content {
    padding: 50px 5%;
  }
}
