/* ============================================================
   SERVICES PAGE — services.css (Mocha Edition)
   ============================================================ */

/* ── SERVICE SECTIONS ── */
.svc-section {
  padding: 8rem 0;
  background: var(--cream);
}

.svc-section.svc-alt {
  background: var(--cream-alt);
}

.svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.svc-grid-rev { direction: ltr; }
.svc-grid-rev .svc-text,
.svc-grid-rev .svc-visual { direction: rtl; }

/* ── SERVICE VISUAL ── */
.svc-visual { position: relative; }

.svc-img-wrap {
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(30,22,10,0.14),
    0 0 0 2px rgba(215,137,81,0.14),
    0 0 0 10px rgba(215,137,81,0.04);
}

.svc-img-wrap img {
  width: 100%; height: 480px;
  object-fit: cover; display: block;
  transition: transform 0.6s ease;
}

.svc-img-wrap img.crystal-zoom {
  transform: scale(1.15);
  object-position: center 35%;
}
.svc-img-wrap:hover img.crystal-zoom { transform: scale(1.19); }
.svc-img-wrap:hover img:not(.crystal-zoom) { transform: scale(1.04); }

/* Duo images (essences) */
.svc-img-duo { position: relative; height: 480px; overflow: visible; }
.svc-img-duo .duo-main {
  width: 85%; height: 420px;
  object-fit: cover; border-radius: 24px;
  position: absolute; top: 0; right: 0;
}
.svc-img-duo .duo-sub {
  width: 55%; height: 200px;
  object-fit: cover; border-radius: 16px;
  position: absolute; bottom: 0; left: 0;
  box-shadow: 0 12px 35px rgba(46,26,14,0.2);
  border: 3px solid white;
}

.svc-img-badge {
  position: absolute; bottom: -16px; left: 32px;
  width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: white;
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
  border: 3px solid white; z-index: 2;
}

/* ── SERVICE TEXT ── */
.svc-tag {
  display: inline-block;
  font-family: 'Heebo', sans-serif;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 0.3rem 1rem;
  background: rgba(78,122,89,0.1);
  color: var(--green);
  border-radius: 50px; margin-bottom: 1rem;
}

.svc-title {
  font-family: var(--ff-heading);   /* Frank Ruhl Libre, 36px */
  font-size: clamp(1.8rem, 4vw, var(--fs-heading));
  color: var(--text-dark); line-height: 1.1; margin-bottom: 0.4rem;
}

.svc-sub {
  font-family: var(--ff-body);      /* Segoe UI Semilight, italic */
  font-size: var(--fs-body);
  font-weight: 300;
  font-style: italic;
  color: var(--text-muted); margin-bottom: 1.5rem;
}

.svc-desc {
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  font-weight: 300;
  color: var(--text-mid); line-height: 1.95; margin-bottom: 0.5rem;
}
.svc-desc strong { color: var(--text-dark); font-weight: 600; }

.svc-quote {
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  font-weight: 300;
  font-style: italic;
  color: var(--text-mid); margin: 1.2rem 0 1.5rem;
  border-right: 3px solid var(--btn-green);
  padding-right: 1rem;
}

.svc-details {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem; margin: 1.8rem 0;
}

.svc-detail-col h4 {
  font-family: var(--ff-ui);
  font-size: var(--fs-label);   /* 9px Heebo — small heading */
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-orange);   /* orange #D78951 */
  margin-bottom: 0.8rem;
  display: flex; align-items: center; gap: 0.45rem;
}

.svc-detail-col h4 i { color: var(--btn-green); font-size: 0.85rem; }

.svc-detail-col ul {
  list-style: none;
  display: flex; flex-direction: column; gap: 0.45rem;
}

.svc-detail-col li {
  font-family: var(--ff-body);
  font-size: var(--fs-body);    /* 13.5px Segoe UI */
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.6; padding-right: 1.1rem; position: relative;
}
html.lang-en .svc-detail-col li { padding-right: 0; padding-left: 1.1rem; }

.svc-detail-col li::before {
  content: '✦'; position: absolute; right: 0; top: 0.3rem;
  font-size: 0.45rem; color: var(--btn-green);
}
html.lang-en .svc-detail-col li::before { right: auto; left: 0; }

.svc-meta {
  display: flex; gap: 1.5rem; margin-bottom: 1.8rem; flex-wrap: wrap;
}

.svc-meta span {
  display: flex; align-items: center; gap: 0.45rem;
  font-size: 0.85rem; color: var(--text-muted);
}

.svc-meta span i { color: var(--green); }

