/* ═══════════════════════════════════════════════════════════
   style.css — AKL SERVICES
═══════════════════════════════════════════════════════════ */

/* ── VARIABLES ── */
:root {
  --navy:    #080f1e;
  --navy2:   #0c1830;
  --navy3:   #0f2040;
  --teal:    #00c9a7;
  --teal2:   #00e8c0;
  --teal3:   #007a66;
  --blue:    #0d4a8a;
  --blue2:   #1565b8;
  --white:   #ffffff;
  --off:     #f0f4f8;
  --muted:   #7a8a9a;
  --card:    #0e1e38;
  --border:  rgba(0,201,167,0.12);
  --border2: rgba(255,255,255,0.07);
  --radius:  10px;
  --shadow:  0 12px 48px rgba(0,0,0,0.4);
  --header-h: 72px;
}

/* ── RESET & BASE ── */
* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  font-family: 'Barlow', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  font-weight: 400;
}
h1,h2,h3,h4,h5 {
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: -0.3px;
}
a { text-decoration:none; color:inherit; }

/* ── UTILITY ── */
.container { max-width:1200px; margin:0 auto; padding:0 28px; }
.section { padding:110px 0; }
.section--alt { background: var(--navy2); }
.page-top { padding-top:calc(var(--header-h) + 30px); } /* 72px + 30px = 102px */

/* ── PAGE ACCUEIL : fond parallax global ── */
#page-accueil {
  background: url('backround.png') center/cover fixed;
}
/* Sections dans accueil : semi-transparentes pour laisser l'image se voir */
#page-accueil .section--alt {
  background: rgba(12, 24, 48, 0.90);
}
#page-accueil .cta-band {
  background: linear-gradient(135deg, rgba(15,32,64,0.88) 0%, rgba(12,24,48,0.88) 100%);
}

.label {
  display:inline-block;
  font-family: 'Barlow', sans-serif;
  font-size:11px; font-weight:700;
  letter-spacing:3px; text-transform:uppercase;
  color: var(--teal);
  margin-bottom:14px;
}
.section-title {
  font-size: clamp(32px,5vw,58px);
  font-weight:900; line-height:1.05;
  margin-bottom:18px;
}
.section-sub {
  color: var(--muted);
  font-size:17px; line-height:1.75;
  max-width:540px;
  font-weight:400;
}

