/* =============================================
   VERA CONFORT À DOMICILE – VCD
   Palette: bleu ciel, vert-jaune, Tahoma
   ============================================= */

:root {
  --blue-sky: #4FC3F7;
  --blue-dark: #0277BD;
  --blue-mid: #29B6F6;
  --blue-light: #E1F5FE;
  --green-yellow: #C6E000;
  --green: #76C442;
  --green-dark: #558B2F;
  --yellow: #FFD600;
  --white: #FFFFFF;
  --gray-light: #F5F7FA;
  --gray-mid: #DDE3EA;
  --gray-dark: #4A5568;
  --text: #1A2A3A;
  --shadow: 0 4px 24px rgba(2,119,189,0.12);
  --shadow-hover: 0 8px 36px rgba(2,119,189,0.22);
  --radius: 12px;
  --radius-sm: 8px;
  --font: 'Tahoma', 'Geneva', 'Verdana', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── COOKIE BANNER ── */
#cookie-banner {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #0277BD;
  color: #fff;
  z-index: 9999;
  padding: 18px 32px;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  border-top: 4px solid var(--green-yellow);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.15);
}
#cookie-banner.visible { display: flex; }
#cookie-banner p { flex: 1; min-width: 220px; font-size: 0.93rem; }
#cookie-banner a { color: var(--green-yellow); }
.cookie-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-cookie-accept, .btn-cookie-decline {
  padding: 9px 22px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.9rem;
  transition: transform .15s;
}
.btn-cookie-accept { background: var(--green-yellow); color: #1A2A3A; }
.btn-cookie-decline { background: rgba(255,255,255,0.18); color: #fff; border: 1px solid rgba(255,255,255,0.4); }
.btn-cookie-accept:hover, .btn-cookie-decline:hover { transform: translateY(-2px); }

/* ── TOPBAR ── */
.topbar {
  background: var(--blue-dark);
  color: rgba(255,255,255,0.88);
  font-size: 0.82rem;
  padding: 6px 0;
}
.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar a { color: var(--green-yellow); text-decoration: none; }
.topbar a:hover { text-decoration: underline; }

/* ── HEADER / NAV ── */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 3px solid var(--blue-sky);
  box-shadow: var(--shadow);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-mark {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--blue-sky), var(--blue-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 900;
  font-size: 1.2rem;
  letter-spacing: -1px;
  flex-shrink: 0;
}
.logo-text span:first-child {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--blue-dark);
  line-height: 1.1;
}
.logo-text span:last-child {
  font-size: 0.72rem;
  color: var(--gray-dark);
  letter-spacing: 0.04em;
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
}
nav ul li a {
  display: block;
  padding: 8px 14px;
  text-decoration: none;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all .2s;
  white-space: nowrap;
}
nav ul li a:hover, nav ul li a.active {
  background: var(--blue-light);
  color: var(--blue-dark);
}
.btn-nav-cta {
  background: linear-gradient(90deg, var(--blue-sky), var(--blue-mid)) !important;
  color: white !important;
  padding: 9px 20px !important;
}
.btn-nav-cta:hover { opacity: .9; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(41,182,246,.35) !important; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 26px; height: 3px; background: var(--blue-dark); border-radius: 3px; transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--blue-dark) 0%, #0288D1 40%, var(--blue-sky) 100%);
  color: white;
  padding: 80px 20px 70px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(198,224,0,0.18) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -60px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(79,195,247,0.2) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 1;
}
.hero-content { flex: 1; }
.hero-badge {
  display: inline-block;
  background: var(--green-yellow);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 18px;
}
.hero h1 em { font-style: normal; color: var(--green-yellow); }
.hero p {
  font-size: 1.05rem;
  opacity: 0.92;
  max-width: 540px;
  margin-bottom: 30px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--green-yellow);
  color: var(--text);
  border: none;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .2s;
  box-shadow: 0 4px 16px rgba(198,224,0,.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(198,224,0,.5); }
