/* ============================================================
   CENTRE DENTAIRE AVENUE — main.css
   Premium dental theme — SEO optimized, no dependencies
   ============================================================ */

/* ---- FONTS ---- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ---- TOKENS ---- */
:root {
  --navy:       #0D1B2A;
  --navy-soft:  #162236;
  --navy-mid:   #1E2F45;
  --teal:       #1BADA6;
  --teal-light: #25C9C1;
  --teal-dim:   rgba(27,173,166,0.13);
  --gold:       #C9973B;
  --gold-light: #E6B45A;
  --white:      #FFFFFF;
  --off-white:  #F7F5F0;
  --gray-100:   #EEF0F2;
  --gray-300:   #B8BCC4;
  --gray-500:   #6B7280;
  --text:       #1A1F2E;
  --radius:     16px;
  --radius-sm:  10px;
  --radius-pill:50px;
  --shadow-sm:  0 4px 16px rgba(0,0,0,0.06);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.1);
  --shadow-lg:  0 16px 56px rgba(0,0,0,0.14);
}

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

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar{width:5px}
::-webkit-scrollbar-track{background:var(--navy)}
::-webkit-scrollbar-thumb{background:var(--teal);border-radius:3px}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(13,27,42,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(27,173,166,0.18);
  transition: all .3s;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 24px;
}
.site-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px; font-weight: 600; color: var(--white);
  display: flex; align-items: center; gap: 10px;
}
.site-logo span { color: var(--teal); }
.logo-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,100%{box-shadow:0 0 0 0 rgba(27,173,166,.5)}
  50%{box-shadow:0 0 0 6px rgba(27,173,166,0)}
}
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  font-size: 13px; font-weight: 500; color: var(--gray-300);
  padding: 7px 13px; border-radius: var(--radius-pill);
  transition: all .2s; border: 1px solid transparent;
}
.main-nav a:hover,
.main-nav a.current-menu-item,
.main-nav a.current_page_item {
  color: var(--white);
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.1);
}
.nav-rdv {
  background: var(--teal); color: var(--white) !important;
  font-size: 13px; font-weight: 600;
  padding: 9px 22px !important; border-radius: var(--radius-pill) !important;
  box-shadow: 0 4px 16px rgba(27,173,166,.3);
  border: none !important; transition: all .2s !important;
}
.nav-rdv:hover { background: var(--teal-light) !important; transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px; transition: .3s;
}
.hamburger.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.hamburger.open span:nth-child(2){opacity:0}
.hamburger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* Mobile nav */
.mobile-nav {
  display: none; flex-direction: column;
  background: rgba(13,27,42,.99);
  padding: 20px 24px 32px;
  border-top: 1px solid rgba(255,255,255,.07);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 16px; font-weight: 500; color: var(--gray-300);
  padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color .2s;
}
.mobile-nav a:hover { color: var(--white); }
.mobile-nav .nav-rdv {
  margin-top: 16px; text-align: center;
  padding: 14px !important; border-radius: var(--radius-pill) !important;
}

/* ============================================================
   MAIN CONTENT OFFSET
   ============================================================ */
.site-main { padding-top: 72px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius-pill);
  font-size: 14px; font-weight: 600; font-family: 'DM Sans', sans-serif;
  transition: all .25s; cursor: pointer; border: none; text-decoration: none;
  white-space: nowrap;
}
.btn-primary { background: var(--teal); color: var(--white); box-shadow: 0 8px 28px rgba(27,173,166,.3); }
.btn-primary:hover { background: var(--teal-light); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(27,173,166,.4); color: var(--white); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.22); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.06); color: var(--white); }
.btn-gold { background: var(--gold); color: var(--white); box-shadow: 0 8px 24px rgba(201,151,59,.35); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); color: var(--white); }
.btn-dark { background: var(--navy); color: var(--white); border: 1px solid rgba(255,255,255,.1); }
.btn-dark:hover { background: var(--navy-soft); color: var(--white); }

/* ============================================================
   SECTION UTILITIES
   ============================================================ */
.section { padding: 88px 24px; }
.section-sm { padding: 56px 24px; }
.container { max-width: 1200px; margin: 0 auto; }
.container-sm { max-width: 860px; margin: 0 auto; }

.bg-white  { background: var(--white); }
.bg-off    { background: var(--off-white); }
.bg-navy   { background: var(--navy); }
.bg-navy-s { background: var(--navy-soft); }

