/*
Theme Name: ICCA Assurances
Theme URI: https://icca-assurances.ci
Author: ICCA
Author URI: https://icca-assurances.ci
Description: Thème professionnel pour ICCA – Cabinet Ivoirien de Courtage et Conseils en Assurances. Couleurs cyan et vert émeraude, SEO optimisé, responsive.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: icca
Tags: responsive-layout, custom-colors, custom-logo, blog, business
*/

/* ─── VARIABLES ─── */
:root {
  --cyan:       #00AACC;
  --cyan-dark:  #0088AA;
  --cyan-deep:  #006688;
  --cyan-light: #33C2DF;
  --cyan-pale:  #E6F7FB;
  --green:      #5BBF7A;
  --green-dark: #3E9E5F;
  --green-pale: #EAF7EE;
  --white:      #ffffff;
  --off-white:  #F5FBFD;
  --slate:      #1A3A45;
  --slate-mid:  #245060;
  --text:       #1A2F38;
  --text-muted: #5A7A85;
  --border:     rgba(0,170,204,0.12);
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; transition: color 0.2s; }
ul { list-style: none; }

/* ─── TYPOGRAPHY ─── */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Playfair Display', serif;
  color: var(--slate);
  line-height: 1.2;
}
p { line-height: 1.75; }

/* ─── LAYOUT ─── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
section { padding: 5.5rem 0; }
.section-inner { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }

/* ─── SHARED COMPONENTS ─── */
.section-tag {
  display: inline-block;
  background: var(--cyan-pale);
  color: var(--cyan-dark);
  font-size: 12px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 16px; border-radius: 50px; margin-bottom: 0.75rem;
}
.section-tag.green-tag { background: var(--green-pale); color: var(--green-dark); }
.section-title {
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 16px; color: var(--text-muted);
  line-height: 1.75; max-width: 560px;
}
.section-header { margin-bottom: 3.5rem; }
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }
.divider {
  width: 48px; height: 3px; border-radius: 3px; margin: 1rem 0;
  background: linear-gradient(90deg, var(--cyan), var(--green));
}
.text-center .divider { margin: 1rem auto; }

