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

/* ── LANGUAGE SWITCHER ── */
.lang-switcher {
  display: flex;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.lang-btn {
  padding: 0.35rem 0.55rem;
  background: none; border: none;
  color: rgba(255,255,255,0.38);
  font-family: 'Outfit', sans-serif;
  font-size: 0.68rem; font-weight: 700;
  cursor: pointer; transition: all 0.2s;
  letter-spacing: 0.5px;
}
.lang-btn:hover { color: rgba(255,255,255,0.75); background: rgba(255,255,255,0.05); }
.lang-btn.active {
  background: linear-gradient(135deg, #C9A84C, #F0D080);
  color: #08111D;
}
@media (max-width: 768px) {
  .lang-switcher { border-radius: 6px; }
  .lang-btn { padding: 0.3rem 0.45rem; font-size: 0.65rem; }
}

:root {
  --green: #00c853;
  --green-light: rgba(0, 200, 83, 0.15);
  --green-glow: rgba(0, 200, 83, 0.3);
  --dark: #0f1a0f;
  --text: #111827;
  --text-soft: #6b7280;
  --white: #ffffff;
  --glass: rgba(255,255,255,0.55);
  --glass-border: rgba(255,255,255,0.7);
  --glass-shadow: 0 8px 40px rgba(0,0,0,0.12);
  --font: 'Outfit', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --font-logo: 'Cinzel Decorative', serif;
  --font-accent: 'Calistoga', serif;
  --font-ar: 'Cairo', sans-serif;
  --radius: 20px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: #f0f4f8;
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

body.lang-ar { font-family: var(--font-ar); direction: rtl; }

/* ── GLASS MIXIN ── */
.glass {
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 16px; left: 50%; transform: translateX(-50%);
  z-index: 1000; width: calc(100% - 4rem); max-width: 1200px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.85rem 2rem;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: 100px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  top: 10px;
  padding: 0.65rem 2rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  background: rgba(255,255,255,0.85);
}

.nav-logo {
  display: flex; align-items: center; gap: 0.8rem;
  text-decoration: none; color: var(--text);
  font-family: var(--font-logo);
  font-weight: 700; font-size: 1rem; letter-spacing: 1px;
}

/* ── NAV USER ── */
.nav-user-btn { position:relative; display:flex; align-items:center; gap:0.5rem; cursor:pointer; }
.nav-user-avatar { width:34px; height:34px; border-radius:50%; background:var(--green); color:#000; font-weight:800; font-size:0.9rem; display:flex; align-items:center; justify-content:center; }
.nav-user-name { font-size:0.85rem; font-weight:600; color:var(--text); }
.nav-user-menu { display:none; position:absolute; top:calc(100% + 10px); right:0; background:rgba(255,255,255,0.95); backdrop-filter:blur(16px); border:1px solid rgba(0,0,0,0.08); border-radius:12px; padding:0.5rem; min-width:160px; box-shadow:0 8px 30px rgba(0,0,0,0.1); z-index:200; }
.nav-user-btn:hover .nav-user-menu { display:block; }
.nav-user-menu a { display:block; padding:0.6rem 1rem; font-size:0.85rem; color:var(--text); text-decoration:none; border-radius:8px; cursor:pointer; transition:background 0.15s; }
.nav-user-menu a:hover { background:rgba(0,200,83,0.08); color:var(--green); }
.nav-login-link { padding:0.45rem 1.1rem; background:var(--green); color:#fff !important; border-radius:100px; font-size:0.85rem; font-weight:600; text-decoration:none; transition:all 0.2s; box-shadow:0 2px 10px rgba(0,200,83,0.3); }
.nav-login-link:hover { transform:translateY(-1px); }

.nav-logo-img { width: 40px; height: 40px; object-fit: contain; filter: drop-shadow(0 2px 8px rgba(0,200,83,0.3)); }
.hero-logo-img { width: 160px; height: 160px; object-fit: contain; animation: float 4s ease-in-out infinite; filter: drop-shadow(0 8px 32px rgba(0,200,83,0.4)); }
.footer-logo-img { width: 30px; height: 30px; object-fit: contain; }

.nav-links {
  display: flex; align-items: center; gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-soft); text-decoration: none;
  font-size: 0.9rem; font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active-link { color: var(--green); }

.nav-right { display: flex; align-items: center; gap: 1rem; }

.lang-switcher { display: flex; gap: 0.3rem; }

.lang-btn {
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(0,0,0,0.1);
  color: var(--text-soft);
  padding: 0.3rem 0.7rem; border-radius: 6px;
  cursor: pointer; font-size: 0.8rem; font-family: inherit;
  transition: all 0.2s;
  backdrop-filter: blur(10px);
}
.lang-btn.active, .lang-btn:hover {
  background: var(--green); color: white;
  border-color: var(--green);
  box-shadow: 0 2px 12px var(--green-glow);
}

.nav-mobile-btn {
  display: none; background: none; border: none;
  color: var(--text); font-size: 1.4rem; cursor: pointer;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 6rem 2rem 4rem;
  position: relative; overflow: hidden;
  background-image: url('../assets/images/backgrounds/bg-05.jpg');
  background-size: cover; background-position: center; background-attachment: fixed;
  padding-top: 7rem;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.3);
}

.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 180px;
  background: linear-gradient(to bottom, transparent, #f0f4f8);
  z-index: 2;
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }

.glow-orb {
  position: absolute; border-radius: 50%;
  filter: blur(60px); opacity: 0.25;
}
.glow-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,200,83,0.3), transparent);
  top: -100px; left: 50%; transform: translateX(-50%);
}
.glow-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(0,150,255,0.2), transparent);
  bottom: 100px; right: 10%;
}

