/* ===== VARIABLES ===== */
:root {
  --orange: #F39954;
  --blue: #002672;
  --bg-light: #FFF5E3;
  --white: #ffffff;
  --gray: #f4f4f4;
  --text-dark: #1a1a1a;
  --text-muted: #666;
  --shadow: 0 4px 20px rgba(0,0,0,0.1);
  --transition: all 0.3s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: var(--transition);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo img { height: 55px; width: auto; }

nav ul {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--blue);
  letter-spacing: 0.03em;
  position: relative;
  padding-bottom: 4px;
  transition: var(--transition);
}
nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: var(--transition);
}
nav a:hover::after, nav a.active::after { width: 100%; }
nav a:hover, nav a.active { color: var(--orange); }

.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 0.6rem 1.4rem !important;
  border-radius: 4px;
  font-weight: 600 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--blue) !important; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.burger span {
  width: 26px; height: 2px;
  background: var(--blue);
  display: block;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(0,38,114,0.85) 0%, rgba(0,58,158,0.78) 60%, rgba(0,26,80,0.88) 100%),
    url('bg1.png') center/cover no-repeat,
    var(--blue);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('bg2.png') center/cover no-repeat;
  opacity: 0.25;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.hero-accent {
  position: absolute;
  right: 0; top: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(135deg, var(--orange) 0%, #f4a96a 100%);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
  opacity: 0.15;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-text { color: var(--white); }
.hero-tag {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 3px;
  margin-bottom: 1.5rem;
}
.hero-text h1 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}
.hero-text h1 span { color: var(--orange); }
.hero-text p {
  font-size: 1.1rem;
  opacity: 0.85;
  margin-bottom: 2.5rem;
  max-width: 480px;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: #e0824a; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(243,153,84,0.4); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.stat-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 1.2rem;
  text-align: center;
  color: var(--white);
  backdrop-filter: blur(8px);
}
.stat-card .number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
  display: block;
}
.stat-card .label {
  font-size: 0.8rem;
  opacity: 0.8;
  margin-top: 0.3rem;
}

.hero-image-side {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-img-box {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  border: 3px solid rgba(243,153,84,0.4);
}
.hero-img-box img { width: 100%; height: 420px; object-fit: cover; }

/* ===== SECTIONS ===== */
section { padding: 5rem 2rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }

.section-label {
  display: inline-block;
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.section-title span { color: var(--orange); }
.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 3rem;
}
.section-header-centered { text-align: center; }
.section-header-centered .section-subtitle { margin-left: auto; margin-right: auto; }

/* ===== SERVICES PREVIEW (Accueil) ===== */
.services-section { background: var(--bg-light); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.service-card {
  background: var(--white);
  border-radius: 10px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--orange);
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 12px 30px rgba(0,0,0,0.12); }
.service-icon {
  width: 60px; height: 60px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--orange);
  font-size: 0;
}
.service-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.8;
}
.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 0.8rem;
}
.service-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }
.service-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.2rem; }
.tag {
  background: var(--bg-light);
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  border: 1px solid rgba(0,38,114,0.15);
}

