/* shared-service.css */
:root {
  --ivory: #FAF8F4;
  --cream: #F2EDE4;
  --sage: #7A9E87;
  --sage-dark: #4E7A5E;
  --sage-light: #C8DDD0;
  --charcoal: #1C2B26;
  --warm-brown: #8B6E52;
  --gold: #C9A84C;
  --text: #2D3830;
  --text-muted: #6B7A6E;
  --white: #FFFFFF;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--ivory);
  color: var(--text);
  overflow-x: hidden;
}

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  padding: 20px 60px;
  background: rgba(250,248,244,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(122,158,135,0.15);
  box-shadow: 0 2px 30px rgba(28,43,38,0.06);
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 600; color: var(--charcoal);
  text-decoration: none;
}
.logo span { color: var(--sage); }

.nav-links { display: flex; gap: 36px; list-style: none; margin-left: auto; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text-muted);
  text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover { color: var(--charcoal); }

.nav-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--cream);
  color: var(--charcoal);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}
.nav-menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 10px;
  background: currentColor;
  transition: transform 0.2s, opacity 0.2s;
}
nav.menu-open .nav-menu-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
nav.menu-open .nav-menu-toggle span:nth-child(2) { opacity: 0; }
nav.menu-open .nav-menu-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-call,
.nav-cta {
  background: var(--sage); color: var(--white);
  padding: 12px 28px; border-radius: 50px; font-size: 14px;
  font-weight: 500; text-decoration: none; transition: background 0.2s;
  white-space: nowrap;
}
.nav-call { background: var(--charcoal); }
.nav-call:hover { background: var(--sage-dark); }
.nav-cta:hover { background: var(--sage-dark); }

/* SERVICE HERO */
.service-hero {
  min-height: 70vh;
  display: grid; grid-template-columns: 1fr 1fr;
  padding-top: 80px; overflow: hidden;
}

.service-hero-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 60px;
}

.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-muted); margin-bottom: 28px;
}
.breadcrumb a { color: var(--sage); text-decoration: none; }
.breadcrumb span { color: var(--text-muted); }

.service-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--sage); font-weight: 600; margin-bottom: 20px;
}
.service-eyebrow::before { content: ''; width: 32px; height: 1.5px; background: var(--sage); }

.service-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 4.5vw, 66px);
  font-weight: 300; line-height: 1.1; color: var(--charcoal);
  margin-bottom: 20px;
}
.service-hero h1 em { font-style: italic; color: var(--sage); }

.service-hero-desc {
  font-size: 17px; line-height: 1.7; color: var(--text-muted);
  max-width: 440px; margin-bottom: 40px;
}

.hero-cta-row { display: flex; gap: 16px; align-items: center; }

.btn-primary {
  background: var(--charcoal); color: var(--white);
  padding: 15px 34px; border-radius: 50px; font-size: 15px;
  font-weight: 500; text-decoration: none; transition: all 0.2s;
}
.btn-primary:hover { background: var(--sage-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(78,122,94,0.3); }

.btn-ghost {
  color: var(--text-muted); font-size: 15px; font-weight: 500;
  text-decoration: none; transition: color 0.2s;
}
.btn-ghost:hover { color: var(--charcoal); }

.service-hero-img {
  position: relative; overflow: hidden; background: var(--sage-light);
}
.service-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.service-hero-img img.no-crop-img {
  object-fit: contain;
  object-position: center;
  background: var(--white);
}

/* QUICK FACTS */
.quick-facts {
  background: var(--charcoal);
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding: 40px 60px; gap: 1px;
}
.qf-item {
  text-align: center; padding: 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.qf-item:last-child { border-right: none; }
.qf-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px; font-weight: 600; color: var(--sage); line-height: 1;
  margin-bottom: 6px;
}
.qf-label { font-size: 13px; color: rgba(255,255,255,0.6); }

/* CONTENT SECTIONS */
.content-block {
  padding: 80px 60px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.content-block.reverse { direction: rtl; }
.content-block.reverse > * { direction: ltr; }
.content-block.alt-bg { background: var(--cream); }

.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--sage); font-weight: 600; margin-bottom: 16px;
}
.section-tag::before { content: ''; width: 28px; height: 1.5px; background: var(--sage); }

