/* Styles spécifiques pour la page de contact */
.hero--contact {
  position: relative;
  background-color: #0a0a0a;
  padding: 120px 0 160px;
  overflow: hidden;
  text-align: center;
}

.hero--contact .container {
  position: relative;
  z-index: 2;
}

.hero--contact .hero-title {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.hero--contact .hero-subtitle {
  font-size: 18px;
  color: #d1d5db;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.hero--contact .hero-svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 1;
}

/* Styles pour les icônes SVG dans les cartes de contact */
.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.contact-icon .icon {
  width: 24px;
  height: 24px;
  color: #4ecdc4;
}

/* Style pour le bouton de révélation du numéro */
.btn-reveal {
  background: none;
  border: none;
  color: #4ecdc4;
  cursor: pointer;
  font-size: 15px;
  padding: 0;
  text-decoration: underline;
}

.btn-reveal:hover {
  color: #ff6b6b;
}

/* Ajustements responsifs */
@media (max-width: 768px) {
  .hero--contact {
    padding: 80px 0 120px;
  }
  
  .hero--contact .hero-title {
    font-size: 36px;
  }
  
  .hero--contact .hero-subtitle {
    font-size: 16px;
  }
}