/* ============================================================
   services.css — Services Page Styles
   ============================================================ */

/* ----------------------------------------------------------
   HERO
   ---------------------------------------------------------- */
.sv-hero {
  background: #0d2b2b;
  padding: 5.5rem 1.5rem 4.5rem;
  position: relative;
  overflow: hidden;
}

.sv-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 70% at 5% 50%, rgba(0,158,96,0.15) 0%, transparent 65%),
    radial-gradient(ellipse 45% 55% at 90% 20%, rgba(139,26,74,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.sv-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.sv-hero-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #00c070;
  margin-bottom: 1rem;
}

.sv-hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.18;
  margin-bottom: 1.3rem;
}

.sv-hero-title span { color: #00c070; }

.sv-hero-text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto 2.2rem;
}

.sv-hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ----------------------------------------------------------
   SHARED BUTTONS
   ---------------------------------------------------------- */
.sv-btn-primary {
  display: inline-flex;
  align-items: center;
  background: #009e60;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 25px;
  padding: 0.82rem 2rem;
  border: 2px solid #009e60;
  transition: all 0.22s ease;
  position: relative;
  overflow: hidden;
}

.sv-btn-primary:hover {
  background: #00c070;
  border-color: #00c070;
  color: #0d2b2b;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(0,192,112,0.38);
}

.sv-btn-outline {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: rgba(255,255,255,0.82);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 25px;
  padding: 0.82rem 2rem;
  border: 2px solid rgba(255,255,255,0.28);
  transition: all 0.22s ease;
}

.sv-btn-outline:hover {
  border-color: #00c070;
  color: #00c070;
  transform: translateY(-2px);
}

/* ----------------------------------------------------------
   SECTION COMMON
   ---------------------------------------------------------- */
.sv-section {
  padding: 5.5rem 1.5rem;
}

.sv-section-alt {
  background: #f2ede0;
}

.sv-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.sv-section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.sv-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #009e60;
  margin-bottom: 0.7rem;
}

.sv-rule {
  width: 44px;
  height: 3px;
  background: #009e60;
  border-radius: 2px;
  margin: 0 auto 1.6rem;
}

.sv-title {
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  font-weight: 700;
  color: #0d2b2b;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.sv-body {
  font-size: 1rem;
  color: #5a5a5a;
  line-height: 1.72;
  margin: 0;
}

/* ----------------------------------------------------------
   SERVICES GRID (3×2)
   ---------------------------------------------------------- */
.sv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.sv-card {
  background: #ffffff;
  border: 1px solid #e0dbd0;
  border-radius: 14px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.sv-card:hover {
  border-color: #009e60;
  box-shadow: 0 14px 44px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}

.sv-card-icon {
  width: 52px;
  height: 52px;
  background: rgba(0,158,96,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.3rem;
  flex-shrink: 0;
}

.sv-card-icon svg {
  width: 26px;
  height: 26px;
  color: #009e60;
}

.sv-card-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #009e60;
  margin-bottom: 0.5rem;
}

.sv-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0d2b2b;
  margin-bottom: 0.75rem;
}

.sv-card-text {
  font-size: 0.88rem;
  color: #5a5a5a;
  line-height: 1.65;
  margin: 0 0 1.5rem;
  flex: 1;
}

.sv-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #009e60;
  text-decoration: none;
  transition: gap 0.2s ease, color 0.2s ease;
  margin-top: auto;
}

.sv-card-link:hover {
  gap: 0.7rem;
  color: #00c070;
}

.sv-card-link::after {
  content: '→';
}

/* ----------------------------------------------------------
   HOW WE WORK — 3 STEP PROCESS
   ---------------------------------------------------------- */
.sv-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.sv-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.66% + 24px);
  right: calc(16.66% + 24px);
  height: 2px;
  background: linear-gradient(90deg, #009e60 0%, #00c070 100%);
  opacity: 0.35;
}

.sv-step {
  text-align: center;
  padding: 0 2rem;
}

.sv-step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #0d2b2b;
  border: 2px solid #009e60;
  color: #00c070;
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.4rem;
  position: relative;
  z-index: 1;
}

.sv-step-title {
  font-size: 1rem;
  font-weight: 700;
  color: #0d2b2b;
  margin-bottom: 0.6rem;
}

.sv-step-text {
  font-size: 0.88rem;
  color: #5a5a5a;
  line-height: 1.65;
  margin: 0;
}

/* ----------------------------------------------------------
   RESPONSIVE
   ---------------------------------------------------------- */
@media (max-width: 1024px) {
  .sv-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .sv-grid {
    grid-template-columns: 1fr;
  }

  .sv-steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .sv-steps::before {
    display: none;
  }

  .sv-step {
    padding: 0;
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 1.2rem;
    text-align: left;
    align-items: start;
  }

  .sv-step-num {
    margin: 0;
  }

  .sv-section {
    padding: 3.5rem 1.5rem;
  }
}

@media (max-width: 580px) {
  .sv-hero {
    padding: 3.5rem 1.5rem 3rem;
  }

  .sv-hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .sv-btn-primary,
  .sv-btn-outline {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}