/* ===== REFERENCES ===== */
.refs-section { background: var(--white); }
.refs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}
.ref-card {
  background: var(--bg-light);
  border-radius: 10px;
  padding: 1.8rem;
  border-left: 4px solid var(--orange);
  transition: var(--transition);
}
.ref-card:hover { transform: translateX(4px); box-shadow: var(--shadow); }
.ref-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1rem; gap: 1rem; }
.ref-name { font-size: 1rem; font-weight: 700; color: var(--blue); }
.ref-badge {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.7rem;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}
.badge-done { background: #e8f5e9; color: #2e7d32; }
.badge-ongoing { background: #fff3e0; color: #e65100; }
.badge-upcoming { background: #e3f2fd; color: #1565c0; }
.ref-meta { display: flex; flex-direction: column; gap: 0.4rem; }
.ref-meta span { font-size: 0.85rem; color: var(--text-muted); display: flex; align-items: center; gap: 0.5rem; }
.ref-meta strong { color: var(--blue); }
.ref-meta span svg { color: var(--orange); flex-shrink: 0; }
.ref-ca { font-size: 1.1rem; font-weight: 800; color: var(--orange); margin-top: 0.8rem; }

/* ===== CLIENTS ===== */
.clients-section { background: var(--blue); }
.clients-section .section-title { color: var(--white); }
.clients-section .section-subtitle { color: rgba(255,255,255,0.7); }
.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.client-block {
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 2.5rem;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  transition: var(--transition);
}
.client-block:hover { background: rgba(255,255,255,0.12); }
.client-pct {
  font-size: 3rem;
  font-weight: 900;
  color: var(--orange);
  display: block;
  margin-bottom: 0.5rem;
}
.client-block h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.client-block p { font-size: 0.85rem; opacity: 0.7; }

/* ===== VALEURS ===== */
.values-section { background: var(--bg-light); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.value-card {
  background: var(--white);
  border-radius: 10px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.value-card:hover { transform: translateY(-4px); }
.value-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  width: 56px;
  height: 56px;
  color: var(--orange);
  font-size: 0;
}
.value-icon svg {
  width: 40px;
  height: 40px;
  stroke-width: 1.6;
}
.value-card h3 { font-size: 1.2rem; font-weight: 800; color: var(--blue); margin-bottom: 0.8rem; }
.value-card p { color: var(--text-muted); font-size: 0.9rem; }

/* ===== ENGAGEMENTS ===== */
.engagements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}
.engagement-card {
  background: var(--white);
  border-radius: 10px;
  padding: 1.8rem;
  box-shadow: var(--shadow);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: var(--transition);
}
.engagement-card:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(0,0,0,0.1); }
.eng-icon {
  width: 48px; height: 48px;
  background: var(--bg-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid rgba(243,153,84,0.3);
  color: var(--orange);
  font-size: 0;
}
.eng-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.8;
}
.engagement-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--blue); margin-bottom: 0.4rem; }
.engagement-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* ===== À PROPOS ===== */
.about-hero {
  background: var(--blue);
  padding: 8rem 2rem 4rem;
  text-align: center;
  color: var(--white);
}
.about-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin-bottom: 1rem; }
.about-hero h1 span { color: var(--orange); }
.about-hero p { font-size: 1.1rem; opacity: 0.8; max-width: 600px; margin: 0 auto; }

.about-story { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-text p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}
.about-text .highlight {
  background: var(--bg-light);
  border-left: 4px solid var(--orange);
  padding: 1.2rem 1.5rem;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--blue);
  font-weight: 500;
  margin: 2rem 0;
}
.about-image-wrap { position: relative; }
.about-img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  border: 4px solid var(--bg-light);
}
.about-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--orange);
  color: var(--white);
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(243,153,84,0.4);
}
.about-badge .big { font-size: 2rem; font-weight: 900; display: block; }
.about-badge small { font-size: 0.75rem; font-weight: 600; opacity: 0.9; }

/* ===== PAGE HERO GÉNÉRIQUE ===== */
.page-hero {
  background:
    linear-gradient(135deg, rgba(0,38,114,0.82) 0%, rgba(0,58,158,0.85) 100%),
    url('bg1.png') center/cover no-repeat,
    var(--blue);
  padding: 8rem 2rem 4rem;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('bg2.png') center/cover no-repeat;
  opacity: 0.2;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin-bottom: 1rem; }
.page-hero h1 span { color: var(--orange); }
.page-hero p { font-size: 1.1rem; opacity: 0.8; max-width: 600px; margin: 0 auto; }
.breadcrumb { font-size: 0.85rem; opacity: 0.6; margin-bottom: 1rem; }
.breadcrumb a { opacity: 1; color: var(--orange); }

