:root {
  --navy: #1565C0;
  --navy-light: #1E88E5;
  --green: #2E8B57;
  --green-light: #3aad6e;
  --gold: #C9A84C;
  --white: #ffffff;
  --off-white: #F8FAFF;
  --gray: #6B7A99;
  --border: #E4EAF5;
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: #1a2340;
  overflow-x: hidden;
}

/* ══ NAVBAR ══ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-icon {
  width: 150px; height: 86px;
  border-radius: 0;
  border: none;
  display: flex; align-items: center; justify-content: flex-start;
  background: none;
  flex-shrink: 0;
  padding: 0;
}
.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}
.nav-logo-text { line-height: 1.2; }
.nav-logo-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.nav-logo-text span {
  font-size: 10.5px;
  color: var(--green);
  font-weight: 500;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: 0.3px;
  opacity: 0.75;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { opacity: 1; color: var(--green); }

.nav-cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  opacity: 1 !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--green) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  background: none;
  border: none;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--navy); border-radius: 2px; }

/* ══ PAGE HERO BAND (sous-pages) ══ */
.page-hero {
  position: relative;
  padding: 130px 8% 50px;
  background: var(--off-white);
  overflow: hidden;
  max-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46,139,87,0.06) 0%, transparent 70%);
}
.page-hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(248,250,255,0.97) 0%, rgba(248,250,255,0.88) 45%, rgba(248,250,255,0.55) 100%);
  z-index: 0;
}
.page-hero > * { position: relative; z-index: 1; }
.page-hero .breadcrumb {
  font-size: 11px;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.page-hero .breadcrumb a { color: var(--gray); text-decoration: none; }
.page-hero h1 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  font-size: 40px;
  color: var(--navy);
  line-height: 1.25;
  position: relative;
}
.page-hero h1 em { font-style: normal; color: var(--green); }
.page-hero p.lead {
  font-size: 15px;
  color: var(--gray);
  max-width: 600px;
  margin-top: 16px;
  line-height: 1.7;
  position: relative;
}

/* ══ SECTION WRAPPER ══ */
section { padding: 55px 8%; }
.section-eyebrow {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  font-size: 34px;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 16px;
}
.section-title em { font-style: normal; color: var(--green); }
.section-desc {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.75;
  max-width: 560px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  padding: 17px 34px;
  border-radius: 50px;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
  letter-spacing: 0.3px;
  box-shadow: 0 10px 28px -6px rgba(13,43,94,0.45), inset 0 1px 0 rgba(255,255,255,0.15);
  border: none;
}
.btn-primary:hover { background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%); transform: translateY(-3px); box-shadow: 0 16px 32px -6px rgba(46,139,87,0.5), inset 0 1px 0 rgba(255,255,255,0.2); }
.btn-primary:active { transform: translateY(-1px); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--navy);
  padding: 17px 34px;
  border-radius: 50px;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid var(--border);
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
}
.btn-secondary:hover { border-color: var(--navy); background: var(--navy); color: white; transform: translateY(-3px); box-shadow: 0 12px 26px -8px rgba(13,43,94,0.35); }

/* RDV genré - paire de boutons Homme/Femme */
.rdv-pair { display: flex; flex-direction: row; gap: 12px; flex-wrap: nowrap; }
.btn-rdv { display: inline-flex; align-items: center; gap: 8px; padding: 13px 20px; border-radius: 50px; font-size: 12.5px; font-weight: 700; text-decoration: none; transition: all 0.3s cubic-bezier(.4,0,.2,1); letter-spacing: 0.2px; color: white; box-shadow: 0 10px 26px -8px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.15); white-space: nowrap; }
.btn-rdv:hover { transform: translateY(-3px); }
.btn-rdv.homme { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); }
.btn-rdv.homme:hover { box-shadow: 0 14px 32px -8px rgba(21,101,192,0.5); }
.btn-rdv.femme { background: linear-gradient(135deg, #c0266a 0%, #e0508f 100%); }
.btn-rdv.femme:hover { box-shadow: 0 14px 32px -8px rgba(192,38,106,0.5); }
.btn-rdv .rdv-icon { width: 20px; height: 20px; flex-shrink: 0; }
.btn-rdv .rdv-text { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.2; }
.btn-rdv .rdv-text small { font-size: 9px; font-weight: 500; opacity: 0.8; text-transform: uppercase; letter-spacing: 0.5px; }
.btn-rdv .rdv-text span { font-size: 13px; font-weight: 700; }

/* ══ CARD GENERIQUE ══ */
.card-icon-box {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, #EEF6F2, #D6ECE1);
  display: flex; align-items: center; justify-content: center;
}
.card-icon-box svg { width: 26px; height: 26px; }

/* ══ FOOTER ══ */
footer {
  background: #081a3a;
  padding: 50px 8% 24px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { display: flex; align-items: flex-start; gap: 12px; }
.footer-brand-icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  padding: 8px;
}
.footer-brand-icon .logo-img { width: 100%; height: 100%; object-fit: contain; }
.footer-brand strong { display:block; font-size: 14px; color: var(--white); font-weight: 700; margin-bottom: 4px; }
.footer-brand p { font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.6; }

.footer-col h4 {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: #7EC8A0; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-left { font-size: 11px; color: rgba(255,255,255,0.35); }
.footer-hadith {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  text-align: center;
  max-width: 420px;
}
.footer-social { display: flex; gap: 10px; }
.social-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  text-decoration: none;
}
.social-icon:hover { background: var(--green); }
.social-icon svg { width: 15px; height: 15px; }

/* ══ STICKY CONTACT MOBILE ══ */
.mobile-cta-bar {
  display: none;
}

/* ══ RESPONSIVE ══ */
@media (max-width: 900px) {
  .nav-links { 
    position: fixed;
    top: 112px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 6%;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-150%);
    transition: transform 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-toggle { display: flex; }
  .nav-cta { margin-top: 6px; }

  .page-hero { padding: 100px 6% 30px; max-height: none; }
  .page-hero h1 { font-size: 30px; }
  section { padding: 50px 6%; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
}

/* ══ SOCIAL BAND ══ */
.social-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 60px 8%;
}
.social-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.social-band-eyebrow {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #7EC8A0;
  margin-bottom: 8px;
}
.social-band-title {
  font-family: 'Oswald', sans-serif;
  font-size: 36px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.social-band-sub {
  font-size: 13.5px;
  color: rgba(255,255,255,0.6);
}
.social-band-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.social-big {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 22px 28px;
  border-radius: 18px;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  transition: all 0.3s;
  min-width: 130px;
  backdrop-filter: blur(4px);
}
.social-big:hover { transform: translateY(-4px); background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.35); }
.social-big.instagram:hover { background: linear-gradient(135deg, rgba(225,48,108,0.5), rgba(193,53,132,0.5)); }
.social-big.facebook:hover { background: rgba(24,119,242,0.5); }
.social-big.tiktok:hover { background: rgba(0,0,0,0.4); }
.sb-label {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.3px;
}
.sb-handle {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}
@media (max-width: 900px) {
  .social-band-inner { flex-direction: column; align-items: flex-start; }
  .social-band-links { width: 100%; justify-content: flex-start; }
  .social-big { min-width: 100px; padding: 18px 20px; }
}
