/* ========================================
   SERVICE PAGE STYLES
   ======================================== */

/* --- Service Page Nav (uses homepage .navbar base with scrolled colors) --- */
.service-page-nav {
  background: rgba(255,255,255,0.95) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 30px rgba(0,0,0,0.06);
  padding: 0.5rem 0 !important;
}

/* Force scrolled-state colors since nav always has white bg on service pages */
.service-page-nav .nav-logo-text { color: var(--green-800); }
.service-page-nav .nav-links a { color: var(--neutral-700); }
.service-page-nav .nav-links a:hover { color: var(--green-700); }
.service-page-nav .lang-toggle { background: var(--sage-100); border-color: var(--sage-200); }
.service-page-nav .lang-btn { color: var(--neutral-500); }
.service-page-nav .lang-btn.active { background: var(--green-700); color: #fff; }

.nav-back-link {
  text-decoration: none;
  color: var(--neutral-500);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-back-link:hover {
  color: var(--green-600);
}

/* --- Hero --- */
.sp-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  padding: 6rem 0 3.5rem;
  overflow: hidden;
}

.sp-hero-bg {
  position: absolute;
  inset: 0;
}

.sp-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.sp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.6) 100%);
}

.sp-hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  animation: spFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes spFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.sp-hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.3rem 1rem;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.sp-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.sp-hero-desc {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 550px;
  line-height: 1.6;
}

/* --- Content --- */
.sp-content {
  padding: 4rem 0 5rem;
}

.sp-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3.5rem;
  align-items: start;
}

.sp-main h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--neutral-800);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.sp-main h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--green-700);
  margin: 2rem 0 0.75rem;
}

.sp-main > p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--neutral-600);
}

/* Features Grid */
.sp-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.sp-feature {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--neutral-50);
  border-radius: 14px;
  border: 1px solid var(--neutral-100);
  transition: all 0.3s;
}

.sp-feature:hover {
  background: #fff;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

.sp-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--green-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.sp-feature h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--neutral-800);
  margin-bottom: 0.25rem;
}

.sp-feature p {
  font-size: 0.85rem;
  color: var(--neutral-500);
  line-height: 1.5;
  margin: 0;
}

/* --- Quote Block --- */
.sp-quote {
  margin-top: 2.5rem;
  padding: 2rem 2.5rem;
  background: linear-gradient(135deg, var(--green-50) 0%, rgba(255,255,255,0) 100%);
  border-left: 4px solid var(--green-500);
  border-radius: 0 16px 16px 0;
}

.sp-quote blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--green-800);
  line-height: 1.5;
  margin: 0;
}

/* --- Techniques (Emotional Release page) --- */
.sp-techniques {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

.sp-technique {
  padding: 1.25rem 1.5rem;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--neutral-100);
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  transition: all 0.3s;
}

.sp-technique:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

.sp-technique h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-700);
  margin-bottom: 0.35rem;
}

.sp-technique p {
  font-size: 0.9rem;
  color: var(--neutral-500);
  line-height: 1.6;
  margin: 0;
}

/* --- Sidebar --- */
.sp-sidebar {
  position: sticky;
  top: 5rem;
}

.sp-cta-card {
  background: linear-gradient(160deg, var(--green-800), var(--green-900));
  color: #fff;
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.sp-cta-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.sp-cta-card p {
  font-size: 0.9rem;
  opacity: 0.85;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.sp-cta-socials {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.sp-cta-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s;
}

.sp-btn-wa {
  background: #25D366;
  color: #fff;
}
.sp-btn-wa:hover { background: #1da851; transform: translateY(-1px); }

.sp-btn-ig {
  background: linear-gradient(135deg, #833AB4, #E1306C, #F77737);
  color: #fff;
}
.sp-btn-ig:hover { opacity: 0.9; transform: translateY(-1px); }

.sp-other-services {
  background: var(--neutral-50);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid var(--neutral-100);
}

.sp-other-services h4 {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--neutral-400);
  margin-bottom: 1rem;
}

.sp-other-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 10px;
  text-decoration: none;
  color: var(--neutral-700);
  font-weight: 500;
  font-size: 0.92rem;
  transition: all 0.2s;
  margin-bottom: 0.35rem;
}

.sp-other-link:hover {
  background: #fff;
  color: var(--green-700);
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.sp-other-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--green-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* --- Footer --- */
.sp-footer {
  background: var(--neutral-50);
  border-top: 1px solid var(--neutral-100);
  padding: 1.5rem 0;
  text-align: center;
}

.sp-footer p {
  font-size: 0.85rem;
  color: var(--neutral-400);
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .sp-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .sp-sidebar {
    position: static;
  }

  .sp-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .sp-hero { min-height: 45vh; padding: 5rem 0 2.5rem; }
  .sp-hero h1 { font-size: 2rem; }
  .sp-content { padding: 2.5rem 0 3rem; }
  .nav-back-link { font-size: 0.8rem; }
}
