/* ==========================================================================
   VFM SERVICES - STYLES SPÉCIFIQUES PAGE CONTACT & CARTE
   ========================================================================== */
@import url('css/styles.css');

.contact-hero-header {
  position: relative;
  background: radial-gradient(circle at 50% 20%, rgba(0, 150, 214, 0.28) 0%, transparent 65%),
              linear-gradient(180deg, #07121E 0%, #0B4C8C 100%);
  color: #FFFFFF;
  padding: 9.5rem 1.5rem 4.5rem 1.5rem;
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 150, 214, 0.2);
  box-shadow: 0 10px 35px rgba(7, 18, 30, 0.3);
}

.contact-hero-header::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 350px;
  background: radial-gradient(ellipse at center, rgba(0, 150, 214, 0.35) 0%, transparent 70%);
  pointer-events: none;
}

.map-container {
  width: 100%;
  height: 420px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  margin-top: 3rem;
}

.map-iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Aperçu Visuel Produit dans le Formulaire de Devis */
.devis-product-preview-box {
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.devis-product-preview-box img {
  transition: transform 0.3s ease;
}
.devis-product-preview-box img:hover {
  transform: scale(1.05);
}