.hero-content { position: relative; z-index: 1; }
.hero-logo { margin-bottom: 2rem; }

.section-tag { font-family: var(--font-accent); letter-spacing: 1.5px; }

.hero-badge {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0,200,83,0.3);
  border-radius: 100px;
  font-size: 0.8rem; color: var(--green);
  letter-spacing: 1px; margin-bottom: 1.5rem;
  box-shadow: 0 4px 16px rgba(0,200,83,0.1);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800; line-height: 1.15;
  margin-bottom: 1.2rem; letter-spacing: -1.5px;
  color: var(--text);
}

.text-green { color: var(--green); }

.hero-sub {
  font-size: 1.1rem; color: var(--text-soft);
  margin-bottom: 2.5rem; font-weight: 400;
}

.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.btn-primary {
  padding: 0.9rem 2.2rem;
  background: var(--green); color: white;
  border-radius: 12px; text-decoration: none;
  font-weight: 600; font-size: 0.95rem;
  transition: all 0.25s;
  box-shadow: 0 4px 20px var(--green-glow);
  border: none; cursor: pointer; font-family: inherit;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,200,83,0.4);
}

.btn-ghost {
  padding: 0.9rem 2.2rem;
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.8);
  color: var(--text); border-radius: 12px;
  text-decoration: none; font-weight: 500;
  font-size: 0.95rem; transition: all 0.25s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.btn-ghost:hover { background: white; transform: translateY(-2px); }

.hero-scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 1; }
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, transparent, var(--green));
  margin: 0 auto; animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { opacity:0; transform:scaleY(0); transform-origin:top }
  50% { opacity:1; transform:scaleY(1) }
  100% { opacity:0; transform:scaleY(0); transform-origin:bottom }
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* ── SERVICES ── */
.services-section {
  position: relative;
  background-image: url('../assets/images/backgrounds/bg-05.jpg');
  background-size: cover; background-position: center; background-attachment: fixed;
  padding: 7rem 0;
}

.services-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, #f0f4f8, transparent);
  z-index: 1;
}

.services-section::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, rgba(240,244,248,0.95));
  z-index: 1;
}

.services {
  padding: 0 4rem;
  max-width: 1200px; margin: 0 auto;
  position: relative; z-index: 2;
}

.section-header { text-align: center; margin-bottom: 4rem; }

.section-tag {
  display: inline-block;
  font-size: 0.75rem; color: var(--green);
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 1rem; font-weight: 600;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800; margin-bottom: 1rem;
  letter-spacing: -0.5px; color: var(--text);
}
.section-header p { color: var(--text-soft); }

.services-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem;
}

.service-card {
  position: relative;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-decoration: none; color: var(--text);
  transition: all 0.3s ease;
  display: flex; flex-direction: column; gap: 1rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06), inset 0 1px 0 rgba(255,255,255,0.9);
}

.service-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12), inset 0 1px 0 rgba(255,255,255,0.9);
  border-color: rgba(0,200,83,0.4);
}

.service-card.featured {
  background: rgba(255,255,255,0.8);
  border-color: rgba(0,200,83,0.3);
  box-shadow: 0 8px 40px rgba(0,200,83,0.15), inset 0 1px 0 white;
}

.card-badge {
  position: absolute; top: 1.2rem; right: 1.2rem;
  background: var(--green); color: white;
  padding: 0.2rem 0.8rem; border-radius: 100px;
  font-size: 0.72rem; font-weight: 600;
}

.card-number { font-size: 0.72rem; color: var(--green); font-weight: 600; letter-spacing: 1px; }

.card-icon-wrap {
  color: var(--green);
  width: 52px; height: 52px;
  background: rgba(0,200,83,0.1);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,200,83,0.15);
}