.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,.7);
  padding: 11px 26px;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .2s;
}
.btn-outline-white:hover { background: rgba(255,255,255,.15); border-color: white; }
.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.hero-stat strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--green-yellow);
}
.hero-stat span { font-size: 0.8rem; opacity: .8; }
.hero-visual {
  flex-shrink: 0;
  width: 320px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.hero-card {
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  padding: 18px 14px;
  text-align: center;
  transition: transform .2s;
}
.hero-card:hover { transform: translateY(-4px); }
.hero-card .icon { font-size: 1.8rem; margin-bottom: 6px; }
.hero-card p { font-size: 0.72rem; opacity: .85; line-height: 1.3; }

/* ── SECTIONS COMMONS ── */
section { padding: 64px 20px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-label {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.section-header h2 {
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.section-header h2 span { color: var(--blue-dark); }
.section-header p { color: var(--gray-dark); max-width: 560px; margin: 0 auto; font-size: 0.97rem; }

/* ── SERVICES ── */
#services { background: var(--gray-light); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px 22px;
  border: 1px solid var(--gray-mid);
  transition: all .25s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-sky), var(--green-yellow));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  border-color: var(--blue-sky);
}
.service-icon {
  width: 52px; height: 52px;
  background: var(--blue-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 14px;
  transition: background .2s;
}
.service-card:hover .service-icon { background: var(--blue-sky); }
.service-card h3 {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.service-card p {
  font-size: 0.85rem;
  color: var(--gray-dark);
  line-height: 1.55;
}
.service-tag {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue-dark);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* ── POURQUOI NOUS ── */
#why { background: white; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 28px;
}
.why-item { text-align: center; padding: 24px 18px; }
.why-num {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--blue-sky), var(--blue-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 auto 14px;
}
.why-item h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.why-item p { font-size: 0.87rem; color: var(--gray-dark); }

/* ── CONTACT ── */
#contact { background: var(--gray-light); }
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 16px; color: var(--blue-dark); }
.contact-info p { font-size: 0.92rem; color: var(--gray-dark); margin-bottom: 22px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}
.contact-detail .icon {
  width: 38px; height: 38px;
  background: var(--blue-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-detail div strong { display: block; font-size: 0.85rem; margin-bottom: 2px; }
.contact-detail div span { font-size: 0.85rem; color: var(--gray-dark); }
.contact-form { background: white; border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--gray-light);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-sky);
  box-shadow: 0 0 0 3px rgba(79,195,247,.15);
  background: white;
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.btn-submit {
  width: 100%;
  padding: 13px;
  background: linear-gradient(90deg, var(--blue-sky), var(--blue-mid));
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all .2s;
  box-shadow: 0 4px 14px rgba(41,182,246,.3);
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(41,182,246,.4); }
.alert-msg {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  margin-bottom: 16px;
  display: none;
}
.alert-success { background: #E8F5E9; color: #2E7D32; border: 1px solid #A5D6A7; display: block; }
.alert-error { background: #FFEBEE; color: #C62828; border: 1px solid #EF9A9A; display: block; }

/* ── FAQ ── */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  background: white;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  gap: 16px;
  transition: background .15s;
}
.faq-q:hover { background: var(--blue-light); }
.faq-q.open { background: var(--blue-light); color: var(--blue-dark); }
.faq-chevron { font-size: 0.75rem; transition: transform .25s; flex-shrink: 0; }
.faq-q.open .faq-chevron { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  font-size: 0.9rem;
  color: var(--gray-dark);
  line-height: 1.65;
}
.faq-a-inner { padding: 0 20px 16px; }
.faq-a.open { max-height: 400px; }

/* ── EMPLOI ── */
.emploi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.emploi-info { }
.emploi-info h3 { font-size: 1.15rem; font-weight: 700; color: var(--blue-dark); margin-bottom: 12px; }
.emploi-info p { font-size: 0.92rem; color: var(--gray-dark); margin-bottom: 18px; }
.emploi-list { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.emploi-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; }
.emploi-list li::before { content: '✅'; flex-shrink: 0; }
.emploi-form { background: white; border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); }
.emploi-form h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 20px; color: var(--blue-dark); }
.file-upload-area {
  border: 2px dashed var(--blue-sky);
  border-radius: var(--radius-sm);
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: all .2s;
  margin-bottom: 14px;
  background: var(--gray-light);
}
.file-upload-area:hover { border-color: var(--blue-dark); background: var(--blue-light); }
.file-upload-area input[type="file"] { display: none; }
.file-upload-area .upload-icon { font-size: 2rem; display: block; margin-bottom: 6px; }
.file-upload-area p { font-size: 0.82rem; color: var(--gray-dark); }
.file-upload-area .filename { font-size: 0.82rem; color: var(--blue-dark); font-weight: 600; margin-top: 6px; }

/* ── FOOTER ── */
footer {
  background: #0D1B2A;
  color: rgba(255,255,255,.8);
  padding: 56px 20px 28px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 40px;
}
.footer-brand .logo-mark { width: 42px; height: 42px; font-size: 1.1rem; }
.footer-brand p { font-size: 0.85rem; margin: 14px 0 18px; opacity: .75; max-width: 260px; line-height: 1.6; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background .2s;
}
.footer-social a:hover { background: var(--blue-sky); }
.footer-col h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: white;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--green-yellow);
  display: inline-block;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  color: rgba(255,255,255,.7);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color .15s;
}
.footer-col ul li a:hover { color: var(--blue-sky); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  opacity: .65;
}
.footer-bottom a { color: var(--blue-sky); text-decoration: none; }

