/* ==========================================================================
   WKD SECURITY — STYLESHEET PRINCIPAL
   Entreprise de sécurité privée — République Démocratique du Congo
   Palette : Bleu Marine / Doré / Blanc / Gris Clair
   Polices : Montserrat (titres) / Poppins (texte courant)
   ========================================================================== */

/* --------------------------------------------------------------------
   1. VARIABLES GLOBALES (Design Tokens)
   -------------------------------------------------------------------- */
:root {
  /* Couleurs de marque */
  --wkd-navy: #0B1F3A;
  --wkd-navy-dark: #071527;
  --wkd-navy-soft: #12294d;
  --wkd-gold: #D4AF37;
  --wkd-gold-light: #E9CE7A;
  --wkd-white: #FFFFFF;
  --wkd-grey-light: #F4F6F9;
  --wkd-text-muted: #5C6B7A;
  --wkd-success: #1E7E4F;
  --wkd-danger: #B3261E;

  /* Typographie */
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Poppins', sans-serif;

  /* Ombres & rayons */
  --shadow-soft: 0 10px 30px rgba(11, 31, 58, 0.08);
  --shadow-strong: 0 20px 45px rgba(11, 31, 58, 0.18);
  --radius-md: 10px;
  --radius-lg: 18px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

/* --------------------------------------------------------------------
   2. RESET & BASE
   -------------------------------------------------------------------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--wkd-navy);
  background-color: var(--wkd-white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--wkd-navy);
  letter-spacing: 0.2px;
}

p { color: var(--wkd-text-muted); }

a { text-decoration: none; transition: color var(--transition-fast); }

img { max-width: 100%; display: block; }

::selection { background: var(--wkd-gold); color: var(--wkd-navy); }

/* Focus visible - accessibilité clavier */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--wkd-gold);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* Eyebrow (label au-dessus des titres de section) */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--wkd-gold);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--wkd-gold);
  display: inline-block;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 16px;
}

.section-pad { padding: 100px 0; }
.bg-navy { background-color: var(--wkd-navy) !important; }
.bg-grey { background-color: var(--wkd-grey-light) !important; }

/* --------------------------------------------------------------------
   3. LOADER (Écran de chargement)
   -------------------------------------------------------------------- */
#wkd-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: linear-gradient(135deg, var(--wkd-navy-dark) 0%, var(--wkd-navy) 55%, var(--wkd-navy-soft) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#wkd-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.wkd-loader-shell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  animation: wkd-loader-enter 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.wkd-loader-logo {
  width: min(280px, 70vw);
  max-width: 340px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 44px rgba(0, 0, 0, 0.28));
  animation: wkd-logo-breathe 2.4s ease-in-out infinite;
}
.wkd-loader-indicator {
  position: relative;
  width: 180px;
  height: 5px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
}
.wkd-loader-indicator span {
  display: block;
  width: 38%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--wkd-gold), var(--wkd-gold-light));
  animation: wkd-loader-progress 1.15s ease-in-out infinite;
}
@keyframes wkd-loader-enter {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes wkd-logo-breathe {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 18px 44px rgba(0, 0, 0, 0.28));
  }
  50% {
    transform: scale(1.04);
    filter: drop-shadow(0 24px 56px rgba(212, 175, 55, 0.22));
  }
}
@keyframes wkd-loader-progress {
  0% { transform: translateX(-140%); }
  100% { transform: translateX(240%); }
}

/* --------------------------------------------------------------------
   4. TOPBAR & NAVBAR
   -------------------------------------------------------------------- */
.wkd-topbar {
  background: var(--wkd-navy-dark);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  padding: 8px 0;
}
.wkd-topbar a { color: rgba(255,255,255,0.85); }
.wkd-topbar a:hover { color: var(--wkd-gold); }
.wkd-topbar .divider { opacity: 0.3; margin: 0 10px; }

