/* =============================================
   SERVICE PAGE STYLES — service-page.css
   Shared across all 9 service pages
============================================= */

/* ── HERO ── */
.sp-hero {
  background: linear-gradient(160deg, #1a3326 0%, #2f5239 60%, #1e3d2c 100%);
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
}
.sp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 95% 15%, rgba(240,208,128,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 0% 85%, rgba(201,168,76,0.07) 0%, transparent 55%);
  pointer-events: none;
}

.sp-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
}
.sp-breadcrumb a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.sp-breadcrumb a:hover { color: rgba(255,255,255,0.85); }
.sp-breadcrumb span { color: rgba(255,255,255,0.25); }

.sp-hero-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7ec897;
  background: rgba(126,200,151,0.15);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.sp-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 600;
  color: #f5f0e8;
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.sp-hero-title em {
  font-style: italic;
  color: #7ec897;
  font-weight: 400;
}

.sp-hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  max-width: 600px;
  font-weight: 300;
}

/* ── BODY ── */
.sp-body {
  padding: 80px 0 100px;
  background: #fbfaf5;
}

.sp-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 56px;
  align-items: start;
}

/* Left */
.sp-section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #4a7c59;
  margin-bottom: 14px;
}

.sp-desc {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  font-weight: 300;
}

.sp-treat-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sp-treat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 18px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #ede9d8;
  font-size: 14px;
  color: #2a2a2a;
  font-weight: 500;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.sp-treat-item:hover {
  border-color: rgba(74,124,89,0.3);
  box-shadow: 0 4px 16px rgba(74,124,89,0.07);
}

.sp-treat-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4a7c59;
  flex-shrink: 0;
}

/* Right — CTA card */
.sp-cta-card {
  background: #1e3a2b;
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: sticky;
  top: 100px;
}

.sp-cta-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  color: #f5f0e8;
  line-height: 1.25;
  letter-spacing: 0.01em;
}

.sp-cta-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  font-weight: 300;
}

.sp-cta-phone {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 600;
  color: #7ec897;
  text-decoration: none;
  letter-spacing: 0.03em;
  line-height: 1;
  transition: color 0.2s;
}
.sp-cta-phone:hover { color: #a8e0bc; }

.sp-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #4a7c59;
  color: #fff;
  border-radius: 10px;
  padding: 13px 20px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
  text-align: center;
}
.sp-cta-btn:hover { background: #5a8e6a; }

.sp-cta-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
}

.sp-cta-info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sp-cta-info svg {
  width: 14px;
  height: 14px;
  color: rgba(255,255,255,0.3);
  flex-shrink: 0;
}
.sp-cta-info span {
  font-size: 12px;
  color: rgba(255,255,255,0.38);
  line-height: 1.5;
}

.sp-back-link {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  text-align: center;
  transition: color 0.2s;
  margin-top: 4px;
}
.sp-back-link:hover { color: rgba(255,255,255,0.7); }

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .sp-grid { grid-template-columns: 1fr; }
  .sp-cta-card { position: static; }
  .sp-hero { padding: 60px 0 48px; }
}

/* Linked treatment items */
a.sp-treat-item {
  text-decoration: none;
  cursor: pointer;
  justify-content: space-between;
}
a.sp-treat-item:hover {
  border-color: rgba(74,124,89,0.4);
  background: #f2f9f2;
  box-shadow: 0 4px 16px rgba(74,124,89,0.1);
}
.sp-treat-arrow {
  font-size: 14px;
  color: #4a7c59;
  margin-left: auto;
  flex-shrink: 0;
  transition: transform 0.2s;
}
a.sp-treat-item:hover .sp-treat-arrow { transform: translateX(4px); }

/* ── Clickable treatment list items ── */
.sp-treat-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: inherit;
  border-radius: 10px;
  padding: 2px 8px 2px 0;
  margin: 0 -8px 0 0;
  transition: all 0.25s ease;
  cursor: pointer;
}
.sp-treat-link:hover {
  background: rgba(74,124,89,0.07);
  padding-left: 10px;
  color: #1a3326;
}
.sp-treat-link:hover .sp-treat-dot {
  background: #4a7c59;
  transform: scale(1.2);
}
.sp-treat-link:hover .sp-arrow {
  opacity: 1;
  transform: translateX(0);
}
.sp-arrow {
  font-size: 14px;
  color: #4a7c59;
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.25s ease;
  flex-shrink: 0;
  margin-left: 8px;
}

/* ── Sub-service Card Grid ─────────────────────────────────────────── */
.sp-sub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 4px;
}

.sp-sub-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 16px;
  background: #fff;
  border: 1px solid #e8e4d6;
  border-radius: 14px;
  transition: all 0.25s ease;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
}

/* Green left accent bar */
.sp-sub-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: #4a7c59;
  border-radius: 3px 0 0 3px;
  transform: scaleY(0);
  transition: transform 0.25s ease;
}

.sp-sub-card--link {
  cursor: pointer;
}
.sp-sub-card--link:hover {
  border-color: rgba(74,124,89,0.3);
  box-shadow: 0 6px 24px rgba(74,124,89,0.1);
  transform: translateY(-2px);
  background: #fafff8;
}
.sp-sub-card--link:hover::before {
  transform: scaleY(1);
}
.sp-sub-card--link:hover .sp-sub-card__arrow {
  opacity: 1;
  transform: translateX(0);
}

.sp-sub-card__icon {
  font-size: 24px;
  width: 44px;
  height: 44px;
  background: rgba(74,124,89,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s;
}
.sp-sub-card--link:hover .sp-sub-card__icon {
  background: rgba(74,124,89,0.15);
}

.sp-sub-card__body {
  flex: 1;
  min-width: 0;
}

.sp-sub-card__title {
  font-size: 14px;
  font-weight: 600;
  color: #1a2a1a;
  margin-bottom: 5px;
  line-height: 1.2;
}

.sp-sub-card__desc {
  font-size: 12px;
  color: #6a7a6a;
  line-height: 1.55;
}

.sp-sub-card__arrow {
  font-size: 16px;
  color: #4a7c59;
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.25s ease;
  flex-shrink: 0;
  align-self: center;
}

/* Mobile */
@media (max-width: 600px) {
  .sp-sub-grid {
    grid-template-columns: 1fr;
  }
}