/* ── SCROLL TO TOP ── */
#scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--blue-sky), var(--blue-dark));
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(2,119,189,.35);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 800;
  transition: transform .2s;
}
#scroll-top.visible { display: flex; }
#scroll-top:hover { transform: translateY(-3px); }

/* ── MODAL / OVERLAY ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 5000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: white;
  border-radius: var(--radius);
  padding: 36px;
  max-width: 560px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
.modal-close {
  position: absolute;
  top: 14px; right: 18px;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--gray-dark);
  line-height: 1;
}
.modal-close:hover { color: var(--text); }
.modal-box h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 16px; color: var(--blue-dark); }
.modal-box p { font-size: 0.9rem; color: var(--gray-dark); line-height: 1.65; margin-bottom: 12px; }

/* ── MENTIONS LÉGALES / POLITIQUE / PAGE STATIQUE ── */
.page-hero {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-sky));
  color: white;
  padding: 52px 20px 44px;
  text-align: center;
}
.page-hero h1 { font-size: clamp(1.4rem,3vw,2rem); font-weight: 700; }
.page-hero p { opacity: .85; margin-top: 8px; font-size: 0.95rem; }
.page-content { max-width: 860px; margin: 0 auto; padding: 52px 20px; }
.page-content h2 { font-size: 1.15rem; font-weight: 700; color: var(--blue-dark); margin: 30px 0 10px; }
.page-content h3 { font-size: 1rem; font-weight: 700; margin: 20px 0 8px; color: var(--text); }
.page-content p, .page-content li { font-size: 0.92rem; color: var(--gray-dark); line-height: 1.7; margin-bottom: 10px; }
.page-content ul { margin-left: 22px; }
.page-content table { width: 100%; border-collapse: collapse; margin: 18px 0; font-size: 0.88rem; }
.page-content table th, .page-content table td { padding: 10px 14px; border: 1px solid var(--gray-mid); }
.page-content table th { background: var(--blue-light); font-weight: 700; text-align: left; }

/* ── ADMIN ── */
.admin-wrap { display: flex; min-height: 100vh; }
.admin-sidebar {
  width: 240px;
  background: #0D1B2A;
  color: white;
  padding: 24px 0;
  flex-shrink: 0;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}