.navbar.wkd-navbar {
  padding: 18px 0;
  background: var(--wkd-navy);
  transition: all var(--transition-base);
}
.navbar.wkd-navbar.scrolled {
  padding: 10px 0;
  background: rgba(11, 31, 58, 0.97);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(6px);
}
.wkd-navbar .navbar-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--wkd-white);
  display: flex;
  align-items: center;
  gap: 10px;
}
.wkd-navbar .navbar-brand .brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: linear-gradient(145deg, var(--wkd-gold), var(--wkd-gold-light));
  color: var(--wkd-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.wkd-navbar .navbar-brand small {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.62rem;
  letter-spacing: 2px;
  color: var(--wkd-gold);
  text-transform: uppercase;
}
.wkd-navbar .logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.wkd-navbar .logo-img:hover {
  transform: scale(1.05);
}
/* Animations */
@keyframes floating {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-25px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-floating {
  animation: floating 3.5s ease-in-out infinite;
}

/* Utility Classes */
.text-gold { color: var(--wkd-gold); }

/* Hero Section Styles */
.hero-content-wrapper {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-text-section {
  animation: fadeInUp 0.8s ease-out both;
}

.hero-logo-section {
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem) !important;
  line-height: 1.2 !important;
  margin-bottom: 24px !important;
  letter-spacing: -0.5px;
}

.hero-description {
  color: rgba(255,255,255,0.78) !important;
  font-size: 1.1rem !important;
  max-width: 560px !important;
  margin-bottom: 36px !important;
  line-height: 1.8;
}

.logo-hero {
  height: 350px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 50px rgba(212,175,55,0.15));
  transition: filter 0.3s ease;
}

.logo-hero:hover {
  filter: drop-shadow(0 30px 60px rgba(212,175,55,0.25));
}

/* Responsive pour mobile et tablette */
@media (max-width: 991.98px) {
  .hero-logo-section {
    order: 2 !important;
    margin-top: 40px;
  }
  
  .hero-text-section {
    order: 1 !important;
  }
  
  .logo-hero {
    height: 280px;
  }
  
  .wkd-hero h1 {
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .logo-hero {
    height: 220px;
  }
  
  .hero-description {
    font-size: 1rem !important;
  }
  
  .wkd-hero .hero-actions {
    flex-direction: column;
    gap: 12px;
  }
  
  .wkd-hero .hero-actions a {
    width: 100%;
    text-align: center;
  }
}

.wkd-navbar .nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 16px !important;
  position: relative;
}
.wkd-navbar .nav-link.active,
.wkd-navbar .nav-link:hover { color: var(--wkd-gold) !important; }
.wkd-navbar .nav-link.active::after {
  content: "";
  position: absolute;
  left: 16px; right: 16px; bottom: 2px;
  height: 2px;
  background: var(--wkd-gold);
}
.wkd-navbar .navbar-toggler {
  border: none;
  color: var(--wkd-white);
}
.wkd-navbar .navbar-toggler:focus { box-shadow: none; }
.wkd-navbar .navbar-toggler i { font-size: 1.6rem; color: var(--wkd-gold); }

.btn-wkd-quote {
  background: var(--wkd-gold);
  color: var(--wkd-navy) !important;
  font-weight: 600;
  padding: 10px 24px !important;
  border-radius: 6px;
  margin-left: 10px;
  transition: var(--transition-fast);
}
.btn-wkd-quote:hover {
  background: var(--wkd-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(212,175,55,0.35);
}

/* --------------------------------------------------------------------
   5. BOUTONS GÉNÉRIQUES
   -------------------------------------------------------------------- */
.btn-wkd-primary {
  background: var(--wkd-gold);
  color: var(--wkd-navy);
  font-weight: 600;
  padding: 13px 30px;
  border-radius: 6px;
  border: 2px solid var(--wkd-gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
}
.btn-wkd-primary:hover {
  background: transparent;
  color: var(--wkd-white);
  border-color: var(--wkd-white);
  transform: translateY(-2px);
}
.btn-wkd-outline {
  background: transparent;
  color: var(--wkd-white);
  font-weight: 600;
  padding: 13px 30px;
  border-radius: 6px;
  border: 2px solid rgba(255,255,255,0.5);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
}
.btn-wkd-outline:hover {
  border-color: var(--wkd-gold);
  color: var(--wkd-gold);
  transform: translateY(-2px);
}
.btn-wkd-dark {
  background: var(--wkd-navy);
  color: var(--wkd-white);
  font-weight: 600;
  padding: 13px 30px;
  border-radius: 6px;
  border: 2px solid var(--wkd-navy);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
}
.btn-wkd-dark:hover {
  background: var(--wkd-gold);
  border-color: var(--wkd-gold);
  color: var(--wkd-navy);
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------
   6. HERO (Page d'accueil)
   -------------------------------------------------------------------- */
.wkd-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: linear-gradient(120deg, var(--wkd-navy-dark) 0%, var(--wkd-navy) 55%, var(--wkd-navy-soft) 100%);
  overflow: hidden;
  padding-top: 90px;
}
.wkd-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(11,31,58,0.72), rgba(11,31,58,0.88)),
    url('../images/hero-agents.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.55;
}
.wkd-hero .hex-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(212,175,55,0.12) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.5;
}
.wkd-hero-content { position: relative; z-index: 2; }
.wkd-hero .badge-clearance {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.4);
  color: var(--wkd-gold-light);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 26px;
}
.wkd-hero h1 {
  color: var(--wkd-white);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}
.wkd-hero h1 span { color: var(--wkd-gold); }
.wkd-hero p.lead {
  color: rgba(255,255,255,0.78);
  font-size: 1.1rem;
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.8;
}
.wkd-hero .hero-actions { 
  display: flex; 
  gap: 16px; 
  flex-wrap: wrap;
  margin-top: 20px;
}

.hero-stats {
  position: relative;
  z-index: 2;
  margin-top: 70px;
  padding-top: 34px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 40px;
}
.hero-stats .stat-item {
  text-align: left;
}
.hero-stats .stat-num {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--wkd-gold);
  display: block;
  margin-bottom: 8px;
}
.hero-stats .stat-label {
  color: rgba(255,255,255,0.65);
  font-size: 0.82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
}

