/* ============================================================
   VISIONARY ELITE MARRAKECH — services.css
   ============================================================ */

.hero-mini-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

/* ── PACK PODIUM MOCKUP ───────────────────────────────────── */
.maps-mockup-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(212,160,23,0.25);
  border-radius: 16px;
  overflow: hidden;
}
.maps-mockup-result {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 0.85rem 1rem;
}
.maps-mockup-result.gold-result {
  background: rgba(212,160,23,0.12);
  border-color: rgba(212,160,23,0.40);
}

/* ── SERVICE CARDS ────────────────────────────────────────── */
.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(212,160,23,0.18);
}
.service-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── PROCESS TIMELINE ─────────────────────────────────────── */
.process-step {
  position: relative;
}
.process-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5rem, 10vw, 8rem);
  color: rgba(212,160,23,0.08);
  line-height: 1;
  position: absolute;
  top: -1rem;
  left: -0.5rem;
  pointer-events: none;
  user-select: none;
}

/* ── FAQ ACCORDION ────────────────────────────────────────── */
.faq-item {
  overflow: hidden;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-answer {
  max-height: 300px;
}
.faq-chevron {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

/* ── SECTOR PILLS ─────────────────────────────────────────── */
.sector-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(212,160,23,0.25);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: #1A2B4A;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  cursor: default;
}
.sector-pill:hover {
  background: rgba(212,160,23,0.12);
  border-color: rgba(212,160,23,0.55);
  transform: translateY(-2px);
}