.admin-sidebar .logo-area {
  padding: 0 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 12px;
}
.admin-sidebar .logo-area span { display: block; font-weight: 700; font-size: 1.1rem; color: var(--blue-sky); }
.admin-sidebar .logo-area small { font-size: 0.75rem; opacity: .6; }
.admin-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  font-size: 0.87rem;
  transition: all .15s;
}
.admin-nav a:hover, .admin-nav a.active {
  background: rgba(79,195,247,.15);
  color: var(--blue-sky);
  border-left: 3px solid var(--blue-sky);
}
.admin-main {
  flex: 1;
  background: var(--gray-light);
  padding: 30px;
  overflow-x: hidden;
}
.admin-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 12px;
}
.admin-topbar h1 { font-size: 1.3rem; font-weight: 700; }
.admin-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}
.admin-card {
  background: white;
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--blue-sky);
}
.admin-card.green { border-left-color: var(--green); }
.admin-card.yellow { border-left-color: var(--yellow); }
.admin-card strong { display: block; font-size: 1.8rem; font-weight: 700; color: var(--blue-dark); }
.admin-card span { font-size: 0.82rem; color: var(--gray-dark); }
.admin-table-wrap { background: white; border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); overflow-x: auto; }
.admin-table-wrap h2 { font-size: 1rem; font-weight: 700; margin-bottom: 16px; }
table.data-table { width: 100%; border-collapse: collapse; font-size: 0.87rem; }
table.data-table th, table.data-table td { padding: 10px 14px; text-align: left; border-bottom: 1px solid var(--gray-mid); }
table.data-table th { background: var(--gray-light); font-weight: 700; font-size: 0.8rem; text-transform: uppercase; letter-spacing: .04em; }
table.data-table tr:hover td { background: var(--gray-light); }
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
}
.badge-new { background: #E8F5E9; color: #2E7D32; }
.badge-read { background: var(--blue-light); color: var(--blue-dark); }
.badge-archived { background: var(--gray-mid); color: var(--gray-dark); }
.btn-sm {
  padding: 5px 12px;
  border: none;
  border-radius: 6px;
  font-family: var(--font);
  font-size: 0.78rem;
  cursor: pointer;
  font-weight: 600;
  transition: opacity .15s;
}
.btn-sm:hover { opacity: .8; }
.btn-sm.blue { background: var(--blue-light); color: var(--blue-dark); }
.btn-sm.red { background: #FFEBEE; color: #C62828; }
.btn-sm.green { background: #E8F5E9; color: #2E7D32; }
.admin-form-section { background: white; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); margin-bottom: 24px; }
.admin-form-section h2 { font-size: 1rem; font-weight: 700; margin-bottom: 18px; color: var(--blue-dark); padding-bottom: 12px; border-bottom: 2px solid var(--gray-mid); }
.admin-login {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-sky));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.admin-login-box {
  background: white;
  border-radius: var(--radius);
  padding: 44px 36px;
  max-width: 380px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  text-align: center;
}
.admin-login-box h1 { font-size: 1.4rem; margin-bottom: 6px; }
.admin-login-box p { font-size: 0.88rem; color: var(--gray-dark); margin-bottom: 26px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}
@media (max-width: 900px) {
  .hero-inner { flex-direction: column; text-align: center; }
  .hero-content p { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { width: 100%; max-width: 340px; margin: 0 auto; }
  .contact-wrap { grid-template-columns: 1fr; }
  .emploi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .admin-sidebar { width: 200px; }
}
@media (max-width: 680px) {
  nav ul { display: none; }
  nav ul.open { display: flex; flex-direction: column; position: fixed; top: 72px; left: 0; right: 0; background: white; padding: 16px; box-shadow: var(--shadow); z-index: 999; border-top: 2px solid var(--blue-sky); }
  .hamburger { display: flex; }
  .hero { padding: 50px 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .admin-wrap { flex-direction: column; }
  .admin-sidebar { width: 100%; height: auto; position: relative; }
  .admin-sidebar { position: relative; }
  section { padding: 44px 16px; }
  .hero-visual { display: none; }
}
@media (max-width: 420px) {
  .why-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 12px; }
}

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .55s ease, transform .55s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── NOTIFICATION ── */
.notif {
  position: fixed;
  top: 24px;
  right: 24px;
  padding: 14px 22px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 9999;
  box-shadow: var(--shadow-hover);
  display: none;
  animation: slideIn .3s ease;
}
.notif.success { background: #E8F5E9; color: #2E7D32; border-left: 4px solid #4CAF50; display: block; }
.notif.error { background: #FFEBEE; color: #C62828; border-left: 4px solid #F44336; display: block; }
@keyframes slideIn { from { transform: translateX(60px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* ── LOGO IMAGE (si logo.png ou logo.svg présent) ── */
.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

/* ── BOUTON NAV CONTACT ── */
.btn-nav-contact {
  color: var(--blue-dark) !important;
  font-weight: 700 !important;
}
.btn-nav-contact:hover {
  color: var(--green-dark) !important;
}