/* Bandeau titre pour pages secondaires (about, services, gallery, contact) */
.wkd-page-header {
  position: relative;
  padding: 190px 0 90px;
  background: linear-gradient(120deg, var(--wkd-navy-dark), var(--wkd-navy));
  overflow: hidden;
}
.wkd-page-header::after {
  content: "";
  position: absolute;
  right: -60px; top: -60px;
  width: 260px; height: 260px;
  border: 40px solid rgba(212,175,55,0.08);
  border-radius: 50%;
}
.wkd-page-header h1 { color: var(--wkd-white); font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
.wkd-page-header .breadcrumb-wkd {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}
.wkd-page-header .breadcrumb-wkd a { color: var(--wkd-gold-light); }
.wkd-page-header .breadcrumb-wkd a:hover { color: var(--wkd-gold); }

/* --------------------------------------------------------------------
   7. CARTES SERVICES
   -------------------------------------------------------------------- */
.service-card {
  background: var(--wkd-white);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  height: 100%;
  border: 1px solid #EAEDF2;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--wkd-gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform var(--transition-base);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}
.service-card:hover::before { transform: scaleY(1); }
.service-card .service-icon {
  width: 66px;
  height: 66px;
  border-radius: 14px;
  background: var(--wkd-grey-light);
  color: var(--wkd-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 24px;
  transition: var(--transition-base);
}
.service-card:hover .service-icon {
  background: var(--wkd-navy);
  color: var(--wkd-gold);
}
.service-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.service-card p { font-size: 0.94rem; margin-bottom: 20px; }
.service-card .service-link {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--wkd-navy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-card .service-link i { transition: transform var(--transition-fast); }
.service-card .service-link:hover { color: var(--wkd-gold); }
.service-card .service-link:hover i { transform: translateX(4px); }

/* --------------------------------------------------------------------
   8. POURQUOI NOUS CHOISIR
   -------------------------------------------------------------------- */
.why-item {
  display: flex;
  gap: 18px;
  padding: 26px 0;
  border-bottom: 1px solid #E7EBF1;
}
.why-item:last-child { border-bottom: none; }
.why-item .why-icon {
  flex: 0 0 52px;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--wkd-navy);
  color: var(--wkd-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.why-item h4 { font-size: 1.05rem; margin-bottom: 6px; }
.why-item p { font-size: 0.92rem; margin-bottom: 0; }

/* --------------------------------------------------------------------
   9. TIMELINE PROCESSUS
   -------------------------------------------------------------------- */
.wkd-timeline {
  position: relative;
  padding-left: 0;
}
.wkd-timeline::before {
  content: "";
  position: absolute;
  left: 34px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: repeating-linear-gradient(to bottom, var(--wkd-gold) 0 8px, transparent 8px 16px);
}
.timeline-step {
  position: relative;
  padding-left: 90px;
  margin-bottom: 46px;
}
.timeline-step:last-child { margin-bottom: 0; }
.timeline-step .step-num {
  position: absolute;
  left: 0; top: 0;
  width: 68px; height: 68px;
  border-radius: 50%;
  background: var(--wkd-navy);
  border: 3px solid var(--wkd-gold);
  color: var(--wkd-gold);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.timeline-step h4 { margin-bottom: 8px; font-size: 1.1rem; }
.timeline-step p { margin-bottom: 0; }

/* --------------------------------------------------------------------
   10. COMPTEURS ANIMÉS
   -------------------------------------------------------------------- */
.counter-block { text-align: center; color: var(--wkd-white); }
.counter-block .counter-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--wkd-gold);
}
.counter-block .counter-label {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------
   11. GALERIE FILTRABLE
   -------------------------------------------------------------------- */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 46px;
}
.gallery-filters .filter-btn {
  padding: 9px 22px;
  border-radius: 30px;
  border: 1px solid #DEE3EA;
  background: var(--wkd-white);
  color: var(--wkd-navy);
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition-fast);
}
.gallery-filters .filter-btn:hover { border-color: var(--wkd-gold); color: var(--wkd-gold-light) ; }
.gallery-filters .filter-btn.active {
  background: var(--wkd-navy);
  border-color: var(--wkd-navy);
  color: var(--wkd-gold);
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}
.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11,31,58,0.88), transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition-fast);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: var(--wkd-white);
  font-weight: 600;
  font-size: 0.95rem;
}
.gallery-overlay small {
  display: block;
  color: var(--wkd-gold-light);
  font-size: 0.72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.gallery-item.hidden-item { display: none; }

/* --------------------------------------------------------------------
   12. TÉMOIGNAGES (Carousel)
   -------------------------------------------------------------------- */
.testimonial-card {
  background: var(--wkd-white);
  border-radius: var(--radius-lg);
  padding: 50px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  box-shadow: var(--shadow-soft);
}
.testimonial-card i.quote-icon {
  font-size: 2rem;
  color: var(--wkd-gold);
  margin-bottom: 18px;
}
.testimonial-card p.quote-text {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--wkd-navy);
  margin-bottom: 26px;
}
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 14px; }
.testimonial-author img {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--wkd-gold);
}
.testimonial-author strong { display: block; font-size: 0.95rem; }
.testimonial-author span { font-size: 0.8rem; color: var(--wkd-text-muted); }