.content-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 3.5vw, 50px); font-weight: 300;
  line-height: 1.15; color: var(--charcoal); margin-bottom: 20px;
}
.content-title em { font-style: italic; color: var(--sage); }

.content-text { font-size: 15px; line-height: 1.8; color: var(--text-muted); margin-bottom: 16px; }

.check-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.check-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: var(--text); line-height: 1.5;
}
.check-list li::before {
  content: '✓'; width: 22px; height: 22px; border-radius: 50%;
  background: var(--sage-light); color: var(--sage-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; flex-shrink: 0; margin-top: 1px;
}

.content-img { border-radius: 20px; overflow: hidden; height: 440px; }
.content-img img { width: 100%; height: 100%; object-fit: cover; }

/* PROCESS STEPS */
.process-section { padding: 80px 60px; background: var(--ivory); }
.process-header { text-align: center; margin-bottom: 60px; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }

.process-step {
  text-align: center; padding: 36px 24px;
  background: var(--white); border-radius: 20px;
  border: 1px solid rgba(122,158,135,0.12);
  position: relative;
}
.process-step::after {
  content: '→'; position: absolute; top: 50%; right: -22px;
  transform: translateY(-50%);
  color: var(--sage-light); font-size: 22px;
}
.process-step:last-child::after { display: none; }

.step-icon { font-size: 36px; margin-bottom: 16px; }
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px; letter-spacing: 2px; color: var(--sage);
  font-weight: 600; margin-bottom: 8px; text-transform: uppercase;
}
.step-title { font-weight: 600; font-size: 16px; color: var(--charcoal); margin-bottom: 8px; }
.step-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* FAQ */
.faq-section { padding: 80px 60px; background: var(--cream); }
.faq-header { text-align: center; margin-bottom: 56px; }

.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 900px; margin: 0 auto; }
.faq-item {
  background: var(--white); border-radius: 16px; padding: 28px;
  border: 1px solid rgba(122,158,135,0.12);
}
.faq-q { font-weight: 600; font-size: 15px; color: var(--charcoal); margin-bottom: 10px; }
.faq-a { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* CTA BOTTOM */
.service-cta {
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
  text-align: center; padding: 80px 60px;
}
.service-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 54px); font-weight: 300;
  color: var(--white); margin-bottom: 14px;
}
.service-cta p { font-size: 16px; color: rgba(255,255,255,0.8); margin-bottom: 36px; }
.btn-white {
  background: var(--white); color: var(--sage-dark);
  padding: 16px 40px; border-radius: 50px; font-size: 15px;
  font-weight: 600; text-decoration: none; display: inline-block;
  transition: all 0.2s;
}
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0,0,0,0.15); }

/* FOOTER */
footer {
  background: var(--charcoal); color: var(--white);
  padding: 48px 60px; display: flex;
  justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 20px;
}
.footer-left .logo { color: var(--white); display: block; margin-bottom: 8px; }
.footer-left p { font-size: 13px; color: rgba(255,255,255,0.5); }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom-bar {
  background: var(--charcoal); color: rgba(255,255,255,0.4);
  font-size: 13px; padding: 16px 60px;
  border-top: 1px solid rgba(255,255,255,0.06); text-align: center;
}

