/* Styles d'animation pour les éléments qui apparaissent au défilement */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Styles pour les éléments de la carte professionnelle */
.card-style {
  background: linear-gradient(135deg, var(--accent-teal), var(--primary-blue), var(--secondary-blue));
  color: var(--light-text);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
}

.card-style::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 100px solid transparent;
  border-right: 100px solid transparent;
  border-top: 150px solid var(--light-cream);
  z-index: 0;
}

.card-content {
  position: relative;
  z-index: 1;
}

.card-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.card-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.card-name {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.card-phone {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.card-address {
  font-size: 1rem;
}

/* Styles pour la poche avec logo */
.pocket {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  width: 120px;
  height: 140px;
  background-color: var(--pocket-blue);
  border-radius: 10px;
  border: 2px dashed rgba(255,255,255,0.3);
  display: flex;
  justify-content: center;
  align-items: center;
}

.pocket img {
  width: 80%;
  height: auto;
}

/* Styles pour les boutons d'appel à l'action */
.cta-button {
  display: inline-block;
  background-color: var(--accent-teal);
  color: var(--light-text);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: var(--secondary-blue);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Styles pour les icônes de soins */
.care-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(30, 136, 199, 0.1);
  border-radius: 50%;
  color: var(--primary-blue);
  font-size: 2.5rem;
  transition: all 0.3s ease;
}

.service-card:hover .care-icon {
  background-color: var(--primary-blue);
  color: var(--light-text);
  transform: scale(1.1);
}

/* Styles pour la zone de couverture */
.coverage-area {
  background-color: var(--white);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.coverage-title {
  color: var(--secondary-blue);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.coverage-map {
  border-radius: 10px;
  overflow: hidden;
  height: 300px;
  margin-bottom: 1.5rem;
}

.coverage-list {
  columns: 2;
  column-gap: 2rem;
  list-style-position: inside;
}

.coverage-list li {
  margin-bottom: 0.5rem;
  break-inside: avoid;
}

/* Styles pour les témoignages */
.testimonial {
  background-color: var(--white);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  position: relative;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 5rem;
  color: rgba(30, 136, 199, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-content {
  position: relative;
  z-index: 1;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-name {
  font-weight: 600;
  color: var(--secondary-blue);
}

/* Styles pour les informations de contact */
.contact-card {
  display: flex;
  align-items: center;
  background-color: var(--white);
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.contact-card-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(30, 136, 199, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1.5rem;
  color: var(--primary-blue);
  font-size: 1.5rem;
}

.contact-card-content h4 {
  color: var(--secondary-blue);
  margin-bottom: 0.5rem;
}

/* Styles pour les réseaux sociaux */
.social-bar {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
}

.social-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--light-text);
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: var(--secondary-blue);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
