/* =============================================
   3DVue_Contact — WPCode CSS
   Page /contact/
   ============================================= */

/* ── HERO ── */
.dv-contact-hero {
  background: var(--dv-violet-bg);
  padding: var(--dv-section-py) var(--dv-section-px);
  position: relative;
  overflow: hidden;
}

.dv-contact-hero__glow {
  position: absolute;
  top: -80px; right: -80px;
  width: 600px; height: 500px;
  background: radial-gradient(ellipse at center, rgba(124,58,237,0.2) 0%, transparent 65%);
  pointer-events: none;
}

.dv-contact-hero__inner {
  max-width: var(--dv-max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
  position: relative;
  z-index: 1;
}

/* Ligne du haut : titre à gauche, infos à droite */
.dv-contact-hero__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 48px 0 0;
}

.dv-contact-hero__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dv-contact-hero__h1 {
  font-size: clamp(40px, 5vw, 62px);
  font-weight: 800;
  letter-spacing: -2.5px;
  line-height: 1.05;
  color: white !important;
  margin-bottom: 20px;
}

.dv-contact-hero__h1 em {
  font-style: normal;
  color: var(--dv-violet-light) !important;
}

.dv-contact-hero__lead {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,0.5) !important;
  max-width: 440px;
  margin-bottom: 0;
}

/* Infos rapides */
.dv-contact-hero__infos {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dv-contact-hero__info {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.55) !important;
}

.dv-contact-hero__info-icon {
  width: 36px; height: 36px; min-width: 36px;
  background: rgba(196,181,253,0.1);
  border: 1px solid rgba(196,181,253,0.15);
  border-radius: var(--dv-radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--dv-violet-light);
  font-size: 14px;
}

.dv-contact-hero__info a {
  color: rgba(255,255,255,0.55) !important;
  text-decoration: none;
  transition: color 0.2s;
}

.dv-contact-hero__info a:hover {
  color: var(--dv-violet-light) !important;
}

/* Formulaire pleine largeur en dessous */
.dv-contact-hero__right {
  padding: 0 0 48px;
}

.dv-contact-hero__form-wrap {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--dv-radius-xl);
  padding: 40px 36px;
  width: 100%;
}

.dv-contact-hero__form-title {
  font-size: 20px;
  font-weight: 800;
  color: white !important;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}

.dv-contact-hero__form-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.35) !important;
  margin-bottom: 24px;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .dv-contact-hero { padding: 64px 24px; }
  .dv-contact-hero__top { grid-template-columns: 1fr; gap: 40px; padding-top: 32px; }
}
@media (max-width: 640px) {
  .dv-contact-hero { padding: 48px 16px; }
}
@media (max-width: 640px) {
  .dv-contact-hero { padding: 48px 16px; }
  .dv-contact-hero__form-wrap { padding: 24px 20px; }
}


/* ── SECTION ÉQUIPE ── */
.dv-contact-team {
  background: var(--dv-bg-soft);
  padding: 80px var(--dv-section-px);
  border-top: 1px solid var(--dv-border);
}

.dv-contact-team__inner {
  max-width: var(--dv-max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.dv-contact-team__header { text-align: center; }

.dv-contact-team__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.dv-contact-team__card {
  background: white;
  border: 1px solid var(--dv-border);
  border-radius: var(--dv-radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  transition: transform var(--dv-duration) var(--dv-ease),
              box-shadow var(--dv-duration) var(--dv-ease),
              border-color var(--dv-duration);
}

.dv-contact-team__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--dv-shadow-md);
  border-color: rgba(124,58,237,0.2);
}

.dv-contact-team__card-img {
  width: 140px; min-width: 140px;
  height: 160px;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-right: 1px solid var(--dv-border);
}

.dv-contact-team__card-body {
  padding: 24px;
  flex: 1;
}

.dv-contact-team__card-role {
  font-size: 11px;
  font-weight: 700;
  color: var(--dv-violet);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.dv-contact-team__card-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--dv-black);
  letter-spacing: -0.3px;
  margin-bottom: 10px;
}

.dv-contact-team__card-desc {
  font-size: 13px;
  color: var(--dv-grey);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .dv-contact-team { padding: 64px 24px; }
  .dv-contact-team__grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .dv-contact-team { padding: 48px 16px; }
  .dv-contact-team__card { flex-direction: column; }
  .dv-contact-team__card-img { width: 100%; min-width: unset; height: 200px; border-right: none; border-bottom: 1px solid var(--dv-border); }
}


/* ── SECTION LOCALISATION ── */
.dv-contact-location {
  background: white;
  padding: 80px var(--dv-section-px);
  border-top: 1px solid var(--dv-border);
}

.dv-contact-location__inner {
  max-width: var(--dv-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.dv-contact-location__map {
  border-radius: var(--dv-radius-xl);
  overflow: hidden !important;
  border: 1px solid var(--dv-border);
  height: 360px;
}

.dv-contact-location__map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

.dv-contact-location__details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.dv-contact-location__detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.dv-contact-location__detail-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: #EDE9FE;
  border-radius: var(--dv-radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--dv-violet);
  font-size: 18px;
}

.dv-contact-location__detail-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--dv-grey-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.dv-contact-location__detail-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--dv-black);
  line-height: 1.5;
}

.dv-contact-location__detail-value a {
  color: var(--dv-violet);
  text-decoration: none;
}

.dv-contact-location__detail-value a:hover {
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .dv-contact-location { padding: 64px 24px; }
  .dv-contact-location__inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 640px) {
  .dv-contact-location { padding: 48px 16px; }
  .dv-contact-location__map { height: 260px; }
}