/* ── BOUTONS ── */
.btn {
  display:inline-flex; align-items:center; gap:8px;
  padding:13px 26px; border-radius:6px;
  font-family:'Barlow',sans-serif; font-weight:700; font-size:14px;
  letter-spacing:0.5px; text-transform:uppercase;
  cursor:pointer; border:none; transition:all .25s ease;
}
.btn--primary { background:var(--teal); color:var(--navy); }
.btn--primary:hover { background:var(--teal2); transform:translateY(-2px); box-shadow:0 8px 28px rgba(0,201,167,.4); }
.btn--outline { background:transparent; color:#fff; border:1.5px solid rgba(255,255,255,.25); }
.btn--outline:hover { border-color:var(--teal); color:var(--teal); }
.btn--dark { background:rgba(255,255,255,.06); color:#fff; border:1px solid var(--border2); }
.btn--dark:hover { background:rgba(255,255,255,.1); }
.btn--wa { background:#25D366; color:#fff; }
.btn--wa:hover { background:#1fb855; transform:translateY(-2px); }
.btn--full { width:100%; justify-content:center; }

/* ── ANIMATIONS ── */
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
@keyframes slideIn { from{transform:translateY(20px);opacity:0} to{transform:none;opacity:1} }

/* ── HEADER ── */
#header {
  position:fixed; top:0; left:0; right:0; z-index:1000;
  background:rgba(8,15,30,.96);
  backdrop-filter:blur(20px);
  border-bottom:1px solid var(--border);
  transition:all .3s;
}
.header-inner {
  display:flex; align-items:center; justify-content:space-between;
  height:72px;
}
.logo { display:flex; align-items:center; gap:12px; }
.logo-text {
  font-family:'Barlow Condensed',sans-serif;
  font-weight:900; font-size:28px;
  letter-spacing:1px; color:#fff;
}
.logo-text span { color:var(--teal); }

nav.nav { display:flex; align-items:center; gap:2px; }
nav.nav a {
  font-size:13px; font-weight:600; letter-spacing:0.5px; text-transform:uppercase;
  padding:7px 13px; border-radius:5px;
  color:rgba(255,255,255,.6); transition:all .2s;
}
nav.nav a:hover { color:#fff; background:rgba(255,255,255,.06); }

.header-right { display:flex; align-items:center; gap:10px; }
.tel-pill {
  display:flex; align-items:center; gap:8px;
  background:var(--teal); color:var(--navy);
  padding:9px 18px; border-radius:6px;
  font-family:'Barlow Condensed',sans-serif;
  font-weight:800; font-size:16px; letter-spacing:0.5px;
  cursor:pointer; transition:all .2s;
}
.tel-pill:hover { background:var(--teal2); }

.live-dot {
  width:7px; height:7px; border-radius:50%; background:var(--navy);
  animation:blink 1.4s infinite;
}

.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:8px; }
.hamburger span { display:block; width:22px; height:2px; background:#fff; border-radius:2px; transition:all .3s; }

/* ── MOBILE NAV ── */
.mobile-nav {
  display:none; position:fixed; top:var(--header-h); left:0; right:0;
  background:var(--navy2); border-bottom:1px solid var(--border);
  padding:16px 28px; z-index:999; flex-direction:column; gap:4px;
}
.mobile-nav.open { display:flex; }
.mobile-nav a {
  padding:11px 14px; border-radius:6px;
  color:rgba(255,255,255,.75); font-weight:600; font-size:14px;
}
.mobile-nav a:hover { color:#fff; background:rgba(255,255,255,.05); }

/* ── HERO ── */
#hero {
  min-height:100vh; display:flex; align-items:center;
  position:relative; overflow:hidden;
  padding-top:120px;
  padding-bottom:80px;
  /* pas de background solide — on laisse l'image de #page-accueil transparaître */
}
.hero-bg {
  position:absolute; inset:0;
  /* overlay semi-transparent uniquement — l'image vient du fond fixe de #page-accueil */
  background:
    radial-gradient(ellipse 70% 60% at 70% 40%, rgba(0,100,80,.15) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 15% 70%, rgba(13,74,138,.20) 0%, transparent 60%),
    linear-gradient(160deg, rgba(4,10,22,0.60) 0%, rgba(8,18,38,0.55) 100%);
}
.hero-lines {
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(0,201,167,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,201,167,.03) 1px, transparent 1px);
  background-size:64px 64px;
  mask-image:radial-gradient(ellipse 70% 80% at 50% 50%, black 30%, transparent 100%);
}
.hero-accent {
  position:absolute; top:20%; right:-5%;
  width:500px; height:500px; border-radius:50%;
  background:radial-gradient(circle, rgba(0,201,167,.06) 0%, transparent 70%);
}
.hero-inner {
  position:relative; z-index:2;
  display:grid; grid-template-columns:1fr 1fr;
  gap:80px; align-items:center; width:100%;
}
.hero-kicker {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(0,201,167,.1); border:1px solid rgba(0,201,167,.25);
  color:var(--teal); padding:6px 14px; border-radius:20px;
  font-size:12px; font-weight:700; letter-spacing:1.5px; text-transform:uppercase;
  margin-bottom:22px;
}
.hero-title {
  font-size:clamp(44px,6vw,80px); font-weight:900; line-height:1.0;
  margin-bottom:22px; letter-spacing:-1px;
}
.hero-title .teal { color:var(--teal); }
.hero-desc {
  font-size:18px; color:rgba(255,255,255,.6); line-height:1.8;
  margin-bottom:36px; max-width:460px; font-weight:400;
}
.hero-btns { display:flex; gap:12px; flex-wrap:wrap; margin-bottom:56px; }
.hero-stats {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:1px; background:var(--border2); border:1px solid var(--border2);
  border-radius:8px; overflow:hidden;
}
.stat { background:var(--card); padding:20px 16px; text-align:center; }
.stat-num { font-family:'Barlow Condensed',sans-serif; font-size:34px; font-weight:900; color:var(--teal); display:block; }
.stat-label { font-size:11px; color:var(--muted); margin-top:2px; text-transform:uppercase; letter-spacing:1px; }

/* ── HERO CARD ── */
.hero-card {
  background:var(--card); border:1px solid var(--border);
  border-radius:16px; padding:36px; box-shadow:var(--shadow);
  position:relative;
}
.hero-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg, var(--teal), var(--blue2));
  border-radius:16px 16px 0 0;
}
.card-head { margin-bottom:26px; }
.card-head h3 { font-size:22px; font-weight:900; margin-bottom:4px; }
.card-head p { font-size:13px; color:var(--muted); }

/* ── FORMULAIRES ── */
.quick-form,
.contact-form { display:flex; flex-direction:column; gap:13px; }
.form-group { display:flex; flex-direction:column; gap:5px; }
.form-group label {
  font-size:12px; font-weight:700; letter-spacing:0.8px;
  text-transform:uppercase; color:var(--muted);
}
.form-group select,
.form-group input,
.form-group textarea {
  background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.1);
  border-radius:6px; padding:11px 14px;
  color:#fff; font-family:'Barlow',sans-serif; font-size:14px;
  transition:border .2s; width:100%;
}
.form-group select:focus,
.form-group input:focus,
.form-group textarea:focus { outline:none; border-color:var(--teal); }
.form-group select option { background:var(--navy2); }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:12px; }

