/* ===============================
   SERVICES SECTION (MODERN)
================================= */

.services-container {
  max-width: 1200px;
  margin: 100px auto;
  display: flex;
  flex-direction: column;
  gap: 120px;
}

/* Individual Service Block */
.service-section {
  display: flex;
  align-items: center;
  gap: 80px;
  position: relative;
}

/* Reverse layout */
.service-section.reverse {
  flex-direction: row-reverse;
}

/* Subtle divider line between sections */
.service-section:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 1px;
  background: #e5e5e5;
}

/* ===============================
   ICON AREA
================================= */

.service-icon {
  flex: 0 0 120px;
  height: 120px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 42px;
  color: #570000;

  border-radius: 20px;
  background: #f8f9fa;

  transition: all 0.3s ease;
}

.service-section:hover .service-icon {
  background: #570000;
  color: #ffffff;
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(87, 0, 0, 0.2);
}

/* ===============================
   TEXT AREA
================================= */

.service-text {
  flex: 1;
}

.service-text h2 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #222;
  position: relative;
}

/* Accent underline */
.service-text h2::after {
  content: "";
  width: 50px;
  height: 3px;
  background: #570000;
  display: block;
  margin-top: 12px;
}

.service-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
  max-width: 650px;
}

/* ===============================
   RESPONSIVE
================================= */

@media (max-width: 992px) {

  .services-container {
    gap: 80px;
  }

  .service-section,
  .service-section.reverse {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .service-section:not(:last-child)::after {
    bottom: -40px;
  }

  .service-text h2::after {
    margin: 12px auto 0 auto;
  }

  .service-text p {
    margin: 0 auto;
  }
}