.whatsapp-float {
  position: fixed; right: 24px; bottom: 24px; z-index: 140;
  width: 58px; height: 58px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: #25D366; color: var(--white); text-decoration: none;
  box-shadow: 0 14px 32px rgba(37,211,102,0.35);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.whatsapp-float:hover {
  background: #1FB457;
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(37,211,102,0.42);
}
.whatsapp-float:focus-visible {
  outline: 3px solid rgba(37,211,102,0.35);
  outline-offset: 4px;
}
.whatsapp-float::before {
  content: ''; width: 30px; height: 30px; background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.01 3.2C8.96 3.2 3.22 8.93 3.22 15.97c0 2.25.59 4.45 1.71 6.38L3.1 29l6.83-1.79a12.75 12.75 0 0 0 6.08 1.55h.01c7.04 0 12.77-5.73 12.77-12.78S23.06 3.2 16.01 3.2Zm0 23.4h-.01c-1.91 0-3.78-.51-5.42-1.48l-.39-.23-4.05 1.06 1.08-3.95-.25-.41a10.53 10.53 0 0 1-1.61-5.62c0-5.86 4.78-10.63 10.65-10.63 2.84 0 5.51 1.11 7.52 3.12a10.56 10.56 0 0 1 3.12 7.52c0 5.87-4.77 10.62-10.64 10.62Zm5.84-7.96c-.32-.16-1.89-.93-2.18-1.04-.29-.11-.5-.16-.71.16-.21.32-.82 1.04-1 1.25-.18.21-.37.24-.69.08-.32-.16-1.35-.5-2.57-1.58-.95-.85-1.59-1.9-1.78-2.22-.18-.32-.02-.49.14-.65.14-.14.32-.37.48-.56.16-.19.21-.32.32-.53.11-.21.05-.4-.03-.56-.08-.16-.71-1.71-.97-2.34-.26-.62-.52-.53-.71-.54h-.61c-.21 0-.56.08-.85.4-.29.32-1.11 1.09-1.11 2.65 0 1.56 1.14 3.07 1.3 3.28.16.21 2.24 3.42 5.43 4.8.76.33 1.35.52 1.81.67.76.24 1.45.21 2 .13.61-.09 1.89-.77 2.16-1.52.27-.75.27-1.39.19-1.52-.08-.13-.29-.21-.61-.37Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.01 3.2C8.96 3.2 3.22 8.93 3.22 15.97c0 2.25.59 4.45 1.71 6.38L3.1 29l6.83-1.79a12.75 12.75 0 0 0 6.08 1.55h.01c7.04 0 12.77-5.73 12.77-12.78S23.06 3.2 16.01 3.2Zm0 23.4h-.01c-1.91 0-3.78-.51-5.42-1.48l-.39-.23-4.05 1.06 1.08-3.95-.25-.41a10.53 10.53 0 0 1-1.61-5.62c0-5.86 4.78-10.63 10.65-10.63 2.84 0 5.51 1.11 7.52 3.12a10.56 10.56 0 0 1 3.12 7.52c0 5.87-4.77 10.62-10.64 10.62Zm5.84-7.96c-.32-.16-1.89-.93-2.18-1.04-.29-.11-.5-.16-.71.16-.21.32-.82 1.04-1 1.25-.18.21-.37.24-.69.08-.32-.16-1.35-.5-2.57-1.58-.95-.85-1.59-1.9-1.78-2.22-.18-.32-.02-.49.14-.65.14-.14.32-.37.48-.56.16-.19.21-.32.32-.53.11-.21.05-.4-.03-.56-.08-.16-.71-1.71-.97-2.34-.26-.62-.52-.53-.71-.54h-.61c-.21 0-.56.08-.85.4-.29.32-1.11 1.09-1.11 2.65 0 1.56 1.14 3.07 1.3 3.28.16.21 2.24 3.42 5.43 4.8.76.33 1.35.52 1.81.67.76.24 1.45.21 2 .13.61-.09 1.89-.77 2.16-1.52.27-.75.27-1.39.19-1.52-.08-.13-.29-.21-.61-.37Z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.whatsapp-float svg { width: 30px; height: 30px; fill: currentColor; }

.page-jump-float {
  position: fixed; left: 24px; bottom: 24px; z-index: 140;
  width: 52px; height: 52px; border-radius: 50%;
  border: 0; background: var(--charcoal); color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: 0 14px 32px rgba(28,43,38,0.22);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.page-jump-float:hover {
  background: var(--sage-dark);
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(28,43,38,0.28);
}
.page-jump-float:focus-visible {
  outline: 3px solid rgba(122,158,135,0.35);
  outline-offset: 4px;
}
.page-jump-float span {
  width: 14px; height: 14px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-3px) rotate(45deg);
  transition: transform 0.2s;
}
.page-jump-float.go-top span { transform: translateY(3px) rotate(225deg); }
.page-jump-float.go-top {
  background: var(--sage-light);
  color: var(--charcoal);
  box-shadow: 0 14px 34px rgba(200,221,208,0.28);
}
.page-jump-float.go-top:hover { background: var(--white); }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(24px); transition: all 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 960px) {
  nav { padding: 12px 16px; gap: 8px; }
  .logo { font-size: 22px; }
  .nav-menu-toggle { display: inline-flex; order: 5; }
  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    gap: 6px;
    margin: 0;
    padding: 10px;
    background: rgba(250,248,244,0.98);
    border: 1px solid rgba(122,158,135,0.18);
    border-radius: 18px;
    box-shadow: 0 18px 48px rgba(28,43,38,0.14);
    backdrop-filter: blur(12px);
  }
  nav.menu-open .nav-links { display: flex; }
  .nav-links a {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 11px 14px;
    border-radius: 12px;
    background: rgba(255,255,255,0.68);
    color: var(--charcoal);
    font-size: 14px;
    line-height: 1;
  }
  .nav-call, .nav-cta { padding: 10px 12px; font-size: 12px; }
  .nav-call { order: 2; }
  .nav-cta { order: 3; }
  .nav-call { font-size: 0; width: 42px; height: 42px; padding: 0; display: inline-flex; align-items: center; justify-content: center; }
  .nav-call::before { content: 'Call'; font-size: 12px; }
  .service-hero { grid-template-columns: 1fr; min-height: auto; padding-top: 80px; }
  .service-hero h1 { font-size: clamp(38px, 12vw, 52px); }
  .service-hero-desc { font-size: 15px; margin-bottom: 28px; }
  .service-hero-img { height: 300px; }
  .service-hero-content { padding: 56px 20px 36px; }
  .hero-cta-row { flex-direction: column; align-items: stretch; }
  .hero-cta-row a { text-align: center; }
  .quick-facts { grid-template-columns: 1fr 1fr; padding: 28px 16px; }
  .qf-item { padding: 20px 12px; }
  .qf-num { font-size: 34px; }
  .content-block { grid-template-columns: 1fr; padding: 56px 20px; gap: 34px; }
  .content-block.reverse { direction: ltr; }
  .content-img { height: 300px; border-radius: 16px; }
  .process-section, .faq-section, .service-cta { padding: 56px 20px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-step::after { display: none; }
  .faq-grid { grid-template-columns: 1fr; }
  .page-jump-float { left: 18px; bottom: 18px; width: 50px; height: 50px; }
  .whatsapp-float { right: 18px; bottom: 18px; width: 54px; height: 54px; }
  footer { padding: 40px 20px; flex-direction: column; align-items: flex-start; }
  .footer-links { gap: 14px; }
  .footer-bottom-bar { padding: 16px 20px; }
}

@media (max-width: 520px) {
  .logo { flex: 1 1 120px; min-width: 0; }
  .nav-cta { max-width: 98px; overflow: hidden; text-overflow: ellipsis; }
  .quick-facts, .process-grid { grid-template-columns: 1fr; }
  .service-hero-img { height: 240px; }
  .content-img { height: 240px; }
  .btn-primary, .btn-white { width: 100%; text-align: center; }
}

@media (max-width: 380px) {
  nav { gap: 6px; padding: 10px 12px; }
  .logo { font-size: 18px; }
  .nav-cta { max-width: 84px; padding-left: 10px; padding-right: 10px; }
}