.urgency-row { display:flex; gap:8px; }
.urgency-btn {
  flex:1; padding:9px 6px; background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.1); border-radius:6px;
  color:rgba(255,255,255,.65); font-size:12px; font-weight:700;
  cursor:pointer; transition:all .2s; text-align:center;
  text-transform:uppercase; letter-spacing:0.5px;
}
.urgency-btn.active,
.urgency-btn:hover { background:rgba(0,201,167,.12); border-color:var(--teal); color:var(--teal); }

/* ── SERVICES GRID ── */
.services-grid {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:18px; margin-top:64px;
}
.service-card {
  background:var(--card); border:1px solid var(--border2);
  border-radius:var(--radius); padding:30px;
  transition:all .3s; cursor:pointer; position:relative; overflow:hidden;
}
.service-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:2px;
  background:linear-gradient(90deg, var(--teal), var(--blue2));
  transform:scaleX(0); transform-origin:left; transition:transform .35s;
}
.service-card:hover { transform:translateY(-5px); border-color:rgba(0,201,167,.2); box-shadow:0 20px 56px rgba(0,0,0,.35); }
.service-card:hover::before { transform:scaleX(1); }
.svc-icon {
  width:48px; height:48px; border-radius:8px;
  background:rgba(0,201,167,.1); border:1px solid rgba(0,201,167,.2);
  display:flex; align-items:center; justify-content:center; margin-bottom:18px;
}
.svc-icon svg { width:22px; height:22px; stroke:var(--teal); fill:none; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
.service-card h3 { font-size:19px; font-weight:800; margin-bottom:10px; }
.service-card p { font-size:14px; color:var(--muted); line-height:1.7; }
.svc-more {
  display:inline-flex; align-items:center; gap:4px;
  color:var(--teal); font-size:12px; font-weight:700;
  letter-spacing:0.8px; text-transform:uppercase; margin-top:18px;
}

/* ── WHY ── */
.why-grid { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.why-visual {
  background:var(--card); border:1px solid var(--border);
  border-radius:16px; padding:44px; text-align:center; position:relative; overflow:hidden;
}
.why-visual::before {
  content:''; position:absolute; top:-60px; right:-60px;
  width:200px; height:200px; border-radius:50%;
  background:radial-gradient(circle, rgba(0,201,167,.08) 0%, transparent 70%);
}
.trust-icon {
  width:80px; height:80px; margin:0 auto 24px;
  border-radius:50%; background:rgba(0,201,167,.1); border:2px solid rgba(0,201,167,.2);
  display:flex; align-items:center; justify-content:center;
}
.trust-icon svg { width:36px; height:36px; stroke:var(--teal); fill:none; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
.certif-grid { display:flex; flex-wrap:wrap; gap:8px; justify-content:center; margin-top:24px; }
.certif-tag {
  background:rgba(0,201,167,.08); border:1px solid rgba(0,201,167,.15);
  border-radius:4px; padding:5px 12px;
  font-size:12px; font-weight:700; color:rgba(255,255,255,.75); letter-spacing:0.5px;
}
.why-list { display:flex; flex-direction:column; gap:26px; margin-top:34px; }
.why-item { display:flex; gap:18px; align-items:flex-start; }
.why-num {
  width:42px; height:42px; flex-shrink:0;
  border:1px solid rgba(0,201,167,.25); border-radius:8px;
  display:flex; align-items:center; justify-content:center;
  color:var(--teal); font-family:'Barlow Condensed',sans-serif;
  font-weight:900; font-size:17px; background:rgba(0,201,167,.07);
}
.why-item h4 { font-size:17px; font-weight:700; margin-bottom:5px; }
.why-item p { font-size:14px; color:var(--muted); line-height:1.65; }

/* ── PACKS ── */
.packs-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:64px; }
.pack-card {
  background:var(--card); border:1px solid var(--border2);
  border-radius:14px; padding:38px 30px; position:relative; transition:all .3s;
}
.pack-card.featured {
  border-color:rgba(0,201,167,.35);
  background:linear-gradient(160deg, rgba(0,201,167,.07) 0%, var(--card) 60%);
}
.pack-badge {
  position:absolute; top:-13px; left:50%; transform:translateX(-50%);
  background:var(--teal); color:var(--navy);
  font-size:10px; font-weight:800; letter-spacing:2px; text-transform:uppercase;
  padding:4px 16px; border-radius:20px;
}
.pack-name { font-size:24px; font-weight:900; margin-bottom:6px; }
.pack-sub { font-size:13px; color:var(--muted); margin-bottom:18px; }
.pack-price { font-size:46px; font-weight:900; color:var(--teal); margin-bottom:4px; line-height:1; }
.pack-price sup { font-size:22px; vertical-align:super; }
.pack-price small { font-size:15px; color:var(--muted); font-weight:400; }
.pack-features { list-style:none; margin:22px 0 28px; display:flex; flex-direction:column; gap:10px; }
.pack-features li {
  display:flex; align-items:flex-start; gap:10px;
  font-size:14px; color:rgba(255,255,255,.8); line-height:1.5;
}
.pack-features li::before { content:'✓'; color:var(--teal); font-weight:900; font-size:13px; }

/* ── TÉMOIGNAGES ── */
.testimonials-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-top:60px; }
.testi-card {
  background:var(--card); border:1px solid var(--border2);
  border-radius:var(--radius); padding:26px; transition:border-color .2s;
}
.testi-card:hover { border-color:rgba(0,201,167,.2); }
.stars { display:flex; gap:3px; margin-bottom:16px; }
.star { width:14px; height:14px; background:var(--teal); clip-path:polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%); }
.testi-text { font-size:14px; color:rgba(255,255,255,.75); line-height:1.75; font-style:italic; margin-bottom:22px; }
.testi-author { display:flex; align-items:center; gap:12px; }
.author-av {
  width:38px; height:38px; border-radius:50%;
  background:linear-gradient(135deg, var(--teal3), var(--blue2));
  display:flex; align-items:center; justify-content:center;
  font-family:'Barlow Condensed',sans-serif; font-weight:800; font-size:16px;
}
.author-name { font-weight:700; font-size:14px; }
.author-loc { font-size:12px; color:var(--muted); margin-top:1px; }