/* ─── BUTTONS ─── */
.btn-cyan {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
  color: white; padding: 15px 30px; border-radius: 50px;
  font-size: 15px; font-weight: 600; font-family: inherit;
  transition: all 0.25s; border: none; cursor: pointer;
  box-shadow: 0 6px 25px rgba(0,170,204,0.35);
}
.btn-cyan:hover { transform: translateY(-3px); color: white; box-shadow: 0 10px 35px rgba(0,170,204,0.45); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid rgba(255,255,255,0.25); color: white;
  padding: 15px 30px; border-radius: 50px;
  font-size: 15px; font-weight: 500; transition: all 0.25s;
}
.btn-ghost:hover { border-color: var(--cyan-light); color: var(--cyan-light); }
.btn-green {
  display: inline-flex; align-items: center; gap: 10px; justify-content: center;
  background: #25D366; color: white; padding: 15px 24px;
  border-radius: 14px; font-weight: 700; font-size: 15px;
  transition: all 0.2s; box-shadow: 0 6px 20px rgba(37,211,102,0.3);
}
.btn-green:hover { background: #1ebe5d; transform: translateY(-2px); color: white; }

/* ─── NAVIGATION ─── */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(0,170,204,0.08);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 74px;
}
.site-logo img { height: 52px; width: auto; }
.site-logo a { display: block; }
#primary-nav ul { display: flex; align-items: center; gap: 2rem; }
#primary-nav ul li a {
  color: var(--text-muted); font-size: 15px; font-weight: 500;
  position: relative; padding: 4px 0;
}
#primary-nav ul li a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px; background: var(--cyan); border-radius: 2px;
  transform: scaleX(0); transition: transform 0.2s;
}
#primary-nav ul li a:hover,
#primary-nav ul li.current-menu-item a { color: var(--cyan); }
#primary-nav ul li a:hover::after,
#primary-nav ul li.current-menu-item a::after { transform: scaleX(1); }
#primary-nav ul li.menu-cta a {
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
  color: white !important; padding: 10px 22px;
  border-radius: 50px; font-size: 14px; font-weight: 600;
  box-shadow: 0 4px 15px rgba(0,170,204,0.3);
}
#primary-nav ul li.menu-cta a::after { display: none; }
#primary-nav ul li.menu-cta a:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,170,204,0.4); }
.menu-toggle-btn {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.menu-toggle-btn span { display: block; width: 24px; height: 2px; background: var(--cyan); border-radius: 2px; }

/* ─── HERO ─── */
.hero-section {
  min-height: 100vh; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--slate) 0%, var(--slate-mid) 50%, #1a6a82 100%);
  display: flex; align-items: center; padding: 100px 2rem 6rem;
}
.hero-wave {
  position: absolute; bottom: 0; left: 0; right: 0; height: 120px;
  background: var(--white); clip-path: ellipse(55% 100% at 50% 100%);
}
.hero-circles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-circles::before {
  content: ''; position: absolute; width: 600px; height: 600px; border-radius: 50%;
  border: 1px solid rgba(0,170,204,0.15); top: -100px; right: -100px;
}
.hero-circles::after {
  content: ''; position: absolute; width: 400px; height: 400px; border-radius: 50%;
  border: 1px solid rgba(91,191,122,0.12); bottom: 50px; left: -80px;
}
.hero-glow {
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,170,204,0.18) 0%, transparent 70%);
  top: 10%; right: 5%; pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 2; max-width: 1280px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 5rem; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(91,191,122,0.4); background: rgba(91,191,122,0.1);
  color: #7DD99A; font-size: 12px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 50px; margin-bottom: 1.5rem;
}
.hero-eyebrow::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.hero-section h1 {
  font-size: clamp(2.4rem, 4vw, 3.8rem); color: white; margin-bottom: 1.5rem;
}
.hero-section h1 .accent-cyan { color: var(--cyan-light); }
.hero-section h1 .accent-green { color: #7DD99A; }
.hero-slogans { margin: 1.5rem 0 2rem; }
.slogan-item {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.88); font-size: 15px;
}
.slogan-item:last-child { border-bottom: none; }
.slogan-dot {
  flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 15px;
}
.slogan-dot.c { background: rgba(0,170,204,0.2); border: 1px solid rgba(0,170,204,0.3); }
.slogan-dot.n { background: rgba(91,191,122,0.2); border: 1px solid rgba(91,191,122,0.3); }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-panel {
  background: rgba(255,255,255,0.06); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12); border-radius: 24px; padding: 2rem;
}
.hero-panel-logo { text-align: center; margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.hero-panel-logo img { height: 80px; width: auto; margin: 0 auto; filter: brightness(0) invert(1); opacity: 0.9; }
.panel-tagline { color: rgba(255,255,255,0.6); font-size: 13px; margin-top: 8px; letter-spacing: 0.5px; }
.hero-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.5rem; }
.hero-stat-box {
  background: rgba(255,255,255,0.07); border-radius: 14px; padding: 1.2rem;
  text-align: center; border: 1px solid rgba(255,255,255,0.08);
}
.hero-stat-num {
  font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700;
  background: linear-gradient(135deg, var(--cyan-light), #7DD99A);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1;
}
.hero-stat-lab { font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 4px; }
.hero-rccm {
  display: flex; align-items: center; gap: 10px;
  background: rgba(91,191,122,0.12); border: 1px solid rgba(91,191,122,0.25);
  border-radius: 12px; padding: 10px 14px;
}
.hero-rccm span { font-size: 20px; }
.hero-rccm p { font-size: 11px; color: #7DD99A; font-weight: 600; letter-spacing: 0.5px; }
.hero-rccm small { font-size: 10px; color: rgba(255,255,255,0.4); display: block; margin-top: 1px; }

/* ─── STATS BAR ─── */
.stats-bar { background: var(--white); padding: 2.5rem 2rem; border-bottom: 1px solid var(--border); }
.stats-bar-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; }
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Playfair Display', serif; font-size: 2.6rem; font-weight: 700;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1;
}
.stat-lab { font-size: 13px; color: var(--text-muted); margin-top: 4px; }

