/* ===========================================
   SECTION SAVENAY – AGENCE DCLIK
   =========================================== */

/* SECTION */
.dclik-location-section {
  width: 100%;
  padding: 6rem 5%;
}

.dclik-location-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* HEADER */
.dclik-location-header {
  text-align: center;
  margin-bottom: 4rem;
}

.dclik-location-header h2 {
  font-size: 3rem;
  font-weight: 900;
  margin: 0 0 1.5rem;
  color: #0a0a0a;
}

.dclik-location-intro {
  font-size: 1.25rem;
  color: #4b5563;
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

/* ZONE COUVERTURE */
.dclik-coverage-area {
  background: linear-gradient(135deg, rgba(255,173,0,0.08), rgba(225,105,108,0.08));
  border-radius: 24px;
  padding: 2.5rem;
  margin-bottom: 4rem;
  border-left: 4px solid #ffad00;
}

.dclik-coverage-title {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 1.5rem;
}

/* --------- CITIES GRID --------- */
.dclik-cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}

.dclik-city-item {
  background: #ffffff;
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #0a0a0a;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  transition: all 0.3s ease;
  text-align: center;
}

.dclik-city-item:hover {
  transform: translateY(-2px);
  background: rgba(255,173,0,.1);
  box-shadow: 0 4px 12px rgba(255,173,0,.2);
}

/* GRID */
.dclik-location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* MAP */
.dclik-map-container {
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,.12);
}

.dclik-map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* CONTACT CARD */
.dclik-contact-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0,0,0,.08);
  position: relative;
  overflow: hidden;
}

/* Bandeau supérieur */
.dclik-contact-card::before {
  content:'';
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:6px;
  border-top-left-radius:inherit;
  border-top-right-radius:inherit;
  background:linear-gradient(90deg,#ffad00,#e1696c);
}

/* TITRES */
.dclik-contact-title {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: .5rem;
  color:#0a0a0a;
}

.dclik-contact-subtitle {
  color:#6b7280;
  margin:0 0 2rem;
  font-size:1.1rem;
}

/* ITEMS */
.dclik-contact-item {
  background:#f9fafb;
  border-radius:16px;
  padding:1.5rem;
  margin-bottom:1.25rem;
  display:flex;
  gap:1.25rem;
  transition:all .3s ease;
  align-items: flex-start;
}

.dclik-contact-item:hover {
  transform:translateX(5px);
  background:rgba(255,173,0,.1);
}

/* Icones */
.dclik-contact-icon {
  width:48px;
  height:48px;
  border-radius:12px;
  background:linear-gradient(135deg,#ffad00,#e1696c);
  display:flex;
  justify-content:center;
  align-items:center;
  flex-shrink:0;
  box-shadow:0 4px 12px rgba(255, 173, 0, 0.3);
}

.dclik-contact-icon svg {
  width:26px;
  height:26px;
  display:block;
  fill:#ffffff !important;
}

/* LABELS */
.dclik-contact-label {
  font-size:.875rem;
  font-weight:600;
  text-transform:uppercase;
  color:#6b7280;
  margin-bottom:.25rem;
}

/* VALUE */
.dclik-contact-value {
  font-size:1.125rem;
  font-weight:700;
  color:#000;
  line-height:1.35;
}

.dclik-contact-value a {
  color:#000;
  text-decoration:none;
}

.dclik-contact-value a:hover {
  color:#ffad00;
}

/* Empêcher les coupures absurdes desktop */
.dclik-contact-value,
.dclik-contact-value a {
  white-space: nowrap;
}

/* TEXTE RAPIDE */
.dclik-speed-text {
  margin-top:1.5rem;
  font-weight:700;
  color:#000;
  font-size:1.1rem;
}

/* CTA */
.dclik-contact-cta {
  border-top:2px dashed #e5e7eb;
  margin-top:2rem;
  padding-top:2rem;
}

.dclik-cta-button {
  display:block;
  width:100%;
  padding:1.25rem 2rem;
  font-size:1.125rem;
  font-weight:800;
  border-radius:16px;
  background:linear-gradient(135deg,#ffad00,#e1696c);
  color:#fff;
  text-align:center;
  text-decoration:none;
  transition:.3s ease;
}

.dclik-cta-button:hover {
  transform:translateY(-3px);
  box-shadow:0 12px 32px rgba(255,173,0,.4);
}

/* ===========================================
   🔥 VERSION MOBILE – Adaptation complète
   =========================================== */

@media(max-width: 768px){

  /* GRID mobile */
  .dclik-location-grid {
    grid-template-columns: 1fr;
  }

  .dclik-map-container {
    height: 350px;
    order:-1;
  }

  /* Contact card */
  .dclik-contact-card {
    padding: 1.75rem;
  }

  /* Items */
  .dclik-contact-item {
    flex-direction: row;
    align-items: flex-start;
    padding: 1.25rem;
    border-radius: 14px;
  }

  /* Icons */
  .dclik-contact-icon {
    width:40px;
    height:40px;
    border-radius:10px;
  }

  /* Texte valeur */
  .dclik-contact-value,
  .dclik-contact-value a {
    font-size: 1rem;
    white-space: normal;   /* 👉 permet de revenir sur 1 ou 2 lignes max */
    word-break: break-word;
  }

  /* Adresse = plus compacte */
  .dclik-contact-value br {
    display: none;
  }

  /* Email = qu'il ne dépasse jamais */
  .dclik-contact-value a {
    overflow-wrap: anywhere;
  }
}

/* Ultra petit mobile */
@media(max-width: 380px){
  .dclik-contact-card {
    padding: 1.5rem;
  }
}