/* ── ZONES ── */
.zones-box {
  margin-top:60px; background:var(--card); border:1px solid var(--border);
  border-radius:16px; padding:44px; text-align:center;
}
.zones-wrap { display:flex; flex-wrap:wrap; gap:8px; justify-content:center; margin-top:28px; }
.zone-pill {
  background:rgba(0,201,167,.07); border:1px solid rgba(0,201,167,.18);
  border-radius:20px; padding:6px 16px;
  font-size:13px; font-weight:500; color:rgba(255,255,255,.8);
}

/* ── FAQ ── */
.faq-list { margin-top:50px; display:flex; flex-direction:column; gap:10px; }
.faq-item {
  background:var(--card); border:1px solid var(--border2);
  border-radius:8px; overflow:hidden; transition:border-color .2s;
}
.faq-item.open { border-color:rgba(0,201,167,.2); }
.faq-q {
  display:flex; align-items:center; justify-content:space-between;
  padding:20px 24px; cursor:pointer; font-weight:700; font-size:15px; transition:color .2s;
}
.faq-q:hover { color:var(--teal); }
.faq-arrow {
  width:28px; height:28px; border-radius:50%;
  background:rgba(255,255,255,.06);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
  font-size:18px; transition:transform .3s, background .2s;
}
.faq-item.open .faq-arrow { transform:rotate(45deg); background:rgba(0,201,167,.15); color:var(--teal); }
.faq-a {
  max-height:0; overflow:hidden;
  transition:max-height .4s ease, padding .3s;
  padding:0 24px; font-size:14px; color:var(--muted); line-height:1.8;
}
.faq-item.open .faq-a { max-height:300px; padding:0 24px 22px; }