/* ─── SERVICES ─── */
.services-section { background: var(--off-white); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px,1fr)); gap: 1.5rem; }
.service-card {
  background: white; border-radius: 20px; overflow: hidden;
  border: 1px solid var(--border); transition: all 0.3s; display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-7px); box-shadow: 0 24px 60px rgba(0,170,204,0.13); border-color: var(--cyan); }
.service-card-accent { height: 4px; }
.acc-cyan  { background: linear-gradient(90deg, var(--cyan), var(--cyan-light)); }
.acc-green { background: linear-gradient(90deg, var(--green), #7DD99A); }
.acc-teal  { background: linear-gradient(90deg, var(--cyan-dark), var(--cyan)); }
.acc-mix   { background: linear-gradient(90deg, var(--green), var(--cyan)); }
.service-card-body { padding: 1.75rem; flex: 1; }
.svc-icon { width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 1.25rem; }
.svc-icon.cyan  { background: var(--cyan-pale); }
.svc-icon.green { background: var(--green-pale); }
.service-card h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.service-card p  { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 1rem; }
.service-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 1.25rem; }
.stag { font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 50px; border: 1px solid; }
.stag.c { color: var(--cyan-dark); background: var(--cyan-pale); border-color: rgba(0,170,204,0.2); }
.stag.g { color: var(--green-dark); background: var(--green-pale); border-color: rgba(91,191,122,0.2); }
.service-link { font-size: 14px; font-weight: 600; color: var(--cyan); display: inline-flex; align-items: center; gap: 6px; transition: gap 0.2s; }
.service-link:hover { gap: 10px; color: var(--cyan-dark); }

/* ─── POURQUOI ─── */
.why-section { background: white; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.why-visual-card {
  background: linear-gradient(145deg, var(--slate), var(--slate-mid));
  border-radius: 24px; padding: 2.5rem; position: relative; overflow: hidden;
}
.why-visual-card::before {
  content: ''; position: absolute; width: 300px; height: 300px; border-radius: 50%;
  border: 1px solid rgba(0,170,204,0.12); top: -80px; right: -80px;
}
.why-step { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.75rem; position: relative; }
.why-step:not(:last-child)::after {
  content: ''; position: absolute; left: 19px; top: 42px; bottom: -1.75rem;
  width: 1px; background: rgba(0,170,204,0.2);
}
.why-step:last-child { margin-bottom: 0; }
.why-step-num {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px; color: white; position: relative; z-index: 1;
}
.why-step h4 { color: white; font-size: 15px; font-weight: 600; margin-bottom: 3px; }
.why-step p  { color: rgba(255,255,255,0.55); font-size: 13px; line-height: 1.6; }
.why-points li { display: flex; align-items: flex-start; gap: 14px; padding: 1.25rem 0; border-bottom: 1px solid rgba(0,170,204,0.08); }
.why-points li:last-child { border-bottom: none; }
.why-check-box { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; background: var(--cyan-pale); display: flex; align-items: center; justify-content: center; color: var(--cyan); font-size: 13px; font-weight: 700; margin-top: 2px; }
.why-pt { font-weight: 600; color: var(--slate); font-size: 15px; margin-bottom: 3px; }
.why-pd { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ─── À PROPOS ─── */
.about-section { background: var(--off-white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-visual-wrap { position: relative; }
.about-main-card {
  background: linear-gradient(145deg, var(--slate), var(--cyan-deep));
  border-radius: 24px; padding: 3rem; text-align: center; overflow: hidden; position: relative;
}
.about-main-card::before { content: ''; position: absolute; width: 250px; height: 250px; border-radius: 50%; border: 1px solid rgba(0,170,204,0.15); bottom: -60px; right: -60px; }
.about-logo-display { position: relative; z-index: 1; }
.about-logo-display img { height: 100px; width: auto; margin: 0 auto; filter: brightness(0) invert(1); opacity: 0.95; }
.about-logo-sub { color: rgba(255,255,255,0.55); font-size: 13px; margin-top: 8px; }
.about-float-badge { position: absolute; background: white; border-radius: 16px; padding: 14px 18px; box-shadow: 0 16px 40px rgba(0,170,204,0.15); }
.about-float-badge.tl { top: -18px; left: -18px; }
.about-float-badge.br { bottom: -18px; right: -18px; }
.fb-num { font-family: 'Playfair Display', serif; font-size: 1.7rem; font-weight: 700; color: var(--cyan); line-height: 1; }
.fb-lbl { font-size: 11px; color: var(--text-muted); }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.av-card { background: white; border-radius: 14px; padding: 1.25rem; border: 1px solid var(--border); transition: border-color 0.2s; }
.av-card:hover { border-color: var(--cyan); }
.av-icon { font-size: 22px; margin-bottom: 0.5rem; }
.av-card h4 { font-size: 14px; font-weight: 600; margin-bottom: 4px; font-family: 'Outfit', sans-serif; }
.av-card p  { font-size: 13px; color: var(--text-muted); line-height: 1.55; }
.rccm-strip { display: flex; align-items: center; gap: 14px; background: var(--slate); border-radius: 14px; padding: 1rem 1.5rem; margin-top: 1.75rem; }
.rccm-strip-icon { font-size: 28px; }
.rccm-strip p { font-size: 11px; color: rgba(255,255,255,0.4); letter-spacing: 1px; text-transform: uppercase; }
.rccm-strip strong { color: white; font-size: 14px; display: block; margin-top: 2px; }

/* ─── BLOG ─── */
.blog-section { background: white; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 1.5rem; }
.blog-card { border-radius: 20px; border: 1px solid var(--border); overflow: hidden; transition: all 0.3s; background: white; }
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,170,204,0.1); border-color: var(--cyan); }
.blog-card-img { height: 8px; background: linear-gradient(90deg, var(--cyan), var(--green)); }
.blog-card-body { padding: 1.5rem 1.75rem; }
.blog-cat-pill { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--cyan-dark); background: var(--cyan-pale); padding: 3px 12px; border-radius: 50px; margin-bottom: 0.75rem; }
.blog-cat-pill.g { color: var(--green-dark); background: var(--green-pale); }
.blog-date { font-size: 12px; color: var(--text-muted); margin-bottom: 0.5rem; }
.blog-card h3 { font-size: 1.1rem; line-height: 1.4; margin-bottom: 0.75rem; }
.blog-card p  { font-size: 13px; color: var(--text-muted); line-height: 1.65; margin-bottom: 1.25rem; }
.blog-card-footer { padding: 0 1.75rem 1.5rem; display: flex; align-items: center; justify-content: space-between; }
.blog-read { font-size: 13px; font-weight: 600; color: var(--cyan); }
.blog-read:hover { color: var(--cyan-dark); }
.blog-mins { font-size: 12px; color: var(--text-muted); }

/* ─── TÉMOIGNAGES ─── */
.temoignages-section {
  background: linear-gradient(135deg, var(--slate) 0%, var(--slate-mid) 60%, var(--cyan-deep) 100%);
  padding: 5.5rem 2rem; position: relative; overflow: hidden;
}
.temoignages-section::before { content: ''; position: absolute; width: 500px; height: 500px; border-radius: 50%; border: 1px solid rgba(0,170,204,0.1); top: -150px; right: -100px; }
.temoignages-section .section-title { color: white; }
.temoignages-section .section-sub  { color: rgba(255,255,255,0.6); }
.temoignages-section .section-tag  { color: var(--cyan-light); background: rgba(0,170,204,0.15); }
.temo-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 1.5rem; margin-top: 3rem; }
.temo-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 1.75rem; transition: border-color 0.3s; }
.temo-card:hover { border-color: rgba(0,170,204,0.4); }
.temo-stars { color: #FFD166; font-size: 16px; letter-spacing: 3px; margin-bottom: 1rem; }
.temo-card blockquote { color: rgba(255,255,255,0.8); font-size: 14px; line-height: 1.75; font-style: italic; margin-bottom: 1.25rem; }
.temo-author { display: flex; align-items: center; gap: 12px; }
.temo-av { width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; background: linear-gradient(135deg, var(--cyan), var(--green)); display: flex; align-items: center; justify-content: center; font-weight: 700; color: white; font-size: 15px; }
.temo-name { font-weight: 600; color: white; font-size: 14px; }
.temo-role { font-size: 12px; color: rgba(255,255,255,0.45); }

/* ─── DEVIS ─── */
.devis-section { background: var(--off-white); }
.devis-wrap { background: linear-gradient(135deg, var(--cyan-dark), var(--slate-mid)); border-radius: 28px; padding: 3.5rem; position: relative; overflow: hidden; }
.devis-wrap::before { content: ''; position: absolute; width: 400px; height: 400px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.08); top: -100px; right: -60px; }
.devis-header { text-align: center; margin-bottom: 2.5rem; position: relative; z-index: 1; }
.devis-header h2 { font-size: 2.2rem; color: white; margin-bottom: 0.5rem; }
.devis-header p { color: rgba(255,255,255,0.7); font-size: 16px; }
.devis-form { background: white; border-radius: 20px; padding: 2.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; position: relative; z-index: 1; }
.fg { display: flex; flex-direction: column; gap: 6px; }
.fg.full { grid-column: 1 / -1; }
.fg label { font-size: 13px; font-weight: 600; color: var(--slate); }
.fg input, .fg select, .fg textarea { border: 1.5px solid rgba(0,170,204,0.2); border-radius: 10px; padding: 12px 14px; font-size: 14px; font-family: inherit; color: var(--text); background: var(--off-white); outline: none; transition: border-color 0.2s, background 0.2s; }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--cyan); background: white; box-shadow: 0 0 0 3px rgba(0,170,204,0.08); }
.fg textarea { resize: vertical; min-height: 80px; }
.btn-submit { grid-column: 1/-1; background: linear-gradient(135deg, var(--cyan), var(--cyan-dark)); color: white; border: none; border-radius: 12px; padding: 15px; font-size: 15px; font-weight: 600; cursor: pointer; font-family: inherit; transition: all 0.2s; box-shadow: 0 6px 20px rgba(0,170,204,0.3); }
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,170,204,0.4); }
.wpcf7-response-output { grid-column: 1/-1; padding: 1rem; border-radius: 10px; font-size: 14px; }

