/* ============================================ */
/* SERVICES PAGE SPECIFIC STYLES               */
/* ============================================ */

/* Override hero background for services page */
#lgs-hero .lgs-hero-bg {
  background-image: linear-gradient(90deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.25) 30%, rgba(0,0,0,0.15) 55%, rgba(0,0,0,0) 70%), 
                    url('../imgs/Banner_services.png') !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

/* ============================================ */
/* SERVICES SPLIT SECTION (Alternating blocks)  */
/* ============================================ */
.services-split-section {
  background: linear-gradient(180deg, #bfe9c2 0%, #c5e8c7 100%);
  position: relative;
}

/* Dark section with background image */
.services-dark-section {
  background: url('../imgs/Bg.png') center/cover no-repeat;
  position: relative;
}

/* Dark section text variants */
.split-title--dark {
  color: #ffffff !important;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.split-text--dark {
  color: #ffffff !important;
  opacity: 1;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.services-dark-section .split-content {
  color: #ffffff !important;
}

.services-split-item { 
  --img-height: 380px;
}

.split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.split-title {
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;
  color: #2d2d2d;
  font-size: clamp(26px, 3.2vw, 36px);
}

.split-text {
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 400;
  color: #2d2d2d;
  font-size: 15px;
  line-height: 1.75;
  opacity: 0.95;
}

.split-image-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0,0,0,0.10);
  height: var(--img-height);
  width: 100%;
  max-width: 500px;
}

/* Yellow border removed from first image */

.split-image-wrap--rounded { border-radius: 18px; overflow: hidden; }
.split-image-wrap--rounded::after { display: none; }

.split-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.split-image-wrap:hover .split-image { transform: translateY(-6px) scale(1.02); }

/* Responsive image heights */
@media (max-width: 1199.98px) {
  .services-split-item { --img-height: 360px; }
  .split-image-wrap { max-width: 480px; }
}
@media (max-width: 991.98px) {
  .services-split-item { --img-height: 320px; }
  .split-image-wrap { max-width: 440px; }
}
@media (max-width: 767.98px) {
  .services-split-item { --img-height: 280px; }
  .split-image-wrap { max-width: 400px; }
}
@media (max-width: 480px) {
  .services-split-item { --img-height: 220px; }
  .split-image-wrap { max-width: 100%; }
}
