/* Carte d’infos */
/*couleur et style de la carte avec infos entreprise*/
:root {
  --ink: #00314c;
  --muted: #6b7280;
  --brand: #4a8dcb;
  --accent: #ff7427;
  --sheet: #ffffff;
  --stroke: #e6e9f2;
}

/*=====page contact=====*/

/* Carte contact : plus compacte et plus premium */
.contact-card{
  position: relative;
  width: min(980px, calc(100% - 2rem));
  padding: clamp(20px, 2.4vw, 34px);
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(14,23,38,.08);
  margin: 32px auto 36px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  transform: none; /* IMPORTANT */
}

/* Barre orange à gauche : plus fine */
.contact-card::after{
  content:"";
  position:absolute;
  left:0; top:0; bottom:0;
  width: 12px;
  background: #06578b;
  border-radius: 20px 0 0 20px;
}

/* Titre : moins massif */
.contact-card h1,
.contact-card h2{
  margin: 0 0 0.35rem;
  text-align: center;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #0e1726;
  font-weight: 900;
}

/* Intro : plus lisible et moins haute */
.contact-hero p,
.intro-contact{
  margin: 0 auto 1.25rem;
  max-width: 65ch;
  text-align: center;
  font-size: 1.02rem;
  line-height: 1.6;
  color: rgba(14,23,38,.75);
}

/* Liste : spacing plus court */
.contact-list{
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-list li{
  display: grid;
  grid-template-columns: 52px 1fr; /* icône + texte */
  align-items: center;
  gap: 0.9rem;
  padding: 0.85rem 0;
  border-top: 1px solid rgba(14,23,38,.06);
}
.contact-list li:first-child{ border-top: 0; }

/* Pastille icône : plus petite */
.contact-list svg{
  width: 1px;
  height: 1px;
  padding: 8px;
  border-radius: 50%;
  background: #06578b;
  margin-left: 10px;
}

/* Textes : vraie hiérarchie */
.contact-list .label{
  font-size: 1.15rem;
  font-weight: 800;
  color: #0e1726;
  margin: 0 0 0.2rem;
  line-height: 1.2;
}

.contact-list .subtext{
  font-size: 1rem;
  color: rgba(14,23,38,.75);
  font-weight: 500;
  line-height: 1.5;
}

/* Liens : discrets */
.contact-list a{
  color: inherit;
  text-decoration: none;
  font-weight: 700;
}
.contact-list a:hover{
  text-decoration: underline;
  text-underline-offset: 3px;
}



/* ===== Google Maps section ===== */

.map-section{
  padding: 32px 0 56px;
  background: transparent;
}

.map-embed{
  position: relative;
  width: min(1100px, calc(100% - 2rem));
  height: clamp(300px, 45vh, 520px);
  margin: 0 auto;               /* CENTRAGE */
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 14px 40px rgba(0,0,0,.10);
}

.map-embed::before{
  content:"";
  position:absolute;
  left:0; top:0; bottom:0;
  width: 10px;
  background: #f15826;      
  border-radius: 20px 0 0 20px;
  z-index: 1;
}


/* iframe suit le conteneur */
.map-embed iframe{
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.map-itineraire{
  width: min(1100px, calc(100% - 2rem));
  margin: 1rem auto 0;
  text-align: center;
}

.map-itineraire a{
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  background: rgba(255, 116, 39, 0.12);
  color: #0e1726;
  font-weight: 800;
  font-size: 20px;
  text-decoration: none;
  transition: background .15s ease, transform .15s ease;
}


.map-itineraire a:hover{
  background: rgba(255, 116, 39, 0.2);
  transform: translateY(-1px);
}


.map-card{
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
  border-radius: 20px;
  border: 1px solid rgba(14,23,38,.08);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 14px 40px rgba(0,0,0,0.10);
  overflow: hidden;
}

.contact-card,
.map-embed{
  width: min(1100px, calc(100% - 2rem));
}

/* En-tête */
.map-head{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding: 18px 18px 14px;
}

.map-head h2{
  margin: 0 0 6px;
  font-size: 1.35rem;
  color: #0e1726;
  letter-spacing: -0.01em;
}

.map-note{
  margin: 0;
  color: rgba(14,23,38,.72);
  font-size: 1rem;
}

/* Boutons */
.map-actions{
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.btn-map{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.95rem;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}

.btn-primary{
  background: #ff7427;
  color: #fff;
  box-shadow: 0 10px 22px rgba(255,116,39,.25);
}
.btn-primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(255,116,39,.30);
}

.btn-ghost{
  background: rgba(14,23,38,.06);
  color: #0e1726;
}
.btn-ghost:hover{
  transform: translateY(-1px);
  background: rgba(14,23,38,.08);
}

/* Iframe */
.map-embed{
  height: clamp(320px, 50vh, 560px);
  background: #fff;
}

.map-embed iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}



/* ========================= */
/*   CONTACT - MAP - VERSION TEL   */
/* ========================= */
@media (max-width: 480px) {

  /* Icônes/pastilles : fini les gros ronds */
  .contact-list svg {
    width: 20px;
    height: 20px;
    padding: 0;
    border-radius: 0;
    background: none;
  }

  /* Grille plus fine */
  .contact-list li{
    grid-template-columns: 24px 1fr;
    gap: 0.75rem;
    padding: 0.9rem 0;
  }

  /* Typo plus lisible */
  .contact-list .label{
    font-size: 1.05rem;
    margin: 0 0 0.2rem;
  }

  .contact-list .subtext{
    font-size: 0.98rem;
    line-height: 1.45;
  }

  .contact-list svg{
  width: 1px;
  height: 1px;
  padding: 8px;
  border-radius: 50%;
  background: #06578b;
  margin-left: 10px;
}
  
}






