/* ============================================================
   VISIONARY ELITE MARRAKECH — a-propos.css
   ============================================================ */

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

/* ── PULL QUOTE ───────────────────────────────────────────── */
.pull-quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  color: #B8860B;
  line-height: 1.5;
  text-align: center;
  border-top: 2px solid rgba(212,160,23,0.35);
  border-bottom: 2px solid rgba(212,160,23,0.35);
  padding: 2rem 0;
  margin: 2.5rem 0;
}

/* ── SECTION VALEURS ─────────────────────────────────────── */
.valeurs-section {
  background: #050D1F;
}
.valeurs-glow {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(212,160,23,0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 50%, rgba(0,180,216,0.06) 0%, transparent 55%);
}
.valeurs-border-top {
  background: linear-gradient(90deg, transparent, rgba(212,160,23,0.4), transparent);
}
.valeurs-border-bottom {
  background: linear-gradient(90deg, transparent, rgba(212,160,23,0.2), transparent);
}
.badge-dark-gold {
  background: rgba(212,160,23,0.12);
  border-color: rgba(212,160,23,0.35);
  color: #D4A017;
}
.val-icon-gold {
  background: rgba(212,160,23,0.14);
  border: 1px solid rgba(212,160,23,0.30);
}
.val-icon-cyan {
  background: rgba(0,180,216,0.14);
  border: 1px solid rgba(0,180,216,0.30);
}
.title-divider-flush {
  margin-top: 0;
}

/* ── VALUES CARDS (nouveau design dark) ───────────────────── */
.val-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.val-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 64px rgba(212,160,23,0.22);
  border-color: rgba(212,160,23,0.55) !important;
}
.val-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #D4A017, transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.val-card:hover::after {
  opacity: 1;
}
.val-num {
  position: absolute;
  top: -0.8rem;
  right: 0.8rem;
  font-family: 'Bebas Neue', 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 7rem;
  color: rgba(212,160,23,0.07);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  letter-spacing: -0.02em;
}
.val-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 1.5rem;
  transition: transform 0.4s ease;
}
.val-card:hover .val-icon {
  transform: scale(1.12);
}

/* ── METHOD LIST ──────────────────────────────────────────── */
.method-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(212,160,23,0.15);
}
.method-item:last-child {
  border-bottom: none;
}
.method-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: #D4A017;
  line-height: 1;
  min-width: 2.5rem;
}

/* ── CITY CARDS ───────────────────────────────────────────── */
.city-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 3px;
}
.city-dot.primary { background: #EF4444; box-shadow: 0 0 8px rgba(239,68,68,0.5); }
.city-dot.secondary { background: #EAB308; box-shadow: 0 0 6px rgba(234,179,8,0.4); }
.city-dot.national { background: #22C55E; box-shadow: 0 0 6px rgba(34,197,94,0.4); }

/* ── SOCIAL CARDS ─────────────────────────────────────────── */
.social-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.social-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(212,160,23,0.20);
}
