

:root {
  --dw-font-display: 'Cormorant Garamond', Georgia, serif;
  --dw-font-body: 'Manrope', 'Segoe UI', sans-serif;
  --dw-font-mono: 'JetBrains Mono', 'Segoe UI Mono', monospace;
  --dw-text-base: 1rem;
  --dw-line-base: 1.65;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
}

body {
  font-family: var(--dw-font-body);
  font-size: var(--dw-text-base);
  line-height: var(--dw-line-base);
  color: #0f172a;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--dw-font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
}

p, li, a, button, input, textarea, select {
  font-family: var(--dw-font-body);
}

/* hero style */
  .hero { background: #0d0d0d; min-height: 520px; display: flex; align-items: center; justify-content: center; overflow: hidden; font-family: var(--dw-font-body); }
  .hero-bg-line { position: absolute; width: 1px; background: rgba(212,175,55,0.08); top: 0; bottom: 0; }
  .badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(212,175,55,0.1); border: 1px solid rgba(212,175,55,0.3); color: #D4AF37; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 14px; border-radius: 50px; margin-bottom: 1.5rem; }
  .badge-dot { width: 6px; height: 6px; border-radius: 50%; background: #D4AF37; animation: pulse 2s infinite; }
  @keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }
  .hero-content { text-align: center; width:50%; position: relative; z-index: 2; }
  .hero-title { font-family: var(--dw-font-display); font-size: clamp(2rem, 4vw, 3.15rem); font-weight: 600; color: #fff; line-height: 1.08; letter-spacing: -0.03em; margin-bottom: 1rem; }
  .hero-title .static { color: #fff; }
  .hero-title .dynamic-wrapper { display: inline-block; overflow: hidden; vertical-align: bottom; height: 1.2em; }
  .dynamic-word { display: block; color: #D4AF37; animation: slideWord 0.5s ease forwards; }
  @keyframes slideWord { from { transform: translateY(100%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
  @keyframes slideWordOut { from { transform: translateY(0); opacity: 1; } to { transform: translateY(-100%); opacity: 0; } }
  .dynamic-word.out { animation: slideWordOut 0.4s ease forwards; }
  .hero-sub { font-size: clamp(1rem, 0.95rem + 0.25vw, 1.12rem); color: rgba(255,255,255,0.72); line-height: 1.75; max-width: 560px; margin: 0 auto 1.5rem; }
  .hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
  .btn-gold { background: #D4AF37; color: #000; padding: 12px 28px; border-radius: 50px; font-size: 15px; font-weight: 700; text-decoration: none; border: none; cursor: pointer; transition: background 0.2s, transform 0.15s; }
  .btn-gold:hover { background: #c9a227; transform: scale(1.03); }
  .btn-outline { background: transparent; color: #fff; padding: 12px 28px; border-radius: 50px; font-size: 15px; font-weight: 600; text-decoration: none; border: 1px solid rgba(255,255,255,0.2); cursor: pointer; transition: border-color 0.2s, color 0.2s, transform 0.15s; }
  .btn-outline:hover { border-color: #D4AF37; color: #D4AF37; transform: scale(1.03); }
  .hero-stats { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,0.07); padding-top: 2rem; }
  .stat { text-align: center; }
  .stat-num { font-family: var(--dw-font-display); font-size: 2rem; font-weight: 600; color: #D4AF37; }
  .stat-label { font-size: 12px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 2px; }
  .domains { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
  .domain-pill { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.68); font-size: 12px; padding: 4px 14px; border-radius: 50px; transition: border-color 0.2s, color 0.2s; cursor: default; }
  .domain-pill:hover { border-color: rgba(212,175,55,0.5); color: #D4AF37; }
  .domain-pill.active { border-color: #D4AF37; color: #D4AF37; background: rgba(212,175,55,0.08); }
  .fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .fade-in.visible { opacity: 1; transform: translateY(0); }

  /* header style */
  #mainNavbar {
  background-color: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1030;
  height: 70px;
}

#mainNavbar .nav-link {
  color: rgba(0,0,0,0.55);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.4rem 0.75rem;
  transition: color 0.2s ease;
}

#mainNavbar .nav-link:hover,
#mainNavbar .nav-link.active {
  color: #000;
}

#mainNavbar .nav-link.active {
  font-weight: 700;
}

/* Bouton Contact en doré pour garder l'identité */
#mainNavbar .btn {
  background-color: #D4AF37;
  color: #000 !important;
  border: none;
  font-weight: 700;
}

#mainNavbar .btn:hover {
  background-color: #c9a227;
}

/* Toggler noir */
.toggler-bar {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #000;
  margin: 5px 0;
  transition: 0.3s;
}

@media (max-width: 991px) {
  #mainNavbar {
    height: auto;
    padding: 0;
    margin: 0;
  }
  #navbarNav {
    padding: 1rem 0 0.5rem;
    border-top: 1px solid rgba(0,0,0,0.08);
    margin-top: 0.75rem;
  }
  #mainNavbar .nav-link {
    padding: 0.6rem 0;
    background-color: #fff }
  #mainNavbar .btn {
    margin-top: 0.5rem;
    width: fit-content;
  }
}
/* about css */


/* GRADIENT TEXT */
.text-gradient {
    background: linear-gradient(90deg,#C9A646,#E5C568);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ICON BOX */
.icon-box {
    width: 70px;
    height: 70px;
    background: rgba(201,166,70,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 30px;
}

/* CARD HOVER */
.value-card {
    transition: all 0.4s ease;
    border-radius: 20px;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* FADE ANIMATION */
.value-card {
    animation: fadeUp 0.8s ease;
}

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

/* footer style */

 .footer-link {
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s ease;
  }
  .footer-link:hover {
    color: #D4AF37 !important;
  }
  .footer-icon {
    color: #D4AF37;
  }
  .footer-social {
    color: rgba(255, 255, 255, 0.45);
    transition: color 0.2s ease;
  }
  .footer-social:hover {
    color: #D4AF37;
  }

  /* services css  */

  /* BACKGROUND PREMIUM */
.services-section {
    background: linear-gradient(135deg, #020617, #f8f9fa, #ffffff, #020617);
    border-radius: 2%;
}

/* TITRE GRADIENT */
.text-gradient {
    background: linear-gradient(90deg, #C9A646, #E5C568);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* DIVIDER */
.divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #C9A646, #E5C568);
    border-radius: 10px;
}

/* CARD *//* IMAGE */
.service-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
}



/* CARD */
.service-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.1);
}

/* ICON */
.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

/* GRADIENTS */
.bg-primary-gradient {
    background: linear-gradient(135deg, #0d6efd, #0dcaf0);
}

.bg-success-gradient {
    background: linear-gradient(135deg, #198754, #20c997);
}

.bg-purple-gradient {
    background: linear-gradient(135deg, #6f42c1, #d63384);
}

/* BUTTON */
.btn-service {
    background: transparent;
    color: #C9A646;
    font-weight: 600;
    border: none;
    padding: 0;
    transition: 0.3s;
}

.btn-service i {
    transition: transform 0.3s;
}

.btn-service:hover {
    color:#fff ;
     background: #0d0d0d;
     padding: 9px;
     border-radius: 50px;
}

.btn-service:hover i {
    transform: translateY(-10px) rotate(90deg);
}

/* LINE */
.card-line {
    height: 4px;
    width: 0;
    transition: 0.5s;
}

.service-card:hover .card-line {
    width: 100%;
}

/* GRADIENTS */
/* .bg-primary-gradient {
    background: linear-gradient(135deg, #0d6efd, #0dcaf0);
}

.bg-success-gradient {
    background: linear-gradient(135deg, #198754, #20c997);
}

.bg-purple-gradient {
    background: linear-gradient(135deg, #6f42c1, #d63384);
} */

/* LINK */
.service-link {
    display: inline-block;
    margin-top: 15px;
    color: #C9A646;
    font-weight: 600;
    text-decoration: none;
}

.service-link:hover {
    color: #b8953d;
}

/* LINE ANIMATION */
.card-line {
    height: 4px;
    width: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 0 0 20px 20px;
    transition: width 0.5s ease;
}

.service-card:hover .card-line {
    width: 100%;
}

/* notre vision css */
/* TITRE */
.vision-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

@media (min-width: 992px) {
    .vision-title {
        font-size: 44px;
    }
}

/* TEXTE */
.vision-text {
    font-size: 16px;
    line-height: 1.6;
    color:#000;
    font-weight: 300;
    max-width: 760px;
}

@media (min-width: 992px) {
    .vision-text {
        font-size: 20px;
    }
}

/* HIGHLIGHT */
.highlight {
    font-style: normal;
    color:#C9A646;
    font-weight: 500;
}

/* ANIMATION SIMPLE (remplace Framer Motion) */
.animate-fade {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards;
}

.animate-fade.delay-1 {
    animation-delay: 0.2s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translatex(0);
    }
}

.icon-box i {
    font-size: 40px;
}

.value-card {
    border-radius: 15px;
    transition: 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
}

/* css mot du directeur */
/* SECTION */
.director-section {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

/* IMAGE */
.director-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: 0.4s;
}

.director-img img:hover {
    transform: scale(1.03);
}

/* TEXTE */
.director-section h2 {
    font-size: 32px;
}

@media (min-width: 992px) {
    .director-section h2 {
        font-size: 40px;
    }
}

/* contact-us */
.contact-hero {
    height: 60vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url('/images/contact.png') center/cover no-repeat;
}

.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    font-size: 24px;
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    z-index: 999;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

  .hero {
    position: relative;
    overflow: hidden;
    isolation: isolate;
  }

  .hero-gradient-orb {
    position: absolute;
    width: 460px;
    height: 460px;
    border-radius: 999px;
    filter: blur(90px);
    opacity: 0.32;
    z-index: -1;
    animation: floatOrb 12s ease-in-out infinite;
    pointer-events: none;
  }

  .orb-a {
    background: #f59e0b;
    top: -140px;
    left: -120px;
  }

  .orb-b {
    background: #0ea5e9;
    bottom: -180px;
    right: -120px;
    animation-delay: -4s;
  }

  .hero-realtime {
    margin-top: 1.5rem;
    display: grid;
    gap: 0.8rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .live-card {
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    padding: 0.8rem 0.9rem;
    background: linear-gradient(130deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(4px);
  }

  .live-top {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    font-size: 0.84rem;
    margin-bottom: 0.45rem;
  }

  .live-top strong {
    color: #f59e0b;
    font-weight: 700;
  }

  .progress-track {
    width: 100%;
    height: 7px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    overflow: hidden;
  }

  .progress-fill {
    width: var(--fill);
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #f59e0b, #facc15);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1.1s ease;
  }

  .live-card.is-visible .progress-fill {
    transform: scaleX(1);
  }

  .dynamic-word.swap {
    animation: wordSwap 0.45s ease;
  }

  [data-reveal] {
    opacity: 1;
    transform: translateY(18px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }

  [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .about-section {
    position: relative;
    overflow: clip;
  }

  .value-card-animated {
    border-radius: 18px;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    background: linear-gradient(145deg, #ffffff, #f6f7fb);
  }

  .value-card-animated:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 30px rgba(2, 6, 23, 0.12) !important;
  }

  .section-services-enhanced {
    background:
      radial-gradient(circle at 90% 15%, rgba(14, 165, 233, 0.09), transparent 38%),
      radial-gradient(circle at 8% 90%, rgba(245, 158, 11, 0.11), transparent 42%);
  }

  .service-card-animated {
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    transform-style: preserve-3d;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    will-change: transform;
  }

  .service-card-animated:hover {
    box-shadow: 0 26px 36px rgba(2, 6, 23, 0.16);
  }

  .service-card-animated .service-img {
    overflow: hidden;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
  }

  .service-card-animated .service-img img {
    transition: transform 0.45s ease;
  }

  .service-card-animated:hover .service-img img {
    transform: scale(1.06);
  }

  .director-section-enhanced {
    background:
      linear-gradient(180deg, rgba(248, 250, 252, 0.9), #ffffff),
      linear-gradient(90deg, rgba(201, 166, 70, 0.08), rgba(14, 165, 233, 0.08));
  }

  .director-img-enhanced {
    position: relative;
  }

  .director-img-enhanced::after {

    position: absolute;
    inset: auto -14px -14px auto;
    width: 120px;
    height: 120px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.34), transparent 70%);
    pointer-events: none;
  }

  .vision-points {
    display: grid;
    gap: 0.7rem;
  }

  .vision-point {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.7rem 0.8rem;
    border-radius: 10px;
    background: rgba(201, 166, 70, 0.08);
    color: #334155;
    font-size: 0.95rem;
  }

  .vision-point i {
    color: #c9a646;
    margin-top: 2px;
  }

  .cta-section-enhanced {
    background:
      linear-gradient(120deg, #0b1220 0%, #111827 45%, #172033 100%);
  }

  .cta-panel {
    position: relative;
    overflow: hidden;
  }

  .cta-panel::before {

    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.08) 50%, transparent 80%);
    transform: translateX(-120%);
    animation: sweep 7s linear infinite;
    pointer-events: none;
  }

  .cta-main-btn {
    transition: transform 0.22s ease, box-shadow 0.22s ease;
  }

  .cta-main-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 20px rgba(255, 255, 255, 0.22);
  }

  @keyframes floatOrb {
    0%,
    100% {
      transform: translate3d(0, 0, 0);
    }
    50% {
      transform: translate3d(0, 24px, 0);
    }
  }

  @keyframes wordSwap {
    0% {
      opacity: 0;
      transform: translateY(10px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes sweep {
    from {
      transform: translateX(-120%);
    }
    to {
      transform: translateX(120%);
    }
  }

  @media (max-width: 900px) {
    .hero-realtime {
      grid-template-columns: 1fr;
    }

    .service-card-animated {
      transform: none !important;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .hero-gradient-orb,
    .dynamic-word.swap,
    .cta-panel::before {
      animation: none;
    }

    .progress-fill,
    [data-reveal] {
      transition: none;
    }

    [data-reveal] {
      opacity: 1;
      transform: none;
    }

    .service-card-animated,
    .value-card-animated,
    .cta-main-btn {
      transition: none;
      transform: none;
    }
  }

/* ====================== CONTACT PAGE ====================== */

/* Hero */
.contact-hero {
    min-height: 70vh;
    background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(13,13,30,0.85) 100%),
                url('/images/bureau.png') center/cover no-repeat;
}

.contact-badge {
    background: rgba(212,175,55,0.12);
    border: 1px solid rgba(212,175,55,0.4);
    color: #D4AF37;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
}

.contact-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #D4AF37;
    display: inline-block;
    animation: pulse 2s infinite;
}

.text-gold { color: #D4AF37; }

/* foooter css */

  .dw-footer {
    position: relative;
    overflow: hidden;
    background:
      radial-gradient(circle at 10% 10%, rgba(245, 158, 11, 0.2), transparent 25%),
      radial-gradient(circle at 90% 20%, rgba(14, 165, 233, 0.2), transparent 28%),
      linear-gradient(180deg, #07111f 0%, #0a1220 48%, #050b16 100%);
    color: #f8fafc;
  }

  .dw-footer__mesh {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent 95%);
    pointer-events: none;
  }

  .dw-footer__container {
    position: relative;
    max-width: 1280px;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .dw-footer__panel {
    position: relative;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    background: linear-gradient(145deg, rgba(8, 15, 28, 0.92), rgba(15, 23, 42, 0.78));
    box-shadow: 0 28px 80px rgba(2, 6, 23, 0.45);
    backdrop-filter: blur(16px);
  }

  .dw-footer__brand-card,
  .dw-footer__column,
  .dw-footer__contact-card {
    height: 100%;
  }



  .dw-footer__logo {
    width: 198px;
    height: auto;
    margin-bottom: 1.2rem;
  }

  .dw-footer__headline {
    max-width: 12ch;
    margin-bottom: 1rem;
    font-size: clamp(2rem, 3.6vw, 3.25rem);
    line-height: 0.96;
    font-weight: 800;
    letter-spacing: -0.05em;
  }

  .dw-footer__description,
  .dw-footer__contact-text {
    margin-bottom: 1.25rem;
    color: rgba(226, 232, 240, 0.74);
    line-height: 1.7;
    font-size: 0.97rem;
  }

  .dw-footer__pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-bottom: 1.6rem;
  }

  .dw-footer__pill {
    padding: 0.45rem 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    color: #e2e8f0;
    font-size: 0.8rem;
  }

  .dw-footer__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
  }

  .dw-footer__primary-btn,
  .dw-footer__ghost-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.82rem 1.2rem;
    border-radius: 999px;
    text-decoration: none;
    transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, color 0.22s ease;
  }

  .dw-footer__primary-btn {
    background: linear-gradient(135deg, #f59e0b, #facc15);
    color: #0f172a;
    font-weight: 700;
  }

  .dw-footer__ghost-btn {
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #f8fafc;
    background: rgba(255, 255, 255, 0.04);
  }

  .dw-footer__primary-btn:hover,
  .dw-footer__ghost-btn:hover {
    transform: translateY(-2px);
  }

  .dw-footer__title {
    margin-bottom: 1.25rem;
    color: #f8fafc;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }

  .dw-footer__link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: rgba(226, 232, 240, 0.78);
    text-decoration: none;
    transition: color 0.22s ease, transform 0.22s ease;
  }

  .dw-footer__link i {
    font-size: 0.95rem;
    opacity: 0.8;
  }

  .dw-footer__link:hover,
  .dw-footer__contact-link:hover,
  .dw-footer__bottom-links a:hover {
    color: #f8fafc;
    transform: translateX(3px);
  }

  .dw-footer__contact-card {
    padding: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    width: 100%;
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  }

  .dw-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
  }

  .dw-footer__contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(245, 158, 11, 0.14);
    color: #fbbf24;
    flex-shrink: 0;
  }

  .dw-footer__contact-link {
    color: rgba(226, 232, 240, 0.84);
    text-decoration: none;
    line-height: 1.5;
    transition: color 0.22s ease, transform 0.22s ease;
  }



  .dw-footer__mini-metrics > div {
    padding: 0.9rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
  }

  .dw-footer__mini-metrics strong {
    display: block;
    margin-bottom: 0.2rem;
    color: #f8fafc;
    font-size: 1rem;
  }

  .dw-footer__mini-metrics span,
  .dw-footer__copyright,
  .dw-footer__bottom-links a {
    color: rgba(226, 232, 240, 0.68);
    font-size: 0.86rem;
  }

  .dw-footer__bottom-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .dw-footer__bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .dw-footer__bottom-links a {
    text-decoration: none;
    transition: color 0.22s ease, transform 0.22s ease;
  }

  @media (max-width: 991px) {
    .dw-footer__panel {
      padding: 1.35rem;
    }

    .dw-footer__headline {
      max-width: none;
    }

    .dw-footer__bottom-bar {
      flex-direction: column;
      align-items: flex-start;
    }
  }

  @media (max-width: 767px) {
    .dw-footer__container {
      padding-top: 1.5rem;
      padding-bottom: 1.5rem;
    }

    .dw-footer__mini-metrics {
      grid-template-columns: 1fr;
    }

    .dw-footer__actions {
      flex-direction: column;
      align-items: stretch;
    }

    .dw-footer__primary-btn,
    .dw-footer__ghost-btn {
      justify-content: center;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .dw-footer__primary-btn,
    .dw-footer__ghost-btn,
    .dw-footer__link,
    .dw-footer__contact-link,
    .dw-footer__bottom-links a {
      transition: none;
    }
  }


/* FAQ */
.contact-faq-item {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.07);
    overflow: hidden;
}

.contact-faq-item .accordion-button {
    background: #fff;
    color: #111;
    box-shadow: none;
}

.contact-faq-item .accordion-button:not(.collapsed) {
    color: #D4AF37;
    background: #fff;
}

.contact-faq-item .accordion-button::after {
    filter: none;
}

/* WhatsApp flottant */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1050;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    padding: 12px 18px 12px 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 600;
    box-shadow: 0 6px 24px rgba(37,211,102,0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(37,211,102,0.5);
    color: #fff;
}

.whatsapp-float-label {
    font-size: 14px;
    letter-spacing: 0.02em;
}

@media (max-width: 575px) {
    .whatsapp-float { padding: 14px; border-radius: 50%; }
    .whatsapp-float-label { display: none; }
}

/* faq css*/
/* À ajouter dans votre CSS */
.faq-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; background: #9ca3af; flex-shrink: 0; }
.faq-dot--immo { background: #1D9E75; }
.faq-dot--tech { background: #378ADD; }
.faq-dot--form { background: #BA7517; }

.faq-badge--immo { background: #E1F5EE; color: #085041; font-weight: 500; }
.faq-badge--tech  { background: #E6F1FB; color: #0C447C; font-weight: 500; }
.faq-badge--form  { background: #FAEEDA; color: #633806; font-weight: 500; }

.faq-filter { border-radius: 20px; border: 1.5px solid #dee2e6; background: transparent; color: #6c757d; }
.faq-filter.active, .faq-filter:hover { border-color: #534AB7; background: #EEEDFE; color: #3C3489; }
.faq-filter--immo.active { border-color: #0F6E56; background: #E1F5EE; color: #085041; }
.faq-filter--tech.active  { border-color: #185FA5; background: #E6F1FB; color: #0C447C; }
.faq-filter--form.active  { border-color: #854F0B; background: #FAEEDA; color: #633806; }