.s-label {
  font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 10px; display: block;
}
.s-label-light { color: var(--teal-light); }
.s-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.8vw, 44px); line-height: 1.15; font-weight: 700;
  color: var(--navy); margin-bottom: 14px;
}
.s-title-w { color: var(--white); }
.s-sub { font-size: 16px; color: var(--gray-500); max-width: 560px; line-height: 1.75; font-weight: 300; }
.s-sub-light { color: var(--gray-300); }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--navy-soft);
  border-top: 1px solid rgba(27,173,166,.15);
  border-bottom: 1px solid rgba(27,173,166,.15);
  padding: 18px 24px;
  display: flex; justify-content: center; flex-wrap: wrap; gap: 28px;
}
.t-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gray-300); }
.t-item strong { color: var(--white); font-size: 14px; }
.t-dot { color: var(--teal); font-size: 15px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: calc(100vh - 72px);
  background: var(--navy);
  background-image:
    radial-gradient(ellipse 70% 60% at 75% 50%, rgba(27,173,166,.1) 0%, transparent 65%),
    radial-gradient(ellipse 50% 70% at 5% 90%, rgba(201,151,59,.07) 0%, transparent 55%);
  display: flex; align-items: center;
  padding: 60px 24px; position: relative; overflow: hidden;
}
.hero-decor {
  position: absolute; right: -100px; top: 50%; transform: translateY(-50%);
  width: 600px; height: 600px; border-radius: 50%;
  border: 1px solid rgba(27,173,166,.08); pointer-events: none;
}
.hero-decor::before {
  content: ''; position: absolute; inset: 40px; border-radius: 50%;
  border: 1px solid rgba(27,173,166,.05);
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 400px; gap: 64px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(27,173,166,.1); border: 1px solid rgba(27,173,166,.25);
  color: var(--teal-light); font-size: 11px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 14px; border-radius: var(--radius-pill); margin-bottom: 24px;
}
.hero-badge::before { content: '●'; font-size: 7px; animation: pulse-dot 2s infinite; }
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 5.5vw, 64px); color: var(--white);
  line-height: 1.1; margin-bottom: 20px; font-weight: 700;
}
.hero h1 em { font-style: italic; color: var(--teal); }
.hero-sub { font-size: 17px; color: var(--gray-300); max-width: 500px; line-height: 1.75; margin-bottom: 16px; font-weight: 300; }
.hero-rating { display: flex; align-items: center; gap: 10px; margin-bottom: 36px; }
.stars { color: var(--gold); font-size: 18px; letter-spacing: 3px; }
.rating-text { font-size: 13px; color: var(--gray-300); }
.rating-text strong { color: var(--white); }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero contact card */
.hero-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px; padding: 28px;
  backdrop-filter: blur(12px);
}
.hero-card-title {
  font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 18px;
}
.urgency-pill {
  background: rgba(201,151,59,.12); border: 1px solid rgba(201,151,59,.25);
  color: var(--gold-light); font-size: 12px; font-weight: 600;
  padding: 8px 14px; border-radius: 8px; margin-bottom: 18px;
  display: flex; align-items: center; gap: 8px;
}
.urgency-pill::before { content: '🚨'; font-size: 13px; }
.c-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.06);
}
.c-item:last-child { border-bottom: none; }
.c-icon {
  width: 34px; height: 34px; border-radius: 9px;
  background: rgba(27,173,166,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; flex-shrink: 0;
}
.c-label { font-size: 10px; color: var(--gray-300); text-transform: uppercase; letter-spacing: .06em; }
.c-val { font-size: 13px; color: var(--white); font-weight: 500; }
.c-val a { color: var(--teal-light); }

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.page-header {
  background: var(--navy);
  background-image: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(27,173,166,.1) 0%, transparent 65%);
  padding: 72px 24px 56px; text-align: center;
}
.page-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 5vw, 58px); color: var(--white); font-weight: 700; margin-bottom: 14px;
}
.page-header h1 span { color: var(--teal); }
.page-header p { font-size: 16px; color: var(--gray-300); max-width: 580px; margin: 0 auto; font-weight: 300; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  justify-content: center; font-size: 12px; color: var(--gray-500); margin-bottom: 20px;
}
.breadcrumb a { color: var(--gray-500); transition: color .2s; }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb span { color: var(--teal); }

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; margin-top: 48px; }
.svc-card {
  background: var(--white); border-radius: var(--radius); padding: 28px;
  border: 1px solid var(--gray-100);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(27,173,166,.25); }