/* ── CONTACT ── */
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:60px; margin-top:64px; }
.contact-info { display:flex; flex-direction:column; gap:22px; }
.contact-item { display:flex; gap:16px; align-items:flex-start; }
.ci-icon {
  width:44px; height:44px; flex-shrink:0; border-radius:8px;
  background:rgba(0,201,167,.1); border:1px solid rgba(0,201,167,.2);
  display:flex; align-items:center; justify-content:center;
}
.ci-icon svg { width:20px; height:20px; stroke:var(--teal); fill:none; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
.contact-item h4 { font-size:14px; font-weight:700; margin-bottom:4px; }
.contact-item p, .contact-item a { font-size:14px; color:var(--muted); }
.contact-item a:hover { color:var(--teal); }

/* ── BOUTIQUE ── */
.boutique-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:56px; }
.product-card {
  background:var(--card); border:1px solid var(--border2);
  border-radius:var(--radius); overflow:hidden; transition:all .3s;
}
.product-card:hover { transform:translateY(-4px); border-color:rgba(0,201,167,.2); }
.product-img {
  height:160px; background:var(--navy3);
  display:flex; align-items:center; justify-content:center;
}
.product-body { padding:22px; }
.product-cat { font-size:11px; color:var(--muted); text-transform:uppercase; letter-spacing:1px; margin-bottom:6px; }
.product-name { font-size:16px; font-weight:700; margin-bottom:10px; }
.product-price { font-family:'Barlow Condensed',sans-serif; font-size:26px; font-weight:900; color:var(--teal); margin-bottom:14px; }

/* ── RÉALISATIONS ── */
.realisations-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-top:56px; }
.real-card {
  background:var(--card); border:1px solid var(--border2);
  border-radius:10px; overflow:hidden; aspect-ratio:4/3;
  display:flex; align-items:center; justify-content:center;
  flex-direction:column; gap:12px; cursor:pointer; transition:all .3s;
}
.real-card:hover { border-color:rgba(0,201,167,.2); transform:scale(1.02); }
.real-card span { font-size:13px; font-weight:700; color:rgba(255,255,255,.7); }

/* ── CTA BAND ── */
.cta-band {
  padding:88px 0;
  background:linear-gradient(135deg, var(--navy3) 0%, var(--navy2) 100%);
  border-top:1px solid var(--border); border-bottom:1px solid var(--border);
}
.cta-btns { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }

/* ── FOOTER ── */
footer {
  background:#050c19; border-top:1px solid var(--border2);
  padding:64px 0 32px;
}
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:48px; margin-bottom:48px; }
.footer-brand p { font-size:14px; color:var(--muted); margin-top:16px; line-height:1.75; }
.footer-col h5 { font-weight:800; font-size:13px; letter-spacing:1.5px; text-transform:uppercase; margin-bottom:18px; color:rgba(255,255,255,.85); }
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:9px; }
.footer-col ul li a { font-size:13px; color:var(--muted); transition:color .2s; }
.footer-col ul li a:hover { color:var(--teal); }
.footer-bottom {
  border-top:1px solid var(--border2); padding-top:28px;
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px;
}
.footer-bottom p { font-size:13px; color:var(--muted); }
.footer-bottom a { color:rgba(255,255,255,.45); }
.footer-bottom a:hover { color:var(--teal); }