.service-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--text); }
.service-card p { color: var(--text-soft); font-size: 0.9rem; line-height: 1.7; flex: 1; }
.card-arrow { color: var(--green); font-size: 1.1rem; transition: transform 0.2s; font-weight: 600; }
.service-card:hover .card-arrow { transform: translateX(4px); }

/* ── THUMBS DANS CARTE ── */
.card-thumbs {
  display: flex; gap: 0.5rem; margin-top: 0.5rem;
}
.card-thumbs img {
  flex: 1; height: 70px; object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.6);
  transition: transform 0.3s;
}
.service-card:hover .card-thumbs img { transform: scale(1.04); }

/* ── APERÇU EXEMPLES ── */
.preview-examples {
  max-width: 1200px; margin: 3rem auto 0; padding: 0 4rem;
  position: relative; z-index: 2;
}

.preview-label {
  font-size: 0.85rem; color: var(--text-soft);
  font-weight: 500; margin-bottom: 1.2rem;
  letter-spacing: 0.5px;
}

.preview-cards {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.2rem;
}

.preview-card {
  position: relative; border-radius: 20px;
  overflow: hidden; display: block;
  aspect-ratio: 4/5;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  border: 1px solid rgba(255,255,255,0.8);
  transition: all 0.3s ease;
}

.preview-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0,200,83,0.2);
  border-color: rgba(0,200,83,0.4);
}

.preview-card img {
  width: 100%; height: 100%;
  object-fit: cover; transition: transform 0.4s ease;
}

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

.preview-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; padding: 1.2rem;
}

.preview-card:hover .preview-card-overlay { opacity: 1; }

.preview-card-overlay span {
  background: var(--green); color: white;
  padding: 0.4rem 1rem; border-radius: 100px;
  font-size: 0.8rem; font-weight: 600;
}

/* ── WHY US ── */
.why-us {
  padding: 9rem 4rem;
  background-image: url('../assets/images/backgrounds/bg-10.jpg');
  background-size: cover; background-position: center; background-attachment: fixed;
  position: relative;
}
.why-us::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.45);
}
.why-us::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 140px;
  background: linear-gradient(to bottom, transparent, #f0f4f8);
  z-index: 1;
}

.why-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
  position: relative; z-index: 1;
}

.why-text .section-tag { display: block; margin-bottom: 1rem; }
.why-text h2 { font-size: clamp(1.6rem,2.5vw,2.2rem); font-weight: 800; margin-bottom: 1.2rem; line-height: 1.3; }
.why-text p { color: var(--text-soft); margin-bottom: 2rem; line-height: 1.8; }
.why-list { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
.why-list li { display: flex; align-items: center; gap: 0.8rem; font-size: 0.95rem; }

.check {
  color: white; font-weight: 700;
  width: 22px; height: 22px;
  background: var(--green); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.7rem; flex-shrink: 0;
  box-shadow: 0 2px 8px var(--green-glow);
}

.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.stat-box {
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: 16px; padding: 2rem; text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.3s;
}
.stat-box:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,200,83,0.15); }
.stat-num { display: block; font-size: 2.5rem; font-weight: 800; color: var(--green); }
.stat-label { font-size: 0.85rem; color: var(--text-soft); }

/* ── CONTACT ── */
.contact-section {
  position: relative;
  background-image: url('../assets/images/backgrounds/bg-11.jpg');
  background-size: cover; background-position: center; background-attachment: fixed;
  padding: 8rem 0;
}
.contact-section::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.5);
}
.contact-section::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.8));
  z-index: 1;
}
.contact { padding: 0 4rem; max-width: 900px; margin: 0 auto; position: relative; z-index: 2; }

.contact-options { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3rem; }

.contact-card {
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-decoration: none; color: var(--text);
  display: flex; flex-direction: column; gap: 0.6rem;
  transition: all 0.3s;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.contact-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,200,83,0.15); border-color: rgba(0,200,83,0.3); }
.contact-card.whatsapp:hover { border-color: rgba(37,211,102,0.4); box-shadow: 0 16px 48px rgba(37,211,102,0.15); }

