.services-page {
  min-height: 100vh;
  background: var(--rk-light);
}

.services-hero {
  position: relative;
  overflow: hidden;
  padding: 132px 0 66px;
  background: var(--rk-dark);
  color: var(--rk-white);
}

.services-hero-glow {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 143, 46, .28) 0%, rgba(31, 143, 46, 0) 70%);
}

.services-hero-inner {
  position: relative;
  animation: rkHeroIn .8s cubic-bezier(.22, .61, .36, 1) .12s both;
}

.services-back,
.service-detail-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .64);
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
  transition: color .2s;
}

.services-back {
  margin-bottom: 26px;
}

.services-back:hover {
  color: var(--rk-white);
}

.services-hero h1 {
  max-width: 760px;
  margin: 0 0 18px;
  font-size: clamp(44px, 8vw, 80px);
  line-height: .92;
}

.services-hero p {
  max-width: 600px;
  margin: 0;
  color: rgba(255, 255, 255, .74);
  font-size: clamp(16px, 2.2vw, 19px);
  line-height: 1.55;
}

.services-overview {
  padding: 72px 0 96px;
}

.service-category {
  position: relative;
  padding: 0 0 72px;
}

.service-category + .service-category {
  padding-top: 72px;
  border-top: 1px solid rgba(13, 15, 12, .09);
}

.service-category-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  gap: 44px;
  align-items: end;
  padding: 34px;
  margin-bottom: 42px;
  border: 1px solid rgba(31, 143, 46, .16);
  border-radius: 24px;
  background:
    radial-gradient(circle at right top, rgba(31, 143, 46, .11), transparent 44%),
    var(--rk-white);
  box-shadow: 0 18px 44px rgba(13, 15, 12, .06);
}

.service-category-head .rk-eyebrow {
  margin-bottom: 18px;
}

.service-category-head h2 {
  max-width: 720px;
  color: var(--rk-text);
  font-size: clamp(34px, 5.4vw, 56px);
  line-height: .94;
}

.service-category-head p {
  margin: 0 0 8px;
  color: var(--rk-muted);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.55;
}

.service-category--care .service-category-head {
  border-color: rgba(13, 15, 12, .1);
  background:
    radial-gradient(circle at right top, rgba(13, 15, 12, .055), transparent 42%),
    var(--rk-white);
}

.service-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 100%;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--rk-line);
  border-radius: 20px;
  background: var(--rk-white);
  color: inherit;
  text-decoration: none;
  box-shadow: 0 1px 2px rgba(20, 22, 12, .04);
  transition: transform .24s cubic-bezier(.22, .61, .36, 1), border-color .24s, box-shadow .24s;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 1.5px solid rgba(31, 143, 46, .78);
  border-radius: inherit;
  opacity: 0;
  pointer-events: none;
  transform: scale(.985);
  transition: opacity .24s, transform .24s cubic-bezier(.22, .61, .36, 1), box-shadow .24s;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: #cfead0;
  box-shadow: 0 18px 44px rgba(20, 22, 12, .13);
}

.service-card:hover::after {
  opacity: 1;
  transform: scale(1);
  box-shadow: inset 0 0 0 1px rgba(92, 194, 58, .08);
}

.service-card-media {
  position: relative;
  aspect-ratio: 16/11;
  overflow: hidden;
  background: #e9e8e2;
}

.service-card-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s cubic-bezier(.22, .61, .36, 1);
}

.service-card:hover .service-card-media img {
  transform: scale(1.035);
}

@media (hover: none), (pointer: coarse) {
  .service-card:hover {
    transform: none;
    border-color: var(--rk-line);
    box-shadow: 0 1px 2px rgba(20, 22, 12, .04);
  }

  .service-card:hover::after {
    opacity: 0;
    transform: scale(.985);
    box-shadow: none;
  }

  .service-card:hover .service-card-media img {
    transform: none;
  }
}

.service-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 11px;
  border-radius: var(--rk-radius-pill);
  background: var(--rk-green);
  color: var(--rk-white);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.service-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px 26px 30px;
}

.service-card-meta {
  margin-bottom: 12px;
  color: #7a7d72;
  font-size: 12.5px;
  font-weight: 700;
}

.service-card h3 {
  margin: 0 0 12px;
  color: var(--rk-text);
  font-size: clamp(25px, 2.8vw, 31px);
  line-height: 1.02;
}

.service-card p {
  flex: 1;
  margin: 0 0 22px;
  color: var(--rk-muted);
  font-size: 15px;
  line-height: 1.55;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--rk-green);
  font-size: 14.5px;
  font-weight: 900;
}

.service-card-link span {
  transition: transform .2s;
}

.service-card:hover .service-card-link span {
  transform: translateX(3px);
}