/* ── FLOATING BUTTONS ── */
.floating { position:fixed; bottom:24px; right:24px; display:flex; flex-direction:column; gap:10px; z-index:900; }
.float-btn {
  width:52px; height:52px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; box-shadow:0 4px 16px rgba(0,0,0,.4); border:none;
  text-decoration:none; transition:transform .2s, box-shadow .2s; font-size:22px;
}
.float-btn:hover { transform:scale(1.1); box-shadow:0 8px 28px rgba(0,0,0,.5); }
.float-tel { background:var(--teal); }
.float-wa { background:#25D366; }

/* ── MODAL ── */
.modal-overlay {
  display:none; position:fixed; inset:0; z-index:2000;
  background:rgba(4,10,22,.92); backdrop-filter:blur(10px);
  align-items:center; justify-content:center; padding:20px;
}
.modal-overlay.open { display:flex; }
.modal {
  background:var(--navy2); border:1px solid var(--border);
  border-radius:16px; padding:44px; max-width:640px; width:100%;
  max-height:90vh; overflow-y:auto; position:relative;
  animation:slideIn .3s ease;
}
.modal-close {
  position:absolute; top:16px; right:16px;
  background:rgba(255,255,255,.08); border:none; color:#fff;
  width:32px; height:32px; border-radius:50%; cursor:pointer;
  font-size:18px; display:flex; align-items:center; justify-content:center;
}
.modal-close:hover { background:rgba(255,255,255,.15); }
.step-bar { display:flex; gap:6px; margin-bottom:34px; }
.step-dot { flex:1; height:3px; background:rgba(255,255,255,.1); border-radius:2px; transition:background .3s; }
.step-dot.active { background:var(--teal); }
.step-panel { display:none; }
.step-panel.active { display:block; }
.step-title { font-size:24px; font-weight:900; margin-bottom:6px; }
.step-sub { font-size:14px; color:var(--muted); margin-bottom:26px; }
.svc-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:10px; margin-bottom:22px; }
.svc-opt {
  background:rgba(255,255,255,.04); border:1.5px solid rgba(255,255,255,.08);
  border-radius:8px; padding:18px; cursor:pointer; text-align:center; transition:all .2s;
}
.svc-opt:hover, .svc-opt.selected { border-color:var(--teal); background:rgba(0,201,167,.1); }
.svc-opt-label { font-size:13px; font-weight:700; text-transform:uppercase; letter-spacing:0.5px; margin-top:6px; }
.svc-opt svg { width:28px; height:28px; stroke:var(--teal); fill:none; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
.step-nav { display:flex; gap:12px; margin-top:26px; }
.success-box { text-align:center; padding:20px; }
.success-check {
  width:64px; height:64px; border-radius:50%;
  background:rgba(0,201,167,.15); border:2px solid var(--teal);
  display:flex; align-items:center; justify-content:center; margin:0 auto 20px;
}
.success-check svg { width:28px; height:28px; stroke:var(--teal); fill:none; stroke-width:2.5; stroke-linecap:round; stroke-linejoin:round; }
.success-box h3 { font-size:26px; font-weight:900; margin-bottom:10px; }
.success-box p { color:var(--muted); line-height:1.7; }

/* ── PAGE SYSTEM ── */
.page-section { display:none; }
.page-section.active { display:block; }

/* ── REVEAL ANIMATION ── */
.reveal { opacity:0; transform:translateY(28px); transition:opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity:1; transform:none; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width:1024px) {
  .services-grid { grid-template-columns:repeat(2,1fr); }
  .hero-inner { grid-template-columns:1fr; gap:48px; }
  .hero-card { display:none; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .packs-grid { grid-template-columns:1fr; max-width:460px; margin-left:auto; margin-right:auto; }
  .testimonials-grid { grid-template-columns:1fr 1fr; }
  .why-grid { grid-template-columns:1fr; }
  .contact-grid { grid-template-columns:1fr; }
  .boutique-grid { grid-template-columns:1fr 1fr; }
  .realisations-grid { grid-template-columns:1fr 1fr; }
}

@media (max-width:768px) {
  nav.nav { display:none; }
  .hamburger { display:flex; }
  .section { padding:72px 0; }
  .services-grid { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; }
  .testimonials-grid { grid-template-columns:1fr; }
  .boutique-grid { grid-template-columns:1fr; }
  .realisations-grid { grid-template-columns:1fr; }
  .hero-stats { grid-template-columns:repeat(3,1fr); }
  .form-row { grid-template-columns:1fr; }
  .tel-text { display:none; }
  .footer-grid { grid-template-columns:1fr; }
}

/* ══════════════════════════════════════════════════════════
   CHATBOT FAQ — AKL SERVICES
   S'intègre dans le design existant sans modifier les couleurs
══════════════════════════════════════════════════════════ */

/* ── Suggestions rapides ───────────────────────────────── */
.chat-suggestions {
  margin: 32px 0 20px;
}
.chat-sugg-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.chat-sugg-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chat-sugg {
  background: rgba(0,201,167,.07);
  border: 1px solid rgba(0,201,167,.2);
  color: var(--teal);
  padding: 7px 15px;
  border-radius: 20px;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s ease;
  white-space: nowrap;
}
.chat-sugg:hover {
  background: rgba(0,201,167,.16);
  border-color: var(--teal);
  transform: translateY(-1px);
}

/* ── Conteneur principal du chatbot ────────────────────── */
.chatbot-wrap {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}

/* ── En-tête du chat ────────────────────────────────────── */
.chat-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--navy2);
  border-bottom: 1px solid var(--border);
}
.chat-header-avatar {
  width: 40px;
  height: 40px;
  border-radius: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.chat-header-avatar svg {
  width: 20px;
  height: 20px;
  stroke: var(--navy);
  fill: none;
}
.chat-header-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.chat-header-name {
  font-weight: 800;
  font-size: 14px;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: .3px;
}
.chat-header-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
}
.chat-reset {
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border2);
  color: var(--muted);
  width: 34px;
  height: 34px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  flex-shrink: 0;
}
.chat-reset:hover { background: rgba(255,255,255,.12); color: var(--white); }
.chat-reset svg { width: 15px; height: 15px; }