/* ===== SERVICES PAGE ===== */
.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}
.service-detail-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.service-detail-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.12); }
.service-detail-top {
  background: var(--blue);
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.service-detail-top .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--orange);
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  font-size: 0;
  flex-shrink: 0;
}
.service-detail-top .icon svg {
  width: 26px;
  height: 26px;
  stroke-width: 1.8;
}
.service-detail-top h3 { color: var(--white); font-size: 1.2rem; font-weight: 700; }
.service-detail-body { padding: 2rem; }
.service-detail-body p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.8; margin-bottom: 1.5rem; }
.service-list { display: flex; flex-direction: column; gap: 0.6rem; }
.service-list li {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.9rem; color: var(--text-dark); font-weight: 500;
}
.service-list li::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===== CONTACT PAGE ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 { font-size: 1.5rem; font-weight: 800; color: var(--blue); margin-bottom: 2rem; }
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.8rem;
}
.contact-item-icon {
  width: 48px; height: 48px;
  background: var(--bg-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid rgba(243,153,84,0.3);
  color: var(--orange);
  font-size: 0;
}
.contact-item-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.8;
}
.contact-item h4 { font-size: 0.85rem; color: var(--text-muted); font-weight: 600; margin-bottom: 0.2rem; }
.contact-item p { font-size: 0.95rem; color: var(--blue); font-weight: 600; }
.contact-item a { color: var(--blue); font-weight: 600; }
.contact-item a:hover { color: var(--orange); }

.contact-siret {
  background: var(--bg-light);
  border-radius: 10px;
  padding: 1.5rem;
  margin-top: 2rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.contact-siret strong { color: var(--blue); display: block; margin-bottom: 0.5rem; font-size: 0.9rem; }

.contact-form-box {
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.contact-form-box h2 { font-size: 1.5rem; font-weight: 800; color: var(--blue); margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 1.5rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group.full { grid-column: 1 / -1; }
label { font-size: 0.85rem; font-weight: 600; color: var(--blue); }
input, select, textarea {
  padding: 0.85rem 1rem;
  border: 2px solid #e5e5e5;
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text-dark);
  transition: var(--transition);
  background: #fafafa;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--white);
}
textarea { resize: vertical; min-height: 140px; }
.form-submit { margin-top: 0.5rem; }
.form-submit .btn { width: 100%; justify-content: center; font-size: 1rem; padding: 1rem; }

/* ===== CTA BAND ===== */
.cta-band {
  background: var(--orange);
  padding: 4rem 2rem;
  text-align: center;
}
.cta-band h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; color: var(--white); margin-bottom: 1rem; }
.cta-band p { color: rgba(255,255,255,0.85); margin-bottom: 2rem; font-size: 1.05rem; }
.btn-white { background: var(--white); color: var(--orange); }
.btn-white:hover { background: var(--blue); color: var(--white); transform: translateY(-2px); }

/* ===== FOOTER ===== */
footer {
  background: var(--blue);
  color: rgba(255,255,255,0.8);
  padding: 4rem 2rem 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo img { height: 45px; filter: brightness(0) invert(1); margin-bottom: 1rem; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; opacity: 0.7; margin-bottom: 1.2rem; }
.footer-slogan {
  font-style: italic;
  color: var(--orange);
  font-size: 0.95rem;
  font-weight: 600;
}
.footer-col h4 { color: var(--white); font-size: 0.9rem; font-weight: 700; margin-bottom: 1.2rem; text-transform: uppercase; letter-spacing: 0.08em; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col li a { font-size: 0.88rem; opacity: 0.7; transition: var(--transition); }
.footer-col li a:hover { opacity: 1; color: var(--orange); padding-left: 4px; }
.footer-col p { font-size: 0.88rem; opacity: 0.7; line-height: 1.8; }
.footer-col a { color: rgba(255,255,255,0.8); }
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  opacity: 0.6;
  flex-wrap: wrap;
  gap: 1rem;
}
/* ===== SOCIAL LINKS (Footer = blanc, taille réduite) ===== */
.social-links {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.2rem;
  flex-wrap: wrap;
  align-items: center;
}
.social-link {
  width: 36px !important;
  height: 36px !important;
  min-width: 36px;
  min-height: 36px;
  max-width: 36px;
  max-height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: var(--transition);
  text-decoration: none;
  flex-shrink: 0;
  padding: 0;
  box-sizing: border-box;
}
.social-link:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(243,153,84,0.4);
}
.social-link svg {
  width: 16px !important;
  height: 16px !important;
  fill: #ffffff;
  display: block;
  flex-shrink: 0;
}
.social-link:hover svg { fill: #ffffff; }

/* ===== Page Contact — icônes officielles, même ligne, sans texte ===== */
.contact-social {
  display: flex !important;
  flex-direction: row !important;
  gap: 0.7rem;
  align-items: center;
  flex-wrap: wrap;
}
.contact-social-link {
  width: 44px !important;
  height: 44px !important;
  min-width: 44px;
  min-height: 44px;
  max-width: 44px;
  max-height: 44px;
  border-radius: 12px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  text-decoration: none;
  flex-shrink: 0;
  padding: 0;
  box-sizing: border-box;
}
.contact-social-link.linkedin {
  background: #0A66C2;
  color: #ffffff;
}
.contact-social-link.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #ffffff;
}
.contact-social-link:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}
.contact-social-link svg {
  width: 22px !important;
  height: 22px !important;
  fill: #ffffff;
  display: block;
  flex-shrink: 0;
}

