/* CONTACT PANEL */
.contact-widget {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 70px;
  height: auto;
  z-index: 100001;
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.contact-widget:hover {
  transform: scale(1.08);
}

/* État actif : rotation pour simuler une croix */


.contact-widget.active {
  width: 40px;   /* taille réelle de la croix */
  height: 40px;
  content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 24 24" stroke="%230f172a" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"><line x1="18" y1="6" x2="6" y2="18"/><line x1="6" y1="6" x2="18" y2="18"/></svg>');
  transform: scale(1.08);
}



/* CONTACT PANEL — VERSION PREMIUM */
.contact-panel {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 420px; /* panneau latéral sur desktop */
  background: #ffffff;
  color: #1f2933;
  z-index: 10000;
  display: none;
  flex-direction: column;
  padding: 30px;
  box-shadow: -4px 0 25px rgba(0,0,0,0.15);
  overflow-y: auto;
}



/* MOBILE : plein écran */
@media (max-width: 900px) {
  .contact-panel {
    width: 100%;
    box-shadow: none;
  }
}

.contact-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-title {
  font-size: 1.6rem;
  font-weight: 700;
}

.close-contact {
  font-size: 2rem;
  cursor: pointer;
}

.contact-intro {
  margin-top: 20px;
  font-size: 1rem;
  color: #444;
  line-height: 1.5;
}

/* CARTES PREMIUM DIFFÉRENCIÉES */
.contact-cards {
  margin-top: 35px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.premium-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 5px;
  border-radius: 16px;
  text-decoration: none;
  color: #1f2933;
  background: #f9fafb;
  border: 2px solid transparent;
  transition: 0.25s ease;
}

/* Carte 1 : Appel */
.premium-card.call {
  border-color: #2563eb;
  background: #eff6ff;
}

/* Carte 2 : WhatsApp */
.premium-card.whatsapp {
  border-color: #25D366;
  background: #e8fff1;
}

/* Carte 3 : Email */
.premium-card.email {
  border-color: #f59e0b;
  background: #fff7e6;
}

.premium-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.premium-card .icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.premium-card .text h4 {
  margin: 0;
  font-size: 1.0rem;
  font-weight: 600;
}

.premium-card .text p {
  margin: 0;
  font-size: 0.85rem;
  opacity: 0.8;
}