/* ─── CONTACT ─── */
.contact-section { background: white; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact-cards { display: flex; flex-direction: column; gap: 1rem; }
.ccard { background: var(--off-white); border-radius: 16px; padding: 1.25rem 1.5rem; border: 1px solid var(--border); display: flex; align-items: center; gap: 14px; transition: border-color 0.2s, box-shadow 0.2s; }
.ccard:hover { border-color: var(--cyan); box-shadow: 0 8px 25px rgba(0,170,204,0.08); }
.ccard-icon { width: 48px; height: 48px; border-radius: 14px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.ccard-icon.c { background: var(--cyan-pale); }
.ccard-icon.g { background: var(--green-pale); }
.ccard h4 { font-size: 12px; color: var(--text-muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; font-family: 'Outfit', sans-serif; }
.ccard p, .ccard a { font-size: 15px; font-weight: 600; color: var(--slate); }
.ccard a:hover { color: var(--cyan); }
.map-box { background: linear-gradient(145deg, var(--slate), var(--slate-mid)); border-radius: 20px; padding: 3rem; text-align: center; color: white; min-height: 220px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.75rem; margin-bottom: 1rem; }
.map-box p { color: rgba(255,255,255,0.65); font-size: 14px; line-height: 1.6; }
.hours-card { background: var(--off-white); border-radius: 16px; padding: 1.5rem; border: 1px solid var(--border); }
.hours-card h4 { margin-bottom: 1rem; }
.hour-row { display: flex; justify-content: space-between; font-size: 14px; padding: 8px 0; border-bottom: 1px solid var(--border); }
.hour-row:last-child { border-bottom: none; }
.hour-row span   { color: var(--text-muted); }
.hour-row .open  { color: var(--cyan-dark); font-weight: 600; }
.hour-row .rdv   { color: var(--green-dark); font-weight: 600; }
.hour-row .closed { color: #e11d48; font-weight: 600; }

/* ─── FOOTER ─── */
#site-footer {
  background: var(--slate); color: white; padding: 4rem 2rem 0;
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--cyan), var(--green)) 1;
}
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; }
.footer-brand img { height: 58px; width: auto; filter: brightness(0) invert(1); opacity: 0.9; margin-bottom: 1rem; }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 14px; line-height: 1.75; margin-bottom: 1.25rem; }
.footer-socials { display: flex; gap: 10px; }
.fsoc { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); font-size: 13px; font-weight: 700; text-decoration: none; transition: all 0.2s; }
.fsoc:hover { background: var(--cyan); border-color: var(--cyan); color: white; }
.footer-col h5 { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 1.25rem; font-family: 'Outfit', sans-serif; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { color: rgba(255,255,255,0.6); font-size: 14px; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--cyan-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 1.5rem 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-tagline { color: var(--cyan-light) !important; font-style: italic; font-weight: 500 !important; }
.rccm-pill { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); border-radius: 50px; padding: 5px 14px; font-size: 11px; color: rgba(255,255,255,0.35); }

/* ─── WORDPRESS NATIVE ─── */
.wp-block-image { margin: 1.5rem 0; }
.aligncenter { text-align: center; }
.wp-caption { max-width: 100%; }
.wp-pagenavi { text-align: center; margin: 2rem 0; }
.wp-pagenavi a, .wp-pagenavi span { padding: 8px 14px; border: 1px solid var(--border); border-radius: 8px; margin: 0 3px; font-size: 14px; color: var(--cyan); }
.wp-pagenavi .current { background: var(--cyan); color: white; border-color: var(--cyan); }
.entry-content h2 { font-size: 1.8rem; margin: 2rem 0 1rem; }
.entry-content p  { margin-bottom: 1rem; }
.entry-content ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.entry-content ul li { margin-bottom: 0.5rem; }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow { animation: fadeUp 0.6s ease both; }
.hero-section h1 { animation: fadeUp 0.7s 0.1s ease both; }
.hero-slogans    { animation: fadeUp 0.7s 0.2s ease both; }
.hero-actions    { animation: fadeUp 0.7s 0.3s ease both; }
.hero-panel      { animation: fadeUp 0.8s 0.25s ease both; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-inner, .why-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-panel { display: none; }
  .stats-bar-inner { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-values { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  #primary-nav ul { display: none; flex-direction: column; gap: 0; position: absolute; top: 74px; left: 0; right: 0; background: rgba(255,255,255,0.98); border-bottom: 1px solid var(--border); padding: 1rem 2rem; }
  #primary-nav ul.open { display: flex; }
  #primary-nav ul li a { padding: 12px 0; border-bottom: 1px solid var(--border); display: block; }
  #primary-nav ul li.menu-cta { margin-top: 0.75rem; }
  .menu-toggle-btn { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .devis-form { grid-template-columns: 1fr; }
  .devis-wrap { padding: 2rem 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-section { padding-top: 110px; }
  .about-values { grid-template-columns: 1fr; }
  .stats-bar-inner { grid-template-columns: 1fr 1fr; }
}
