/* ============================================
   AQUAPRO 33 — style.css
   Police : Inter (Google Fonts)
   Couleurs : Navy #0D1B2E + Orange #E85A00
   Utilisé par : toutes les pages du site
============================================ */

/* ── VARIABLES ── */
:root {
  --navy:     #0D1B2E;
  --navy-2:   #152440;
  --navy-3:   #1E3357;
  --orange:   #E85A00;
  --orange-d: #C44A00;
  --orange-s: rgba(232,90,0,.09);
  --orange-b: rgba(232,90,0,.2);
  --white:    #FFFFFF;
  --off:      #F5F3F0;
  --light:    #ECEAE6;
  --text:     #1C1A18;
  --muted:    #6B6560;
  --border:   #DDD8D2;
  --green:    #25D366;
  --green-d:  #1DAD56;
  --f:        'Inter', sans-serif;
  --sh-sm:    0 2px 10px rgba(13,27,46,.07);
  --sh:       0 4px 24px rgba(13,27,46,.10);
  --sh-lg:    0 12px 40px rgba(13,27,46,.14);
  --r:        10px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f);
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; }
button { font-family: var(--f); cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ── LAYOUT ── */
.wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ── TYPOGRAPHIE ── */
h1, h2, h3, h4 {
  font-family: var(--f);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.1;
  color: var(--navy);
}
h1 { font-size: clamp(36px, 5.5vw, 68px); }
h2 { font-size: clamp(26px, 4vw, 44px); }
h3 { font-size: clamp(18px, 2.5vw, 24px); font-weight: 700; }

.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.s-title { margin-bottom: 12px; }
.s-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 500px;
  font-weight: 400;
}

/* ── BOUTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--f);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 24px;
  border-radius: var(--r);
  transition: all .2s;
  white-space: nowrap;
  cursor: pointer;
  border: none;
}
.btn-primary   { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-d); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(232,90,0,.3); }
.btn-ghost-w   { background: rgba(255,255,255,.1); color: #fff; border: 1.5px solid rgba(255,255,255,.25); backdrop-filter: blur(6px); }
.btn-ghost-w:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.45); }
.btn-wa        { background: var(--green); color: #fff; }
.btn-wa:hover  { background: var(--green-d); transform: translateY(-1px); }
.btn-outline   { background: transparent; color: var(--text); border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }
.btn-white     { background: #fff; color: var(--orange); font-weight: 700; }
.btn-white:hover { background: var(--off); transform: translateY(-1px); }

/* ── HEADER ── */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.hdr {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}
.logo-mark {
  width: 36px; height: 36px;
  background: var(--orange);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 12px;
  color: #fff;
  letter-spacing: -.3px;
  flex-shrink: 0;
}
.logo-name {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.3px;
}
.logo-name span { color: var(--orange); }

nav { display: flex; gap: 2px; }
nav a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.5);
  padding: 7px 13px;
  border-radius: 7px;
  transition: all .2s;
}
nav a:hover, nav a.active { color: #fff; background: rgba(255,255,255,.07); }

.hdr-right { display: flex; gap: 8px; align-items: center; }
.hdr-tel {
  font-size: 14px; font-weight: 600;
  color: rgba(255,255,255,.6);
  padding: 8px 14px; border-radius: 7px;
  border: 1px solid rgba(255,255,255,.14);
  transition: all .2s; white-space: nowrap;
}
.hdr-tel:hover { color: #fff; border-color: rgba(255,255,255,.3); }
.hdr-wa {
  font-size: 14px; font-weight: 700;
  background: var(--green); color: #fff;
  padding: 9px 18px; border-radius: 7px;
  transition: all .2s; white-space: nowrap;
}
.hdr-wa:hover { background: var(--green-d); }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  padding: 64px 0 28px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.f-brand-name {
  font-size: 17px; font-weight: 800; color: #fff; margin-bottom: 14px;
}
.f-brand-name span { color: var(--orange); }
.f-desc { font-size: 13px; color: rgba(255,255,255,.35); line-height: 1.75; margin-bottom: 18px; max-width: 280px; }
.f-contact { display: flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 500; color: rgba(255,255,255,.55); margin-bottom: 8px; transition: color .2s; }
.f-contact:hover { color: var(--orange); }
.f-col h4 { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.22); margin-bottom: 16px; }
.f-col a { display: block; font-size: 13px; color: rgba(255,255,255,.4); margin-bottom: 10px; transition: color .2s; line-height: 1.4; }
.f-col a:hover { color: rgba(255,255,255,.85); }
.f-badges { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 16px; }
.fbadge { font-size: 10px; font-weight: 600; padding: 4px 10px; border-radius: 4px; background: rgba(255,255,255,.05); color: rgba(255,255,255,.3); border: 1px solid rgba(255,255,255,.08); letter-spacing: .5px; }
.f-btm { border-top: 1px solid rgba(255,255,255,.06); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.f-btm p { font-size: 12px; color: rgba(255,255,255,.22); }

/* ── FLOATING WA ── */
.wa-float {
  position: fixed; bottom: 22px; right: 22px; z-index: 200;
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: all .2s;
  animation: wap 3s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.08); animation: none; box-shadow: 0 6px 28px rgba(37,211,102,.5); }
@keyframes wap {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); }
  50%      { box-shadow: 0 4px 30px rgba(37,211,102,.55), 0 0 0 6px rgba(37,211,102,.08); }
}

/* ── STICKY MOBILE ── */
.sticky-mob {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: #fff; border-top: 1px solid var(--border);
  padding: 10px 14px; gap: 8px;
}
.sticky-mob a {
  flex: 1; display: flex; align-items: center; justify-content: center;
  gap: 7px; padding: 13px; border-radius: 8px;
  font-weight: 700; font-size: 14px; min-height: 48px;
}
.sm-tel { background: var(--off); color: var(--navy); border: 1.5px solid var(--border); }
.sm-wa  { background: var(--green); color: #fff; }

/* ── CTA BAND (commun) ── */
.s-cta {
  background: var(--navy);
  padding: 72px 0;
  border-top: 3px solid var(--orange);
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-left h2 { color: #fff; margin-bottom: 8px; }
.cta-left p  { font-size: 16px; color: rgba(255,255,255,.5); }
.cta-btns    { display: flex; gap: 10px; flex-wrap: wrap; flex-shrink: 0; }

/* ── RESPONSIVE COMMUN ── */
@media (max-width: 1024px) {
  nav { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .cta-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .wa-float { display: none; }
  .sticky-mob { display: flex; }
  body { padding-bottom: 72px; }
}
@media (max-width: 640px) {
  .hdr { height: 58px; }
  .hdr-tel { display: none; }
  .f-btm { flex-direction: column; text-align: center; }
}
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; border-radius: 4px; }