.services-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 40px 44px;
  margin-top: 44px;
  border-radius: 22px;
  background: var(--rk-dark-soft);
  color: var(--rk-white);
  box-shadow: 0 18px 48px rgba(20, 22, 12, .12);
}

.services-cta div:first-child {
  max-width: 600px;
}

.services-cta h2 {
  margin: 0 0 10px;
  font-size: clamp(26px, 3.6vw, 34px);
  line-height: 1.02;
}

.services-cta p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 16px;
  line-height: 1.55;
}

.services-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.services-cta-actions .rk-button {
  border-radius: 12px;
}

.services-cta-actions .whatsapp-button {
  border: 1.5px solid rgba(255, 255, 255, .24);
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .82);
}

.service-detail {
  padding: 132px 0 90px;
  background: var(--rk-light);
}

.service-detail[hidden],
.services-overview[hidden],
.services-hero[hidden] {
  display: none;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(300px, 420px);
  gap: 44px;
  align-items: start;
}

.service-detail-back {
  margin-bottom: 26px;
  color: #74796f;
}

.service-detail-back:hover {
  color: var(--rk-green);
}

.service-detail h1 {
  max-width: 760px;
  margin: 0 0 18px;
  color: var(--rk-text);
  font-size: clamp(40px, 7vw, 68px);
  line-height: .94;
}

.service-lead {
  max-width: 650px;
  margin: 0 0 24px;
  color: #3f433a;
  font-size: clamp(17px, 2.4vw, 21px);
  line-height: 1.5;
}

.service-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.service-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  border: 1px solid var(--rk-line);
  border-radius: var(--rk-radius-pill);
  background: var(--rk-white);
  color: #3f433a;
  font-size: 14px;
  font-weight: 800;
}

.service-image {
  position: relative;
  aspect-ratio: 4/3;
  margin-bottom: 40px;
  overflow: hidden;
  border: 1px solid var(--rk-line);
  border-radius: 20px;
  background: #e9e8e2;
}

.service-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: rkHeroIn .7s cubic-bezier(.22, .61, .36, 1) .08s both;
}

.service-detail h2 {
  margin: 0 0 18px;
  color: var(--rk-text);
  font-family: var(--rk-font-display);
  font-size: 30px;
  font-style: italic;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.service-body-text {
  margin: 0 0 34px;
  color: #3f433a;
  font-size: 17px;
  line-height: 1.6;
}

.service-bullets {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  color: #2c2f27;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.service-bullets li::before {
  content: "✓";
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  margin-top: 1px;
  border-radius: 50%;
  background: #eef7e9;
  color: #2c7d1f;
  font-weight: 900;
}

.service-note {
  display: none;
  gap: 12px;
  align-items: flex-start;
  padding: 18px 20px;
  margin-top: 34px;
  border: 1px solid var(--rk-line);
  border-left: 4px solid var(--rk-star);
  border-radius: 12px;
  background: var(--rk-white);
  color: var(--rk-muted);
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.55;
}

.service-note.is-visible {
  display: flex;
}

.booking-card-wrap {
  position: sticky;
  top: 112px;
  scroll-margin-top: 112px;
}

.booking-card {
  padding: 30px;
  border: 1px solid var(--rk-line);
  border-radius: 20px;
  background: var(--rk-white);
  box-shadow: 0 12px 36px rgba(20, 22, 12, .08);
}

.booking-title {
  margin: 0 0 6px;
  color: var(--rk-text);
  font-family: var(--rk-font-display);
  font-size: 30px;
  font-style: italic;
  font-weight: 800;
}

.booking-copy {
  margin: 0 0 24px;
  color: #7a7d72;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.booking-facts {
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding: 18px 0;
  margin-bottom: 24px;
  border-top: 1px solid #efeee8;
  border-bottom: 1px solid #efeee8;
}

.booking-fact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.booking-fact span:first-child {
  color: #7a7d72;
  font-size: 14.5px;
  font-weight: 500;
}

.booking-fact span:last-child {
  color: var(--rk-text);
  font-size: 14.5px;
  font-weight: 800;
  text-align: right;
}

.booking-actions {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.booking-actions .rk-button {
  width: 100%;
  border-radius: 13px;
}

.booking-actions .whatsapp-button {
  border: 1.5px solid #d8d7cf;
  background: transparent;
  color: var(--rk-text);
}

.booking-actions .phone-button {
  border: 1.5px solid var(--rk-dark-soft);
  background: var(--rk-dark-soft);
  color: var(--rk-white);
}

.booking-note {
  margin: 0;
  color: #8f9388;
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}

.service-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 16px;
  color: #3f433a;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

.service-detail-v2 {
  padding: 0;
  background: var(--rk-light);
}

.service-v2-hero {
  position: relative;
  display: flex;
  min-height: 560px;
  overflow: hidden;
  align-items: flex-end;
  background: var(--rk-dark);
  color: var(--rk-white);
}

.service-v2-hero-media {
  position: absolute;
  inset: 0;
}

.service-v2-hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
}

.service-v2-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 12, 9, .94) 0%, rgba(10, 12, 9, .58) 42%, rgba(10, 12, 9, .28) 70%, rgba(10, 12, 9, .42) 100%);
  pointer-events: none;
}