#wkdTestimonials .carousel-indicators [data-bs-target] {
  background-color: var(--wkd-gold);
  width: 9px; height: 9px;
  border-radius: 50%;
}
#wkdTestimonials .carousel-control-prev-icon,
#wkdTestimonials .carousel-control-next-icon { filter: invert(0.2); }

/* --------------------------------------------------------------------
   13. FAQ (Accordion)
   -------------------------------------------------------------------- */
.wkd-accordion .accordion-item {
  border: none;
  border-bottom: 1px solid #E7EBF1;
  background: transparent;
}
.wkd-accordion .accordion-button {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--wkd-navy);
  background: transparent;
  padding: 22px 5px;
  box-shadow: none !important;
}
.wkd-accordion .accordion-button:not(.collapsed) { color: var(--wkd-gold); }
.wkd-accordion .accordion-button::after { filter: none; }
.wkd-accordion .accordion-body { padding: 0 5px 24px; color: var(--wkd-text-muted); }

/* --------------------------------------------------------------------
   14. FORMULAIRE DE CONTACT
   -------------------------------------------------------------------- */
.wkd-form label { font-weight: 600; font-size: 0.88rem; margin-bottom: 6px; }
.wkd-form .form-control,
.wkd-form .form-select {
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid #DEE3EA;
  font-size: 0.94rem;
}
.wkd-form .form-control:focus,
.wkd-form .form-select:focus {
  border-color: var(--wkd-gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.18);
}
.wkd-form .form-control.is-invalid,
.wkd-form .form-select.is-invalid { border-color: var(--wkd-danger); }
.wkd-form .invalid-feedback { font-size: 0.8rem; }
.wkd-form .form-control.is-valid,
.wkd-form .form-select.is-valid { border-color: var(--wkd-success); }

.contact-info-card {
  background: var(--wkd-navy);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--wkd-white);
  height: 100%;
}
.contact-info-card .info-row {
  display: flex;
  gap: 16px;
  margin-bottom: 26px;
  align-items: flex-start;
}
.contact-info-card .info-icon {
  width: 46px; height: 46px;
  border-radius: 10px;
  background: rgba(212,175,55,0.14);
  color: var(--wkd-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-card h5 { color: var(--wkd-white); font-size: 0.95rem; margin-bottom: 4px; }
.contact-info-card p, .contact-info-card a { color: rgba(255,255,255,0.72); font-size: 0.9rem; margin-bottom: 0; }
.contact-info-card a:hover { color: var(--wkd-gold); }
.contact-info-card .social-row { display: flex; gap: 10px; margin-top: 30px; }
.contact-info-card .social-row a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wkd-white);
}
.contact-info-card .social-row a:hover {
  background: var(--wkd-gold);
  border-color: var(--wkd-gold);
  color: var(--wkd-navy);
}

