/* =========================================
   SECTION LOCALISATION — FINAL V4 (GRADIENT ORANGE/JAUNE)
   ========================================= */

/* 1. Variables & Base */
.dclik-loc-section {
  --brand-main: #14276D;
  --brand-dark: #0F0122;
  --txt-dark: inherit;
  --radius: 24px;
  --gap: 24px;
  
  padding: clamp(3rem, 5vw, 5rem) 0;
  background: transparent;
  color: var(--txt-dark);
}
.dclik-loc-section * { box-sizing: border-box; }

.dclik-loc-container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(16px, 3vw, 24px); }

/* --- HEADER --- */
.dclik-loc-header { text-align: center; margin-bottom: 3rem; }
.dclik-loc-header h2 { font-size: clamp(1.8rem, 2.5vw, 2.2rem); font-weight: 800; color: var(--brand-main); margin-bottom: 1rem; }
.dclik-loc-intro { max-width: 65ch; margin: 0 auto; opacity: 0.8; }

/* --- CHIPS --- */
.dclik-coverage { margin-bottom: 2rem; text-align: center; }

/* Titre centré */
.dclik-coverage-title { 
  display: flex; justify-content: center; align-items: center; gap: 8px;
  font-weight: 700; margin-bottom: 1rem; 
  text-transform: uppercase; font-size: 0.85rem; letter-spacing: 0.05em;
  color: inherit; opacity: 0.8;
}

.dclik-chips { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }

.dclik-chip {
  display: inline-flex; align-items: center; padding: 8px 16px; border-radius: 50px;
  border: 1px solid rgba(20, 39, 109, 0.2); background: transparent;
  font-size: 0.95rem; font-weight: 600; color: var(--brand-main); transition: all 0.2s ease;
}
.dclik-chip a { text-decoration: none; color: inherit; }
@media (hover: hover) {
  .dclik-chip:hover { background: var(--brand-main); color: #fff; border-color: var(--brand-main); transform: translateY(-2px); }
}

/* --- GRILLE --- */
.dclik-loc-grid { display: grid; gap: var(--gap); grid-template-columns: 1.2fr 1fr; align-items: stretch; }

/* --- MAP --- */
.dclik-map-wrap { 
  border-radius: var(--radius); overflow: hidden; 
  background: #eee; min-height: 400px; 
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.dclik-map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* --- CARTE CONTACT --- */
.dclik-contact-card {
  background-color: var(--brand-main) !important; 
  background: linear-gradient(135deg, var(--brand-main) 0%, var(--brand-dark) 100%) !important;
  color: #ffffff !important; 
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 40px);
  display: flex; flex-direction: column; justify-content: center;
  box-shadow: 0 10px 30px rgba(20, 39, 109, 0.25);
  position: relative; overflow: hidden;
}

.dclik-contact-card h3 { color: #fff !important; margin: 0 0 0.5rem; font-size: 1.8rem; font-weight: 700; }
.dclik-contact-subtitle { color: rgba(255,255,255,0.8) !important; margin: 0 0 2rem; font-size: 1rem; }

/* Items (Bordure fine + Fond transparent) */
.dclik-contact-item { 
  display: flex; gap: 16px; align-items: center; 
  margin-bottom: 1rem; padding: 12px 16px; border-radius: 12px; 
  background-color: transparent !important; 
  border: 1px solid rgba(255, 255, 255, 0.2); 
  transition: background 0.3s ease;
}
.dclik-contact-item:hover { background: rgba(255, 255, 255, 0.1) !important; }

/* ICONES SVG */
.dclik-icon { 
  background: transparent; padding: 0; border-radius: 0;
  min-width: 32px; height: 32px; 
  display: flex; align-items: center; justify-content: center;
}

/* Application du dégradé (défini dans le HTML) sur les icônes */
.dclik-icon svg {
  width: 28px; height: 28px;
  fill: url(#icon-grad); /* Référence l'ID du gradient SVG */
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.dclik-info-text { display: flex; flex-direction: column; align-items: flex-start; text-align: left; }
.dclik-info-label { font-size: 0.7rem; text-transform: uppercase; color: rgba(255,255,255,0.6) !important; letter-spacing: 0.05em; margin-bottom: 2px; }
.dclik-info-value, .dclik-info-value a, .dclik-info-value span { 
  font-size: 1rem; font-weight: 600; color: #ffffff !important; line-height: 1.3; text-decoration: none;
}

/* BOUTON D'APPEL */
.dclik-contact-cta { margin-top: auto; padding-top: 1.5rem; text-align: center; }
.dclik-btn-white {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px; width: 100%;
  padding: 14px 24px;
  background: #fff; color: var(--brand-main);
  border-radius: 50px; font-weight: 800; font-size: 1rem; text-decoration: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.dclik-btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.3); color: var(--brand-main); background: #f0f0f0; }
.dclik-speed-text { margin-top: 12px; font-size: 0.85rem; font-style: italic; color: rgba(255,255,255,0.6) !important; }

@media (max-width: 900px) {
  .dclik-loc-grid { grid-template-columns: 1fr; gap: 20px; }
  .dclik-map-wrap { height: 300px; order: 2; }
  .dclik-contact-card { order: 1; }
}