.service-v2-hero-content {
  position: relative;
  z-index: 1;
  padding-top: 150px;
  padding-bottom: 48px;
  animation: rkHeroIn .75s cubic-bezier(.22, .61, .36, 1) .1s both;
}

.service-v2-back {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, .72);
}

.service-v2-back:hover {
  color: var(--rk-white);
}

.service-detail-v2 h1 {
  max-width: 760px;
  color: var(--rk-white);
  font-size: clamp(40px, 7vw, 72px);
  letter-spacing: .4px;
}

.service-detail-v2 .service-lead {
  max-width: 620px;
  color: rgba(255, 255, 255, .84);
}

.service-v2-chips {
  margin-bottom: 0;
}

.service-v2-chips .service-chip {
  border-color: rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .92);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.service-v2-body {
  padding: 64px 0 40px;
}

.service-v2-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(300px, 420px);
  gap: 44px;
  align-items: start;
}

.service-v2-main {
  max-width: 680px;
}

.service-v2-main .service-note::before {
  content: "!";
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border: 2px solid #caa017;
  border-radius: 50%;
  color: #caa017;
  font-size: 13px;
  font-weight: 900;
}

.service-v2-booking-wrap {
  top: 96px;
  scroll-margin-top: 96px;
}

.service-v2-booking {
  border-color: transparent;
  background: var(--rk-dark-soft);
  color: var(--rk-white);
  box-shadow: 0 18px 48px rgba(20, 22, 12, .22);
}

.booking-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  color: #bdf0a8;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.booking-status span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--rk-green-bright);
  box-shadow: 0 0 0 3px rgba(92, 194, 58, .25);
}

.service-v2-booking .booking-title {
  color: var(--rk-white);
}

.service-v2-booking .booking-copy {
  color: rgba(255, 255, 255, .68);
}

.service-v2-booking-facts {
  border-color: rgba(255, 255, 255, .1);
}

.service-v2-booking .booking-fact span:first-child {
  color: rgba(255, 255, 255, .48);
}

.service-v2-booking .booking-fact span:last-child {
  color: rgba(255, 255, 255, .88);
}

.service-v2-booking .whatsapp-button {
  border-color: rgba(37, 211, 102, .42);
  background: rgba(37, 211, 102, .12);
  color: var(--rk-white);
}

.service-v2-booking .phone-button {
  border-color: rgba(255, 255, 255, .34);
  background: rgba(255, 255, 255, .1);
  color: var(--rk-white);
}