/* ── Zone de messages ───────────────────────────────────── */
.chat-messages {
  height: 400px;
  overflow-y: auto;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  scroll-behavior: smooth;
}
.chat-messages::-webkit-scrollbar { width: 4px; }
.chat-messages::-webkit-scrollbar-track { background: transparent; }
.chat-messages::-webkit-scrollbar-thumb { background: rgba(255,255,255,.1); border-radius: 2px; }

/* ── Bulles de messages ─────────────────────────────────── */
.chat-msg {
  display: flex;
  gap: 10px;
  align-items: flex-end;
  animation: msgAppear .3s ease forwards;
  opacity: 0;
}
@keyframes msgAppear {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Message du bot (gauche) */
.chat-msg.bot {
  justify-content: flex-start;
}
.chat-msg.bot .chat-bubble {
  background: var(--navy3);
  border: 1px solid var(--border);
  color: var(--white);
  border-radius: 16px 16px 16px 4px;
  max-width: 78%;
}

/* Message de l'utilisateur (droite) */
.chat-msg.user {
  justify-content: flex-end;
}
.chat-msg.user .chat-bubble {
  background: linear-gradient(135deg, var(--teal3), var(--teal));
  color: var(--navy);
  border-radius: 16px 16px 4px 16px;
  max-width: 72%;
  font-weight: 600;
}

.chat-bubble {
  padding: 12px 16px;
  font-size: 14px;
  line-height: 1.65;
  word-break: break-word;
}

/* Avatar du bot */
.chat-avatar {
  width: 40px;
  height: 40px;
  border-radius: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.chat-avatar svg {
  width: 14px;
  height: 14px;
  stroke: var(--navy);
  fill: none;
  stroke-width: 2.5;
}

/* Boutons d'action dans les réponses */
.chat-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.chat-action-btn {
  background: rgba(0,201,167,.12);
  border: 1px solid rgba(0,201,167,.3);
  color: var(--teal);
  padding: 6px 13px;
  border-radius: 6px;
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
  display: inline-block;
}
.chat-action-btn:hover {
  background: rgba(0,201,167,.22);
  color: var(--teal2);
}

/* ── Indicateur "en train d'écrire" ────────────────────── */
.chat-typing {
  display: none;
  align-items: center;
  gap: 5px;
  padding: 0 20px 16px;
}
.chat-typing.visible { display: flex; }
.chat-typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  opacity: .4;
  animation: typingDot 1.2s infinite ease-in-out;
}
.chat-typing span:nth-child(2) { animation-delay: .2s; }
.chat-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes typingDot {
  0%, 80%, 100% { transform: scale(1); opacity: .4; }
  40%           { transform: scale(1.3); opacity: 1; }
}

/* ── Zone de saisie ─────────────────────────────────────── */
.chat-input-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: var(--navy2);
  border-top: 1px solid var(--border);
}
.chat-input {
  flex: 1;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border2);
  border-radius: 10px;
  padding: 11px 16px;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  color: var(--white);
  outline: none;
  transition: border-color .2s;
}
.chat-input::placeholder { color: var(--muted); }
.chat-input:focus { border-color: rgba(0,201,167,.4); }
.chat-send {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--teal);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all .2s;
}
.chat-send:hover { background: var(--teal2); transform: scale(1.06); }
.chat-send:disabled { opacity: .5; cursor: not-allowed; transform: none; }
.chat-send svg { width: 17px; height: 17px; stroke: var(--navy); }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 600px) {
  .chat-messages { height: 320px; }
  .chat-msg.bot .chat-bubble,
  .chat-msg.user .chat-bubble { max-width: 90%; }
  .chat-sugg-list { gap: 6px; }
  .chat-sugg { font-size: 12px; padding: 6px 12px; }
}


/* ══════════════════════════════════════════════════════════
   CHATBOT LAYOUT (suggestions sidebar + chat côte à côte)
══════════════════════════════════════════════════════════ */

/* Conteneur 2 colonnes */
.chat-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  margin-top: 40px;
  align-items: start;
}