.footer-legal-links {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  flex-wrap: wrap;
}
.footer-legal-links a {
  color: rgba(255,255,255,0.85);
  transition: var(--transition);
  text-decoration: none;
}
.footer-legal-links a:hover { color: var(--orange); }
.footer-legal-links span { opacity: 0.4; }

/* ===== SCROLL TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 46px; height: 46px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(243,153,84,0.5);
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 999;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--blue); }

/* ===== DIVIDER ===== */
.orange-line {
  width: 60px; height: 4px;
  background: var(--orange);
  border-radius: 2px;
  margin: 0.8rem 0 2rem;
}
.orange-line.center { margin-left: auto; margin-right: auto; }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 1.2rem;
  left: 1.2rem;
  right: 1.2rem;
  z-index: 9998;
  background: var(--white);
  border: 1px solid rgba(0,38,114,0.12);
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
  padding: 1.4rem 1.6rem;
  max-width: 560px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.cookie-banner.visible {
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.cookie-banner-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 0.4rem;
}
.cookie-banner-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}
.cookie-banner-text a {
  color: var(--orange);
  font-weight: 600;
  text-decoration: underline;
}
.cookie-banner-text a:hover { color: var(--blue); }
.cookie-banner-actions {
  display: flex;
  gap: 0.6rem;
  justify-content: flex-end;
}
.cookie-btn {
  padding: 0.6rem 1.4rem;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}
.cookie-btn-refuse {
  background: transparent;
  color: var(--text-muted);
  border-color: rgba(0,0,0,0.15);
}
.cookie-btn-refuse:hover {
  background: #f4f4f4;
  color: var(--blue);
  border-color: var(--blue);
}
.cookie-btn-accept {
  background: var(--orange);
  color: var(--white);
}
.cookie-btn-accept:hover {
  background: #e0824a;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(243,153,84,0.4);
}

/* ===== LEGAL PAGES ===== */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
  color: var(--text-dark);
  line-height: 1.8;
}
.legal-content h1 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 0.5rem;
}
.legal-content .legal-subtitle {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}
.legal-content h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--blue);
  margin: 2.5rem 0 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.legal-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue);
  margin: 1.5rem 0 0.6rem;
}
.legal-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.legal-content li {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}
.legal-content a {
  color: var(--orange);
  text-decoration: underline;
  font-weight: 600;
}
.legal-content a:hover { color: var(--blue); }
.legal-content strong { color: var(--blue); }
.legal-info-box {
  background: var(--bg-light);
  border-left: 4px solid var(--orange);
  border-radius: 0 8px 8px 0;
  padding: 1.2rem 1.5rem;
  margin: 1.5rem 0;
  font-size: 0.92rem;
}
.legal-info-box p { margin-bottom: 0.4rem; }
.legal-info-box p:last-child { margin-bottom: 0; }