.service-v2-booking .phone-button svg,
.service-v2-booking .whatsapp-button img {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.service-v2-booking .phone-button svg {
  fill: currentColor;
  color: var(--rk-white);
}

.service-v2-booking .whatsapp-button:hover {
  border-color: rgba(37, 211, 102, .72);
  background: rgba(37, 211, 102, .18);
}

.service-v2-booking .booking-note {
  color: rgba(255, 255, 255, .42);
}

.service-v2-process {
  padding: 40px 0 90px;
}

.service-v2-process-card {
  padding: 44px 40px;
  border: 1px solid var(--rk-line);
  border-radius: 24px;
  background: var(--rk-white);
}

.service-v2-process-card h2 {
  margin-bottom: 34px;
}

.service-v2-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.service-v2-process-grid article {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-v2-process-grid span {
  color: var(--rk-green);
  font-family: var(--rk-font-display);
  font-size: 38px;
  font-style: italic;
  font-weight: 800;
  line-height: 1;
}

.service-v2-process-grid h3 {
  margin: 0;
  color: var(--rk-text);
  font-size: 17px;
  font-weight: 800;
}

.service-v2-process-grid p {
  margin: 0;
  color: var(--rk-muted);
  font-size: 14.5px;
  line-height: 1.6;
}

.service-faq {
  padding: 88px 0 96px;
  border-top: 1px solid var(--rk-line);
  background: var(--rk-white);
}

.service-faq-layout {
  display: grid;
  grid-template-columns: minmax(230px, 310px) minmax(0, 1fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
}

.service-faq-intro h2 {
  max-width: 280px;
  color: var(--rk-text);
  font-size: clamp(42px, 5vw, 58px);
}

.service-faq-intro > p {
  max-width: 310px;
  margin: 24px 0 0;
  color: var(--rk-muted);
  font-size: 16px;
  line-height: 1.7;
}

.service-faq-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  margin-top: 26px;
  color: var(--rk-green);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: color .2s ease;
}

.service-faq-contact svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.service-faq-contact:hover {
  color: var(--rk-text);
}

.service-faq-contact:focus-visible,
.service-faq-item summary:focus-visible {
  outline: 3px solid rgba(31, 143, 46, .32);
  outline-offset: 4px;
}

.service-faq-list {
  display: grid;
  gap: 12px;
}

.service-faq-item {
  overflow: hidden;
  border: 1px solid var(--rk-line);
  border-radius: 16px;
  background: var(--rk-white);
  transition: border-color .22s ease, background-color .22s ease, box-shadow .22s ease;
}

.service-faq-item[open] {
  border-color: rgba(31, 143, 46, .35);
  background: var(--rk-light);
  box-shadow: 0 14px 34px rgba(13, 15, 12, .06);
}

.service-faq-item summary {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 28px;
  gap: 16px;
  align-items: center;
  min-height: 76px;
  padding: 18px 22px;
  color: var(--rk-text);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
  touch-action: manipulation;
}

.service-faq-item summary::-webkit-details-marker {
  display: none;
}

.service-faq-number {
  color: var(--rk-green);
  font-family: var(--rk-font-display);
  font-size: 20px;
  font-style: italic;
  font-weight: 800;
}

.service-faq-toggle {
  position: relative;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(31, 143, 46, .25);
  border-radius: 50%;
  background: rgba(31, 143, 46, .07);
}

.service-faq-toggle::before,
.service-faq-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  border-radius: 2px;
  background: var(--rk-green);
  transform: translate(-50%, -50%);
  transition: transform .22s ease;
}

.service-faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.service-faq-item[open] .service-faq-toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.service-faq-answer {
  padding: 0 66px 24px 76px;
}

.service-faq-answer p {
  max-width: 680px;
  margin: 0;
  color: var(--rk-muted);
  font-size: 16px;
  line-height: 1.72;
}

@media (max-width: 900px) {
  .service-category-head {
    grid-template-columns: 1fr;
    gap: 22px;
    align-items: start;
    padding: 30px;
  }

  .service-category-head p {
    max-width: 680px;
  }

  .service-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .booking-card-wrap {
    position: static;
  }

  .service-v2-grid {
    grid-template-columns: 1fr;
  }

  .service-v2-main {
    max-width: none;
  }

  .service-v2-process-grid {
    grid-template-columns: 1fr;
  }

  .service-faq-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .service-faq-intro h2,
  .service-faq-intro > p {
    max-width: 620px;
  }
}

@media (max-width: 640px) {
  .services-hero {
    padding-top: 122px;
  }

  .services-overview {
    padding: 48px 0 72px;
  }

  .service-category {
    padding-bottom: 58px;
  }

  .service-category + .service-category {
    padding-top: 58px;
  }

  .service-category-head {
    gap: 18px;
    padding: 24px;
    margin-bottom: 30px;
    border-radius: 20px;
  }

  .service-category-head .rk-eyebrow {
    margin-bottom: 14px;
  }

  .service-category-grid {
    grid-template-columns: 1fr;
  }

  .services-cta {
    align-items: stretch;
    padding: 30px 24px;
  }

  .services-cta-actions,
  .services-cta-actions .rk-button {
    width: 100%;
  }

  .service-detail {
    padding-top: 122px;
  }

  .service-detail-v2 {
    padding-top: 0;
  }

  .service-v2-hero {
    min-height: 620px;
  }

  .service-v2-hero-content {
    padding-top: 132px;
    padding-bottom: 36px;
  }

  .service-v2-body {
    padding: 46px 0 32px;
  }

  .service-v2-chips .service-chip {
    width: 100%;
    justify-content: center;
  }

  .service-v2-booking {
    padding: 26px 24px;
  }

  .service-v2-process {
    padding: 28px 0 72px;
  }

  .service-v2-process-card {
    padding: 30px 24px;
    border-radius: 20px;
  }

  .service-faq {
    padding: 64px 0 72px;
  }

  .service-faq-layout {
    gap: 30px;
  }

  .service-faq-item summary {
    grid-template-columns: 30px minmax(0, 1fr) 28px;
    gap: 10px;
    min-height: 72px;
    padding: 16px;
    font-size: 16px;
  }

  .service-faq-number {
    font-size: 18px;
  }

  .service-faq-answer {
    padding: 0 18px 20px 56px;
  }

  .service-faq-answer p {
    font-size: 15.5px;
  }

}

@media (prefers-reduced-motion: reduce) {
  .service-faq-contact,
  .service-faq-item,
  .service-faq-toggle::before,
  .service-faq-toggle::after {
    transition: none;
  }
}