.wkd-map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  line-height: 0;
}
.wkd-map-wrap iframe { width: 100%; height: 380px; border: 0; }

.alert-wkd-success {
  border-radius: 10px;
  border: 1px solid rgba(30,126,79,0.25);
  background: rgba(30,126,79,0.08);
  color: var(--wkd-success);
  padding: 16px 20px;
  font-size: 0.92rem;
  display: none;
}
.alert-wkd-success.show-alert { display: flex; align-items: center; gap: 10px; }

/* --------------------------------------------------------------------
   15. CTA BANDE
   -------------------------------------------------------------------- */
.cta-band {
  background: linear-gradient(120deg, var(--wkd-navy-dark), var(--wkd-navy));
  border-radius: var(--radius-lg);
  padding: 60px;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: "";
  position: absolute;
  right: -40px; bottom: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  border: 30px solid rgba(212,175,55,0.1);
}
.cta-band h2 { color: var(--wkd-white); margin-bottom: 10px; }
.cta-band p { color: rgba(255,255,255,0.7); margin-bottom: 0; }

/* --------------------------------------------------------------------
   16. À PROPOS — VALEURS / MISSION
   -------------------------------------------------------------------- */
.value-chip {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--wkd-white);
  border: 1px solid #EAEDF2;
  border-radius: 12px;
  padding: 18px 20px;
  height: 100%;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-base);
}
.value-chip:hover { transform: translateY(-4px); box-shadow: var(--shadow-strong); }
.value-chip i { color: var(--wkd-gold); font-size: 1.4rem; }
.value-chip span { font-weight: 600; font-size: 0.95rem; }

.mission-card {
  background: var(--wkd-navy);
  color: var(--wkd-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  height: 100%;
  position: relative;
}
.mission-card i { color: var(--wkd-gold); font-size: 2rem; margin-bottom: 18px; }
.mission-card h3 { color: var(--wkd-white); font-size: 1.3rem; }
.mission-card p { color: rgba(255,255,255,0.72); margin-bottom: 0; }

/* --------------------------------------------------------------------
   17. FOOTER
   -------------------------------------------------------------------- */
.wkd-footer {
  background: var(--wkd-navy-dark);
  color: rgba(255,255,255,0.65);
  padding-top: 80px;
}
.wkd-footer h5 {
  color: var(--wkd-white);
  font-size: 1rem;
  margin-bottom: 22px;
  letter-spacing: 0.5px;
}
.wkd-footer .footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.wkd-footer p { color: rgba(255,255,255,0.55); font-size: 0.92rem; }
.wkd-footer ul { list-style: none; padding: 0; margin: 0; }
.wkd-footer ul li { margin-bottom: 12px; }
.wkd-footer ul li a { color: rgba(255,255,255,0.6); font-size: 0.92rem; }
.wkd-footer ul li a:hover { color: var(--wkd-gold); }
.footer-social { display: flex; gap: 10px; margin-top: 8px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--wkd-white);
}
.footer-social a:hover { background: var(--wkd-gold); border-color: var(--wkd-gold); color: var(--wkd-navy); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 50px;
  padding: 24px 0;
  font-size: 0.85rem;
}
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: var(--wkd-gold); }

/* --------------------------------------------------------------------
   18. BOUTONS FLOTTANTS (WhatsApp / Retour haut)
   -------------------------------------------------------------------- */
.wkd-float-btns {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}
.wkd-whatsapp-btn {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: var(--wkd-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 10px 25px rgba(37,211,102,0.4);
  transition: var(--transition-fast);
  animation: wkd-pulse 2.4s infinite;
}
.wkd-whatsapp-btn:hover { transform: scale(1.08); color: var(--wkd-white); }
@keyframes wkd-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.wkd-back-top {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--wkd-navy);
  color: var(--wkd-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  border: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-fast);
}
.wkd-back-top.show-btn { opacity: 1; visibility: visible; transform: translateY(0); }
.wkd-back-top:hover { background: var(--wkd-gold); color: var(--wkd-navy); }

/* --------------------------------------------------------------------
   19. ANIMATIONS AU SCROLL (Reveal)
   -------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