.svc-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--teal-dim);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 18px;
}
.svc-card h3 { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.svc-card p { font-size: 13px; color: var(--gray-500); line-height: 1.7; }
.svc-tag {
  display: inline-block; margin-top: 14px; font-size: 11px; font-weight: 600;
  color: var(--teal); background: var(--teal-dim); padding: 4px 10px; border-radius: var(--radius-pill);
}
.svc-link {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 14px; font-size: 12px; font-weight: 600; color: var(--teal);
  transition: gap .2s;
}
.svc-link:hover { gap: 9px; }

/* Full service cards */
.services-full { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; margin-top: 48px; }
.svc-full-card {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--gray-100); overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.svc-full-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.svc-full-header {
  background: var(--navy); padding: 22px;
  display: flex; align-items: center; gap: 14px;
}
.svc-full-icon { width: 46px; height: 46px; border-radius: 12px; background: var(--teal-dim); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.svc-full-title { font-size: 16px; font-weight: 600; color: var(--white); }
.svc-full-sub { font-size: 11px; color: var(--gray-300); margin-top: 2px; }
.svc-full-body { padding: 22px; }
.svc-full-body ul { display: flex; flex-direction: column; gap: 10px; }
.svc-full-body ul li { font-size: 13px; color: var(--gray-500); display: flex; gap: 10px; align-items: flex-start; }
.svc-full-body ul li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.svc-rdv {
  display: block; margin: 16px 22px 22px; text-align: center;
  background: var(--teal); color: white; padding: 12px;
  border-radius: var(--radius-pill); font-size: 13px; font-weight: 600;
  transition: background .2s;
}
.svc-rdv:hover { background: var(--teal-light); color: white; }

/* ============================================================
   WHY US
   ============================================================ */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-top: 48px; }
.why-list { display: flex; flex-direction: column; gap: 22px; }
.why-item { display: flex; gap: 16px; }
.why-num { font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 700; color: var(--teal); line-height: 1; flex-shrink: 0; width: 40px; }
.why-item h4 { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.why-item p { font-size: 13px; color: var(--gray-500); line-height: 1.7; }
.why-visual { background: var(--navy); border-radius: 20px; padding: 36px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-box { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09); border-radius: 14px; padding: 22px; text-align: center; transition: border-color .2s; }
.stat-box:hover { border-color: rgba(27,173,166,.3); }
.stat-box.accent { background: rgba(27,173,166,.12); border-color: rgba(27,173,166,.25); }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 38px; font-weight: 700; color: var(--white); line-height: 1; }
.stat-box.accent .stat-num { color: var(--teal-light); }
.stat-lbl { font-size: 11px; color: var(--gray-300); margin-top: 6px; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-header { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 24px; margin-bottom: 48px; }
.g-badge { display: flex; align-items: center; gap: 14px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 14px; padding: 14px 20px; }
.g-score { font-size: 24px; font-weight: 700; color: var(--white); line-height: 1; }
.g-stars { color: #FBBC05; font-size: 14px; letter-spacing: 2px; }
.g-count { font-size: 11px; color: var(--gray-300); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 18px; }
.review-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09); border-radius: var(--radius); padding: 22px; transition: border-color .2s; }
.review-card:hover { border-color: rgba(27,173,166,.35); }
.r-top { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.r-avatar { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; color: white; flex-shrink: 0; }
.r-name { font-size: 13px; font-weight: 600; color: var(--white); }
.r-date { font-size: 11px; color: var(--gray-500); }
.r-stars { color: #FBBC05; font-size: 13px; letter-spacing: 1px; margin-bottom: 10px; }
.r-text { font-size: 13px; color: var(--gray-300); line-height: 1.7; }
.r-verified { display: inline-flex; align-items: center; gap: 5px; font-size: 10px; color: var(--gray-500); margin-top: 10px; }
.r-verified::before { content: '✓'; color: var(--teal); font-weight: 700; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 48px; }
.faq-item {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--gray-100); overflow: hidden;
  transition: border-color .2s;
}
.faq-item:hover { border-color: rgba(27,173,166,.25); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; cursor: pointer; gap: 16px;
  font-size: 14px; font-weight: 600; color: var(--navy);
}
.faq-q::after { content: '+'; font-size: 20px; color: var(--teal); flex-shrink: 0; transition: transform .3s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 24px 20px; font-size: 13px; color: var(--gray-500); line-height: 1.75; }
.faq-item.open .faq-a { display: block; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 48px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.contact-block { display: flex; gap: 14px; align-items: flex-start; background: var(--off-white); border-radius: var(--radius); padding: 18px; }
.cb-icon { width: 42px; height: 42px; border-radius: 12px; background: var(--teal-dim); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.cb-label { font-size: 10px; color: var(--gray-500); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px; }
.cb-val { font-size: 14px; font-weight: 500; color: var(--navy); }
.cb-val a { color: var(--teal); }
.hours-table { width: 100%; }
.hours-row { display: flex; justify-content: space-between; padding: 6px 0; border-bottom: 1px solid var(--gray-100); font-size: 13px; }
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: var(--gray-500); }
.hours-row .time { font-weight: 500; color: var(--navy); }
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.map-wrap iframe { display: block; width: 100%; height: 400px; border: none; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  border-top: 3px solid var(--teal); border-bottom: 3px solid var(--teal);
  padding: 72px 24px; text-align: center;
}
.cta-banner h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(26px, 4vw, 44px); color: var(--white); margin-bottom: 10px; font-weight: 700; }
.cta-banner h2 span { color: var(--gold-light); }
.cta-banner p { font-size: 16px; color: var(--gray-300); margin-bottom: 32px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   TREATMENT PAGES
   ============================================================ */
.treatment-hero {
  background: var(--navy); border-radius: 20px; padding: 48px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  margin-top: 48px; border: 1px solid rgba(27,173,166,.15);
}
.treatment-hero h2 { font-family: 'Cormorant Garamond', serif; font-size: 34px; color: var(--white); margin-bottom: 14px; font-weight: 700; }
.treatment-hero h2 span { color: var(--teal); }
.treatment-hero p { font-size: 14px; color: var(--gray-300); line-height: 1.75; margin-bottom: 16px; }
.treatment-steps { background: rgba(255,255,255,.04); border-radius: 16px; padding: 28px; display: flex; flex-direction: column; gap: 16px; }
.t-step { display: flex; gap: 14px; align-items: flex-start; }
.t-step-num { width: 28px; height: 28px; border-radius: 50%; background: var(--teal); color: white; font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.t-step h5 { font-size: 13px; font-weight: 600; color: var(--white); margin-bottom: 3px; }
.t-step p { font-size: 12px; color: var(--gray-300); line-height: 1.5; }

.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; margin-top: 40px; }
.benefit-card { background: var(--white); border-radius: var(--radius); padding: 24px; border: 1px solid var(--gray-100); text-align: center; transition: border-color .2s, transform .2s; }
.benefit-card:hover { border-color: rgba(27,173,166,.25); transform: translateY(-3px); }
.benefit-icon { font-size: 28px; margin-bottom: 12px; }
.benefit-card h4 { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.benefit-card p { font-size: 12px; color: var(--gray-500); line-height: 1.6; }

/* ============================================================
   URGENCES
   ============================================================ */
.urgence-sos {
  background: var(--navy); border-radius: 20px; padding: 40px;
  text-align: center; border: 2px solid rgba(27,173,166,.3);
}
.urgence-sos h3 { font-family: 'Cormorant Garamond', serif; font-size: 30px; color: var(--white); margin-bottom: 10px; }
.urgence-sos p { font-size: 15px; color: var(--gray-300); margin-bottom: 28px; }
.urgence-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 48px; }
.urgence-card { background: var(--white); border-radius: var(--radius); padding: 26px; border: 1px solid var(--gray-100); border-left: 4px solid var(--teal); transition: transform .2s, box-shadow .2s; }
.urgence-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.urgence-card.danger { border-left-color: var(--gold); }
.urgence-icon { font-size: 30px; margin-bottom: 12px; }
.urgence-card h3 { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.urgence-card p { font-size: 13px; color: var(--gray-500); line-height: 1.7; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-top: 48px; }
.about-img { background: var(--navy); border-radius: 20px; aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; font-size: 80px; overflow: hidden; }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-content h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(26px, 3.5vw, 38px); color: var(--navy); font-weight: 700; margin-bottom: 16px; line-height: 1.2; }
.about-content p { font-size: 14px; color: var(--gray-500); line-height: 1.8; margin-bottom: 14px; }
.about-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.about-tag { background: var(--teal-dim); color: var(--teal); font-size: 12px; font-weight: 600; padding: 5px 13px; border-radius: var(--radius-pill); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; margin-top: 48px; }
.team-card { background: var(--white); border-radius: var(--radius); border: 1px solid var(--gray-100); padding: 28px; text-align: center; transition: transform .2s, box-shadow .2s; }
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-avatar { width: 80px; height: 80px; border-radius: 50%; background: var(--navy); margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; font-size: 30px; border: 3px solid var(--teal-dim); overflow: hidden; }
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.team-role { font-size: 12px; color: var(--teal); font-weight: 600; margin-bottom: 10px; }
.team-desc { font-size: 13px; color: var(--gray-500); line-height: 1.6; }

/* ============================================================
   BLOG
   ============================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; margin-top: 48px; }
.blog-card { background: var(--white); border-radius: var(--radius); border: 1px solid var(--gray-100); overflow: hidden; transition: transform .25s, box-shadow .25s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-thumb { height: 200px; overflow: hidden; position: relative; background: var(--navy-mid); }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.blog-card:hover .blog-thumb img { transform: scale(1.05); }
.blog-thumb-placeholder { height: 100%; display: flex; align-items: center; justify-content: center; font-size: 48px; }
.blog-cat-badge { position: absolute; top: 14px; left: 14px; background: var(--teal); color: white; font-size: 10px; font-weight: 700; padding: 4px 10px; border-radius: var(--radius-pill); letter-spacing: .06em; text-transform: uppercase; }
.blog-body { padding: 22px; }
.blog-meta { font-size: 11px; color: var(--gray-300); margin-bottom: 8px; }
.blog-card h2, .blog-card h3 { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 8px; line-height: 1.4; }
.blog-card p { font-size: 13px; color: var(--gray-500); line-height: 1.6; }
.blog-read { display: inline-flex; align-items: center; gap: 5px; margin-top: 14px; font-size: 12px; font-weight: 600; color: var(--teal); }

/* Single post */
.post-content { max-width: 780px; margin: 0 auto; padding: 56px 24px; }
.post-content h2 { font-family: 'Cormorant Garamond', serif; font-size: 26px; color: var(--navy); margin: 32px 0 12px; font-weight: 700; }
.post-content h3 { font-size: 18px; font-weight: 600; color: var(--navy); margin: 24px 0 10px; }
.post-content p { font-size: 15px; color: var(--gray-500); line-height: 1.85; margin-bottom: 16px; }
.post-content ul { padding-left: 20px; margin-bottom: 16px; }
.post-content ul li { font-size: 15px; color: var(--gray-500); line-height: 1.7; margin-bottom: 8px; }
.post-content img { border-radius: var(--radius); margin: 24px 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy); border-top: 1px solid rgba(255,255,255,.07); padding: 64px 24px 28px; }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 21px; font-weight: 600; color: var(--white); margin-bottom: 14px; }
.footer-logo span { color: var(--teal); }
.footer-desc { font-size: 13px; color: var(--gray-500); line-height: 1.7; max-width: 260px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-btn { width: 36px; height: 36px; border-radius: 10px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; font-size: 14px; transition: background .2s; cursor: pointer; }
.social-btn:hover { background: rgba(27,173,166,.2); }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gray-300); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a, .footer-col ul li { font-size: 13px; color: var(--gray-500); transition: color .2s; }
.footer-col ul li a:hover, .footer-col ul li:hover { color: var(--teal); }
.footer-bottom { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; border-top: 1px solid rgba(255,255,255,.07); padding-top: 24px; font-size: 12px; color: var(--gray-500); }
.footer-bottom a { color: var(--teal); }

/* ============================================================
   MOBILE FLOATING CTA
   ============================================================ */
.float-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 500;
  background: var(--navy); border-top: 1px solid rgba(27,173,166,.25);
  padding: 10px 14px; grid-template-columns: 1fr 1fr; gap: 10px;
}
.float-btn { border-radius: var(--radius-pill); padding: 12px; font-size: 13px; font-weight: 700; text-align: center; display: flex; align-items: center; justify-content: center; gap: 6px; transition: opacity .2s; }
.float-wha { background: #25D366; color: white; }
.float-tel { background: var(--teal); color: white; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-in { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ============================================================
   WORDPRESS CORE FIXES
   ============================================================ */
.wp-block-image img { border-radius: var(--radius-sm); }
.aligncenter { text-align: center; margin: 0 auto; }
.screen-reader-text { position: absolute; left: -9999px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .hero-inner, .why-grid, .about-grid, .contact-grid, .treatment-hero { grid-template-columns: 1fr; }
  .hero-card, .why-visual { display: none; }
}
@media (max-width: 640px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .float-cta { display: grid; }
  body { padding-bottom: 64px; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 20px; }
  .hero-btns, .cta-btns, .urgency-btns { flex-direction: column; align-items: flex-start; }
  .cta-btns { align-items: center; }
  .treatment-hero { padding: 28px; }
  .trust-strip { gap: 16px; }
}