@media (max-width: 540px) {
  .cookie-banner { padding: 1rem 1.2rem; }
  .cookie-banner-actions { flex-direction: column; }
  .cookie-btn { width: 100%; }
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 1.2rem;
  margin-top: 1rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  display: block;
  background: var(--blue);
  box-shadow: var(--shadow);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.gallery-item.gallery-tall {
  grid-row: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
  display: block;
}
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.2);
}
.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(0.65);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,38,114,0.92) 0%, rgba(0,38,114,0.4) 60%, transparent 100%);
  color: var(--white);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}
.gallery-tag {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  align-self: flex-start;
}
.gallery-overlay h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.3rem;
  line-height: 1.3;
}
.gallery-overlay p {
  font-size: 0.82rem;
  opacity: 0.85;
}
.gallery-note {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.gallery-note a {
  color: var(--orange);
  font-weight: 700;
  text-decoration: underline;
}
.gallery-note a:hover { color: var(--blue); }

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,15,50,0.94);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 2rem;
  backdrop-filter: blur(8px);
}
.lightbox.open {
  display: flex;
  animation: lightboxFade 0.3s ease;
}
@keyframes lightboxFade { from { opacity: 0; } to { opacity: 1; } }
.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  object-fit: contain;
}
.lightbox-caption {
  color: var(--white);
  font-size: 0.95rem;
  text-align: center;
  font-weight: 600;
  background: rgba(0,38,114,0.7);
  padding: 0.6rem 1.5rem;
  border-radius: 30px;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
  width: 50px; height: 50px;
  border-radius: 50%;
  font-size: 1.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 300;
  transition: var(--transition);
  z-index: 10;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: scale(1.1);
}
.lightbox-close { top: 2rem; right: 2rem; font-size: 2.2rem; }
.lightbox-prev { left: 2rem; top: 50%; transform: translateY(-50%); }
.lightbox-prev:hover { transform: translateY(-50%) scale(1.1); }
.lightbox-next { right: 2rem; top: 50%; transform: translateY(-50%); }
.lightbox-next:hover { transform: translateY(-50%) scale(1.1); }

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-zoom {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-zoom.visible {
  opacity: 1;
  transform: scale(1);
}
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }
.reveal-d5 { transition-delay: 0.40s; }
.reveal-d6 { transition-delay: 0.48s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-zoom {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ===== HERO VISUAL CARDS ===== */
.hero-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.hero-visual-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px;
  padding: 1.5rem 1.2rem;
  backdrop-filter: blur(10px);
  text-align: center;
  color: var(--white);
  transition: var(--transition);
}
.hero-visual-card:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-3px);
}
.hvc-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.6rem;
  width: 36px;
  height: 36px;
  color: var(--orange);
  font-size: 0;
}
.hvc-icon svg {
  width: 30px;
  height: 30px;
  stroke-width: 1.8;
}
.hvc-label { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.3rem; }
.hvc-sub { font-size: 0.75rem; opacity: 0.65; }

