/* Page de contact */
.contact-page {
  min-height: 100vh;
  background-color: #faf8f5; /* Crème premium au lieu de soft-cream vert */
}

/* Amélioration du hero avec plus d'espace et typographie raffinée */
.contact-hero {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #d4a574 100%);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.contact-title {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.contact-subtitle {
  font-size: 1.2rem;
  opacity: 0.95;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Nouvelle section stats pour montrer les points forts */
.contact-stats {
  background: #faf8f5;
  padding: 60px 0;
  border-top: 1px solid #e8d4cc;
  border-bottom: 1px solid #e8d4cc;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.stat-card {
  text-align: center;
  padding: 30px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(212, 165, 116, 0.15);
  border-top: 3px solid #d4a574;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 36px rgba(212, 165, 116, 0.25);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #d4a574;
  margin-bottom: 10px;
  font-family: "Playfair Display", serif;
}

.stat-label {
  font-size: 1rem;
  color: #a0908a;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.contact-content {
  padding: 80px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2,
.contact-map h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  color: #0f0f0f;
  margin-bottom: 2.5rem;
  position: relative;
  padding-bottom: 15px;
}

/* Ajout d'une ligne doré sous les titres */
.contact-info h2::after,
.contact-map h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #d4a574, #b8956a);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 2.5rem;
  padding: 25px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #d4a574;
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 28px rgba(212, 165, 116, 0.18);
}

.contact-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #d4a574, #b8956a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(212, 165, 116, 0.3);
}

.contact-icon svg {
  width: 28px;
  height: 28px;
  stroke: #ffffff;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-details h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  color: #0f0f0f;
  margin-bottom: 8px;
  font-weight: 600;
}

.contact-details p {
  color: #5a5550;
  line-height: 1.7;
  margin: 0;
}

.contact-details a {
  color: #d4a574;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.contact-details a:hover {
  color: #b8956a;
  border-bottom-color: #b8956a;
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  border: 3px solid #e8d4cc;
  transition: all 0.3s ease;
}

.map-container:hover {
  box-shadow: 0 12px 40px rgba(212, 165, 116, 0.2);
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: none;
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-title {
    font-size: 2.5rem;
    letter-spacing: 0.5px;
  }

  .contact-subtitle {
    font-size: 1.1rem;
  }

  .contact-hero {
    padding: 50px 0;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-content {
    padding: 40px 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-item {
    gap: 15px;
    padding: 20px;
  }

  .contact-icon {
    width: 50px;
    height: 50px;
  }

  .contact-icon svg {
    width: 24px;
    height: 24px;
  }

  .map-container iframe {
    height: 350px;
  }

  .contact-info h2,
  .contact-map h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 480px) {
  .contact-title {
    font-size: 2rem;
  }

  .contact-subtitle {
    font-size: 1rem;
  }

  .contact-hero {
    padding: 40px 0;
  }

  .stat-number {
    font-size: 2rem;
  }

  .contact-item {
    padding: 15px;
    margin-bottom: 1.5rem;
  }

  .map-container iframe {
    height: 300px;
  }

  .stats-grid {
    gap: 15px;
  }

  .contact-stats {
    padding: 40px 0;
  }
}