/* ── PRODUCTS SECTION ── */
.products-section {
  padding: 7rem 0;
  background: var(--cream);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 0;
  justify-items: center;
}

.product-card {
  position: relative; border-radius: 18px; overflow: hidden;
  aspect-ratio: 3/4; box-shadow: 0 6px 30px rgba(46,26,14,0.15);
  transition: transform 0.35s ease, box-shadow 0.35s ease; cursor: pointer;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 50px rgba(46,26,14,0.22);
}

.product-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover img { transform: scale(1.07); }

.product-label {
  position: absolute; bottom: 0; inset-inline: 0;
  padding: 3rem 1rem 1.2rem;
  background: linear-gradient(to top, rgba(20,10,5,0.92) 0%, rgba(46,26,14,0.7) 60%, transparent 100%);
  text-align: center;
}

.product-label span {
  font-family: var(--ff-ui);
  font-size: var(--fs-small);   /* 10.5px Heebo — small text */
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.05em;
  line-height: 1.4;
  text-shadow: 0 1px 6px rgba(0,0,0,0.8);
  display: block;
}

/* ── FAQ SECTION ── */
.faq-section { padding: 8rem 0; background: var(--cream-alt); }
.faq-wrap { max-width: 800px; }
.faq-header { margin-bottom: 2.5rem; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid rgba(196,160,122,0.4); }

.faq-btn {
  width: 100%; background: none; border: none;
  padding: 1.5rem 0;
  display: flex; justify-content: space-between; align-items: center; gap: 1.5rem;
  font-family: var(--ff-body); font-size: var(--fs-body); font-weight: 700;
  color: var(--text-dark); text-align: right; cursor: pointer; transition: color 0.3s;
}

.faq-btn:hover { color: var(--mocha); }
.faq-btn i { flex-shrink: 0; font-size: 0.8rem; color: var(--green); transition: transform 0.35s ease; }
.faq-btn[aria-expanded="true"] i { transform: rotate(180deg); }
.faq-btn[aria-expanded="true"] { color: var(--mocha); }

.faq-panel { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-panel p { padding-bottom: 1.4rem; font-size: 0.92rem; font-weight: 400; color: var(--text-mid); line-height: 1.9; }

/* ── FINAL CTA ── */
.final-cta-section {
  position: relative; padding: 9rem 0; overflow: hidden; text-align: center;
  border: 3px solid var(--green);
  background: #FBF5EE;
}

.final-cta-bg { position: absolute; inset: 0; z-index: 0; }
.final-cta-bg img { width: 100%; height: 100%; object-fit: cover; object-position: top center; filter: brightness(0.06) saturate(0.2); opacity:0.4; }
.final-cta-overlay { position: absolute; inset: 0; background: rgba(251,245,238,0.93); }
.final-cta-content { position: relative; z-index: 1; }
.final-cta-content .section-title { color: var(--text-dark) !important; }
.final-cta-content p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 2.5rem; }
.final-cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── RESPONSIVE ── */
@media (max-width: 1000px) {
  .svc-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .svc-grid-rev { direction: rtl; }
  .svc-img-wrap img { height: 360px; }
  .svc-img-duo { height: 360px; }
  .svc-img-duo .duo-main { width: 80%; height: 310px; }
  .svc-img-duo .duo-sub  { width: 50%; height: 160px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-img-wrap img { height: 360px; }
  .svc-img-duo { height: 360px; }
  .svc-img-duo .duo-main { width: 80%; height: 310px; }
  .svc-img-duo .duo-sub  { width: 50%; height: 160px; }
}

@media (max-width: 600px) {
  .svc-section { padding: 5rem 0; }
  .svc-details { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .svc-img-wrap img { height: 280px; }
}

/* ── CTA BANNER (shared with index) ── */
.cta-banner { background: var(--cream); padding: 6rem 0; border: none; overflow: visible; position: static; }
.cta-banner::before, .cta-banner::after { display: none; }
.cta-card {
  background: var(--green);
  border-radius: 24px;
  padding: 5rem 4rem;
  text-align: center;
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.cta-card-label {
  display: block;
  font-family: var(--ff-ui);
  font-size: var(--fs-label);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.2rem;
}
.cta-card-title {
  font-family: var(--ff-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.cta-card-sub {
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.78);
  margin-bottom: 0;
  line-height: 1.7;
}
.cta-banner-actions { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; margin-top:2.5rem; }
.btn-white {
  background: #fdfaf4;
  color: var(--green);
  font-weight: 500;
  box-shadow: 0 4px 18px rgba(0,0,0,0.12);
}
.btn-white:hover { background: var(--cream-alt); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.18); }