/* ===== ABOUT VISUAL STATS ===== */
.about-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  height: 100%;
}
.about-visual-stat {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  border: 2px solid rgba(243,153,84,0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
}
.about-visual-stat span {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--orange);
  display: block;
}
.about-visual-stat small {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ===== MOT DU PRÉSIDENT ===== */
.president-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 5rem;
  align-items: start;
}
.president-photo-wrap { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.president-photo-placeholder {
  width: 280px; height: 320px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  position: relative;
}
.president-photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.president-id-card {
  background: var(--blue);
  color: var(--white);
  border-radius: 10px;
  padding: 1.2rem 1.8rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  width: 100%;
  box-shadow: 0 8px 20px rgba(0,38,114,0.25);
}
.president-id-card strong { font-size: 1rem; font-weight: 800; }
.president-id-card span { font-size: 0.82rem; opacity: 0.75; }
.president-quote-mark {
  font-size: 5rem;
  color: var(--orange);
  line-height: 0.8;
  margin-bottom: 1rem;
  font-family: Georgia, serif;
}
.president-quote {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 1.2rem;
  font-style: italic;
}
.president-signature {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 2px solid var(--bg-light);
}
.president-skills {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.president-skills span {
  background: var(--white);
  border: 1px solid rgba(0,38,114,0.15);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
}

.president-career {
  margin-top: 2rem;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  border-left: 3px solid var(--orange);
  padding-left: 1.5rem;
}
.career-item {
  display: flex;
  gap: 1rem;
  align-items: baseline;
  flex-wrap: wrap;
}
.career-year {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--orange);
  white-space: nowrap;
  min-width: 90px;
}
.career-role {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.career-role strong { color: var(--blue); }

.president-sig-line {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 0.3rem;
}
.president-sig-title { font-size: 0.85rem; color: var(--text-muted); }

/* ===== GOOGLE REVIEWS ===== */
.google-rating-global {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  background: var(--bg-light);
  border-radius: 12px;
  padding: 1.5rem 2.5rem;
  margin: 1.5rem auto 3rem;
  max-width: 500px;
  border: 2px solid rgba(243,153,84,0.2);
}
.google-logo { height: 24px; width: auto; }
.google-stars-big { font-size: 1.6rem; color: #FBBC04; letter-spacing: 2px; }
.google-score {
  font-size: 2rem;
  font-weight: 900;
  color: var(--blue);
}
.google-score span { font-size: 1rem; font-weight: 500; color: var(--text-muted); }
.google-count { font-size: 0.82rem; color: var(--text-muted); width: 100%; text-align: center; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.review-card {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid rgba(0,38,114,0.08);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.review-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.reviewer-avatar {
  width: 46px; height: 46px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.reviewer-name { font-size: 0.95rem; font-weight: 700; color: var(--blue); }
.review-stars { font-size: 1rem; color: #FBBC04; letter-spacing: 1px; }
.review-google-icon { height: 18px; width: auto; margin-left: auto; opacity: 0.7; }
.review-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}
.review-date { font-size: 0.78rem; color: var(--text-muted); font-weight: 600; opacity: 0.7; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-image-side { display: none; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .president-layout { grid-template-columns: 1fr; }
  .president-photo-wrap { flex-direction: row; align-items: flex-start; }
  .president-photo-placeholder { width: 160px; height: 200px; flex-shrink: 0; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image-wrap { display: none; }
  .clients-grid { grid-template-columns: repeat(3, 1fr); }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .president-photo-wrap { flex-direction: column; align-items: center; }
  .about-visual { grid-template-columns: 1fr 1fr; }
  .hero-visual { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .gallery-item.gallery-tall { grid-row: span 1; }
  .gallery-overlay { opacity: 1; transform: translateY(0); padding: 1rem; }
  .gallery-overlay h3 { font-size: 0.95rem; }
  .gallery-overlay p { font-size: 0.75rem; }
  .lightbox-close { top: 1rem; right: 1rem; }
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
  .header-inner { padding: 0 1.5rem; }
  nav { display: none; position: absolute; top: 80px; left: 0; right: 0; background: var(--white); box-shadow: 0 10px 20px rgba(0,0,0,0.1); padding: 2rem; }
  nav.open { display: block; }
  nav ul { flex-direction: column; gap: 1.5rem; }
  .burger { display: flex; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .clients-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  section { padding: 3.5rem 1.5rem; }
}
@media (max-width: 480px) {
  .hero-stats { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .btn { justify-content: center; }
}


/* Professional refresh */
:root{
--primary:#111827;
--secondary:#c8a46b;
--bg:#f8fafc;
}
body{
background:var(--bg);
-webkit-font-smoothing:antialiased;
}
header{
backdrop-filter:blur(10px);
background:rgba(255,255,255,.92);
position:sticky;
top:0;
z-index:1000;
border-bottom:1px solid rgba(0,0,0,.06);
}
.hero,.section{
border-radius:24px;
}
.btn,button{
border-radius:14px;
transition:all .25s ease;
}
.btn:hover,button:hover{
transform:translateY(-2px);
}
img{
max-width:100%;
height:auto;
}
.references-clean{
padding:80px 20px;
text-align:center;
}
.references-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
gap:24px;
margin-top:32px;
}
.ref-card{
background:#fff;
padding:32px;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,.06);
}
