/* ===== SERVICE PAGE SHARED STYLES ===== */
*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  color: #333;
}

/* ===== PAGE HERO ===== */
.svc-hero {
  position: relative;
  width: 100%;
  min-height: 340px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0d1f3c;
}

.svc-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.38;
}

.svc-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
  width: 100%;
}

.svc-hero-tag {
  display: inline-block;
  background: rgba(139, 195, 74, 0.2);
  color: #8bc34a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.svc-hero h1 {
  font-size: clamp(26px, 4vw, 48px);
  font-weight: 800;
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.2;
}

.svc-hero p {
  font-size: clamp(14px, 1.5vw, 18px);
  color: rgba(255, 255, 255, 0.82);
  max-width: 600px;
  line-height: 1.75;
  margin: 0 0 24px;
}

.svc-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  flex-wrap: wrap;
}

.svc-hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s;
}

.svc-hero-breadcrumb a:hover {
  color: #8bc34a;
}

.svc-hero-breadcrumb span.sep {
  color: rgba(255, 255, 255, 0.4);
}

/* ===== OVERVIEW SECTION ===== */
.svc-overview {
  padding: 80px 24px;
  background: #fff;
}

.svc-overview-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}

.svc-overview-inner.reverse {
  grid-template-columns: 1fr 1.1fr;
}

.svc-overview-inner.reverse .svc-ov-text {
  order: 1;
}

.svc-overview-inner.reverse .svc-ov-img {
  order: 2;
}

.svc-section-tag {
  display: inline-block;
  background: #e8f5e9;
  color: #4caf50;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.svc-ov-text h2 {
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 800;
  color: #1a1a2e;
  margin: 0 0 18px;
  line-height: 1.25;
}

.svc-ov-text p {
  color: #555;
  font-size: 15px;
  line-height: 1.82;
  margin: 0 0 16px;
}

.svc-ov-img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.13);
}

.svc-ov-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== FEATURES LIST ===== */
.svc-features {
  list-style: none;
  padding: 0;
  margin: 20px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.svc-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: #333;
  line-height: 1.55;
}

.svc-features li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: #8bc34a;
  margin-top: 2px;
}

/* ===== BENEFITS SECTION ===== */
.svc-benefits {
  padding: 80px 24px;
  background: #f4faf0;
}

.svc-benefits-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.svc-section-header {
  text-align: center;
  margin-bottom: 50px;
}

.svc-section-header h2 {
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 800;
  color: #1a1a2e;
  margin: 0 0 14px;
  line-height: 1.25;
}

.svc-section-header p {
  color: #666;
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

.svc-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.svc-benefit-card {
  background: #fff;
  border-radius: 14px;
  padding: 32px 24px;
  border: 1px solid #e4f0d8;
  transition: box-shadow 0.25s, transform 0.25s;
}

.svc-benefit-card:hover {
  box-shadow: 0 10px 36px rgba(139, 195, 74, 0.15);
  transform: translateY(-4px);
}

.svc-benefit-icon {
  width: 56px;
  height: 56px;
  background: #e8f5e9;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #4caf50;
}

.svc-benefit-icon svg {
  width: 26px;
  height: 26px;
}

.svc-benefit-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 10px;
  line-height: 1.3;
}

.svc-benefit-card p {
  font-size: 13.5px;
  color: #666;
  line-height: 1.75;
  margin: 0;
}

/* ===== IN-SECTION BUTTON ===== */
.svc-btn-primary {
  display: inline-block;
  margin-top: 10px;
  padding: 13px 36px;
  background: #4caf50;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 30px;
  transition: background 0.2s;
}

.svc-btn-primary:hover {
  background: #388e3c;
}

/* ===== CTA BANNER ===== */
.svc-cta {
  background: linear-gradient(135deg, #6aab2e 0%, #8bc34a 60%, #9ccc65 100%);
  padding: 60px 24px;
  text-align: center;
}

.svc-cta h2 {
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 800;
  color: #fff;
  margin: 0 0 14px;
  line-height: 1.25;
}

.svc-cta p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto 28px;
  line-height: 1.75;
}

.svc-cta-btn {
  display: inline-block;
  padding: 15px 44px;
  background: #fff;
  color: #4caf50;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 30px;
  margin: 0 8px 10px;
  transition: background 0.2s, color 0.2s;
}

.svc-cta-btn:hover {
  background: #1a1a2e;
  color: #fff;
}

.svc-cta-btn--outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.7);
}

.svc-cta-btn--outline:hover {
  background: #fff;
  color: #4caf50;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .svc-overview-inner,
  .svc-overview-inner.reverse {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .svc-overview-inner.reverse .svc-ov-text,
  .svc-overview-inner.reverse .svc-ov-img {
    order: unset;
  }

  .svc-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .svc-benefits-grid {
    grid-template-columns: 1fr;
  }

  .svc-overview,
  .svc-benefits {
    padding: 52px 16px;
  }
}
