/* ═══════════════════════════════════════════════════════
   VILLES.CSS — Styles communs aux pages villes
   Rabat · Marrakech · Agadir
═══════════════════════════════════════════════════════ */

/* ────────────────────────────────────────────────────
   BANNIÈRE INFO DISTANCE
──────────────────────────────────────────────────── */
.ville-info-banner {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: linear-gradient(135deg, #EFF6FF 0%, #FFF5EE 100%);
  border: 1.5px solid rgba(255,106,0,0.25);
  border-left: 4px solid #FF6A00;
  border-radius: 12px;
  padding: 1.1rem 1.25rem;
  margin-bottom: 1.75rem;
}
.ville-info-banner--important {
  background: linear-gradient(135deg, #FFF5EE 0%, #FFFBF5 100%);
  border-color: rgba(255,106,0,0.4);
  border-left-color: #FF6A00;
}
.ville-info-banner__icon {
  color: #FF6A00;
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.ville-info-banner__text {
  font-size: 0.92rem;
  color: #374151;
  line-height: 1.65;
}
.ville-info-banner__text strong {
  display: block;
  color: #102A5C;
  font-weight: 700;
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
}
.ville-info-banner__text em {
  font-style: normal;
  font-weight: 600;
  color: #FF6A00;
}

/* ────────────────────────────────────────────────────
   ÉTAPES "COMMENT ÇA MARCHE" (4 colonnes)
──────────────────────────────────────────────────── */
.ville-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin: 2.5rem 0 2.5rem;
  text-align: left;
}
@media (min-width: 480px) {
  .ville-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 860px) {
  .ville-steps { grid-template-columns: repeat(4, 1fr); }
}

.ville-step {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  padding: 1.5rem 1.25rem;
  position: relative;
}
.ville-step__num {
  position: absolute;
  top: -14px;
  left: 1.25rem;
  width: 28px;
  height: 28px;
  background: #FF6A00;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
}
.ville-step__icon {
  width: 48px;
  height: 48px;
  background: rgba(255,106,0,0.15);
  color: #FF6A00;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin: 0.5rem 0 0.85rem;
}
.ville-step strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.4rem;
}
.ville-step p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
  margin: 0;
}