.contact-icon { color: var(--green); margin-bottom: 0.5rem; }
.contact-card.whatsapp .contact-icon { color: #25d366; }
.contact-card h3 { font-size: 1.1rem; font-weight: 700; }
.contact-card p { color: var(--text-soft); font-size: 0.9rem; }
.contact-action { color: var(--green); font-size: 0.85rem; font-weight: 600; margin-top: 0.5rem; }
.contact-card.whatsapp .contact-action { color: #25d366; }

/* ── FOOTER ── */
.footer {
  padding: 2.5rem 4rem;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(0,0,0,0.06);
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-logo { display: flex; align-items: center; gap: 0.6rem; font-weight: 700; }
.footer-copy { color: var(--text-soft); font-size: 0.85rem; }
.footer-links { display: flex; gap: 2rem; }
.footer-links a { color: var(--text-soft); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--green); }

/* ── RESPONSIVE TABLETTE ── */
@media (max-width: 1024px) {
  .navbar { width: calc(100% - 3rem); }
  .services-grid { gap: 1rem; }
  .why-grid { gap: 3rem; }
}

/* ── RESPONSIVE MOBILE ── */
@media (max-width: 768px) {
  .navbar {
    width: calc(100% - 2rem); top: 10px;
    padding: 0.75rem 1.2rem; border-radius: 50px;
  }
  .nav-links { display: none; }
  .nav-mobile-btn { display: block; }

  /* Menu mobile ouvert */
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 70px; left: 1rem; right: 1rem;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.9);
    border-radius: 20px;
    padding: 1.5rem; gap: 1.2rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    z-index: 999;
  }
  .nav-links.open a { font-size: 1rem; color: var(--text); }

  .hero { padding: 5rem 1.2rem 3rem; }
  .hero-title { font-size: 2rem; letter-spacing: -0.5px; }
  .hero-sub { font-size: 0.95rem; }
  .hero-logo-img { width: 100px; height: 100px; }
  .hero-cta { flex-direction: column; align-items: center; }
  .btn-primary, .btn-ghost { width: 100%; text-align: center; justify-content: center; }

  .services-section { padding: 4rem 0; }
  .services { padding: 0 1.2rem; }
  .services-grid { grid-template-columns: 1fr; gap: 1rem; }
  .service-card.featured { transform: none; }
  .section-header h2 { font-size: 1.6rem; }
  .card-thumbs img { height: 55px; }

  .why-us { padding: 4rem 1.2rem; }
  .why-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }

  .contact-section { padding: 4rem 0; }
  .contact { padding: 0 1.2rem; }
  .contact-options { grid-template-columns: 1fr; }

  .footer { padding: 2rem 1.2rem; }
  .footer-inner { flex-direction: column; text-align: center; gap: 0.8rem; }
  .footer-links { justify-content: center; }

  .preview-examples { padding: 0 1.2rem; }
  .preview-cards { grid-template-columns: repeat(3,1fr); gap: 0.6rem; }
}

/* ═══════════════════════════════════
   BOUTON FLOTTANT — Bayyinah + Contacts
   Apparaît sur toutes les pages
═══════════════════════════════════ */
#dhd-fab {
  position: fixed;
  bottom: 1.8rem;
  right: 1.5rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.6rem;
}

/* Bouton principal */
.dhd-fab-main {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: linear-gradient(135deg, #C9A84C, #F0D080);
  color: #08111D;
  border: none;
  border-radius: 50px;
  padding: 0.8rem 1.3rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(201,168,76,0.45);
  transition: all 0.3s;
  white-space: nowrap;
}
.dhd-fab-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(201,168,76,0.6);
}
.dhd-fab-main.open { border-radius: 50px; background: linear-gradient(135deg, #0D1B2A, #1E3355); color: #fff; box-shadow: 0 6px 24px rgba(0,0,0,0.35); }
.dhd-fab-label { letter-spacing: 0.3px; }

/* Icônes open/close */
.dhd-fab-icon-open  { display: block; flex-shrink: 0; }
.dhd-fab-icon-close { display: none;  flex-shrink: 0; }
.dhd-fab-main.open .dhd-fab-icon-open  { display: none; }
.dhd-fab-main.open .dhd-fab-icon-close { display: block; }

/* Panneau d'options */
.dhd-fab-options {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.95);
  transition: all 0.25s cubic-bezier(0.34,1.56,0.64,1);
}
.dhd-fab-options.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

/* Options individuelles */
.dhd-fab-opt {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 1.2rem;
  border-radius: 50px;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}
.dhd-fab-opt:hover { transform: translateX(-4px); }

.dhd-opt-studio {
  background: linear-gradient(135deg, #0D1B2A, #1E3355);
  color: #F0D080;
  border: 1px solid rgba(201,168,76,0.3);
}
.dhd-opt-studio:hover { box-shadow: 0 6px 20px rgba(201,168,76,0.25); }

.dhd-opt-wa {
  background: #25D366;
  color: #000;
}
.dhd-opt-wa:hover { box-shadow: 0 6px 20px rgba(37,211,102,0.4); }

.dhd-opt-email {
  background: #fff;
  color: #111827;
  border: 1px solid rgba(0,0,0,0.1);
}
.dhd-opt-email:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.15); }

/* Mobile — bouton plus petit */
@media (max-width: 768px) {
  #dhd-fab { bottom: 1.2rem; right: 1rem; }
  .dhd-fab-main { padding: 0.7rem 1.1rem; font-size: 0.82rem; }
  .dhd-fab-opt  { padding: 0.65rem 1rem; font-size: 0.82rem; }
}