/* Colonne suggestions */
.chat-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: sticky;
  top: 100px;
}
.chat-sidebar .chat-sugg-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
  display: block;
}
.chat-sidebar .chat-sugg-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Chip suggestion — version sidebar (pleine largeur) */
.chat-sugg--sidebar {
  width: 100%;
  text-align: left;
  border-radius: 8px !important;
  padding: 10px 14px !important;
  font-size: 13px !important;
  border-left: 2px solid rgba(0,201,167,.25) !important;
  white-space: normal !important;
}
.chat-sugg--sidebar:hover {
  border-left-color: var(--teal) !important;
  padding-left: 18px !important;
  transition: padding .2s ease;
}

/* Responsive : empilement sur mobile */
@media (max-width: 768px) {
  .chat-layout {
    grid-template-columns: 1fr;
  }
  .chat-sidebar {
    position: static;
  }
  .chat-sidebar .chat-sugg-list {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .chat-sugg--sidebar {
    width: auto !important;
    text-align: center !important;
  }
}


/* ══════════════════════════════════════════════════════════
   FLOATING CHATBOT IA — Fenêtre chat bas-droite
══════════════════════════════════════════════════════════ */

/* Repositionne le conteneur floating */
.floating {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  z-index: 900;
}

/* Bouton chatbot IA */
.float-chat {
  background: linear-gradient(135deg, var(--teal3) 0%, var(--teal) 100%);
  color: var(--navy);
  position: relative;
  overflow: visible;
}
.float-chat:hover { background: linear-gradient(135deg, var(--teal) 0%, var(--teal2) 100%); }

/* Badge "IA" sur le bouton */
.float-chat-label {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--navy);
  color: var(--teal);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.5px;
  padding: 1px 5px;
  border-radius: 10px;
  border: 1px solid rgba(0,201,167,.3);
  line-height: 1.4;
}

/* Icônes du bouton (chat / fermer) */
.fc-icon { transition: all .25s ease; }
.fc-icon--close {
  display: none;
  position: absolute;
}
.float-chat.open .fc-icon--chat  { display: none; }
.float-chat.open .fc-icon--close { display: block; }
.float-chat.open .float-chat-label { display: none; }

/* Bulle tooltip d'accueil */
.float-chat-bubble {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  padding: 9px 15px;
  border-radius: 18px 18px 4px 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
  white-space: nowrap;
  animation: bubblePop .4s ease forwards;
  pointer-events: none;
}
.float-chat-bubble.hidden { display: none; }
@keyframes bubblePop {
  from { opacity: 0; transform: scale(.85) translateY(8px); }
  to   { opacity: 1; transform: scale(1)  translateY(0); }
}

/* Fenêtre chat flottante */
.float-chat-window {
  display: none;
  flex-direction: column;
  width: 340px;
  height: 460px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.5);
  animation: windowSlide .3s ease forwards;
  position: absolute;
  bottom: calc(100% + 12px);
  right: 0;
}
.float-chat-window.open { display: flex; }
@keyframes windowSlide {
  from { opacity: 0; transform: translateY(16px) scale(.97); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}

/* En-tête de la fenêtre flottante */
.float-chat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--navy2);
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

/* Zone de messages flottante */
.float-chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scroll-behavior: smooth;
}
.float-chat-messages::-webkit-scrollbar { width: 3px; }
.float-chat-messages::-webkit-scrollbar-thumb { background: rgba(255,255,255,.1); border-radius: 2px; }

/* Indicateur typing flottant */
.float-chat-typing {
  display: none;
  align-items: center;
  gap: 4px;
  padding: 0 14px 10px;
  flex-shrink: 0;
}
.float-chat-typing.visible { display: flex; }
.float-chat-typing span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  opacity: .4;
  animation: typingDot 1.2s infinite ease-in-out;
}
.float-chat-typing span:nth-child(2) { animation-delay: .2s; }
.float-chat-typing span:nth-child(3) { animation-delay: .4s; }

/* Suggestions rapides dans la fenêtre flottante */
.float-chat-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  padding: 0 12px 10px;
  flex-shrink: 0;
  border-top: 1px solid var(--border2);
  padding-top: 10px;
}
.float-chat-suggestions .chat-sugg {
  font-size: 11px !important;
  padding: 5px 10px !important;
}
.float-chat-suggestions.hidden { display: none; }

/* Zone de saisie flottante */
.float-chat-input-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: var(--navy2);
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}
.float-chat-input-row .chat-input {
  font-size: 13px;
  padding: 9px 12px;
}

/* Responsive mobile */
@media (max-width: 480px) {
  .float-chat-window {
    width: calc(100vw - 32px);
    right: -8px;
    height: 420px;
  }
}
