@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

:root {
  /* PALETTE OUSMASHE — Bleu marine + Argent */
  --navy:       #1a2744;
  --navy-mid:   #243660;
  --navy-light: #2e4480;
  --navy-pale:  #3a5298;
  --silver:     #c8cdd8;
  --silver-light:#e2e6ef;
  --silver-dark: #9aa0b0;
  --cream:      #f4f6fb;
  --cream-dark: #e8ecf5;
  --accent:     #e8b84b;   /* touche dorée conservée pour les CTAs critiques */
  --accent-light:#f5cc6a;
  --white:      #ffffff;
  --text-dark:  #0f1828;
  --text-mid:   #3a4560;
  --text-light: #7a85a0;
  --shadow-soft: 0 4px 24px rgba(26,39,68,0.10);
  --shadow-card: 0 8px 40px rgba(26,39,68,0.16);
  --radius-xl:  2rem;
  --radius-lg:  1.5rem;
  --radius-md:  1rem;
  --radius-sm:  0.75rem;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(244,246,251,0.94);
  backdrop-filter: blur(20px);
  border-bottom: 1.5px solid rgba(26,39,68,0.10);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 4px 32px rgba(26,39,68,0.14); }
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  height: 74px; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 0.8rem; text-decoration: none; }
.nav-logo img {
  height: 52px; width: 52px; object-fit: contain;
  background: var(--navy); border-radius: 50%; padding: 4px;
  box-shadow: 0 2px 14px rgba(26,39,68,0.25);
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-text .brand { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1rem; color: var(--navy); }
.nav-logo-text .tagline { font-size: 0.68rem; color: var(--navy-pale); font-weight: 500; letter-spacing: 0.05em; }
.nav-links { display: flex; align-items: center; gap: 0.2rem; list-style: none; }
.nav-links a {
  text-decoration: none; padding: 0.5rem 1.1rem; border-radius: 2rem;
  font-size: 0.9rem; font-weight: 500; color: var(--text-mid);
  transition: all 0.2s;
}
.nav-links a:hover, .nav-links a.active { background: var(--navy); color: var(--white); }
.nav-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-light)) !important;
  color: var(--navy) !important; font-weight: 700 !important;
  box-shadow: 0 2px 12px rgba(232,184,75,0.35);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(232,184,75,0.5) !important; }

/* Burger */
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; border-radius: 12px; background: none; border: none; transition: background 0.2s; }
.burger:hover { background: var(--cream-dark); }
.burger span { display: block; width: 24px; height: 2.5px; background: var(--navy); border-radius: 99px; transition: all 0.3s; }
.burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
.mobile-menu {
  display: none; position: fixed; top: 74px; left: 0; right: 0;
  background: var(--cream); border-bottom: 1.5px solid rgba(26,39,68,0.1);
  padding: 1.5rem 2rem 2rem; box-shadow: 0 8px 32px rgba(26,39,68,0.12);
  z-index: 999; animation: slideDown 0.3s ease;
}
.mobile-menu.open { display: block; }
@keyframes slideDown { from { opacity: 0; transform: translateY(-16px); } to { opacity: 1; transform: translateY(0); } }
.mobile-menu a { display: block; text-decoration: none; padding: 0.9rem 1.2rem; border-radius: var(--radius-md); color: var(--text-mid); font-weight: 500; font-size: 1rem; margin-bottom: 0.35rem; transition: all 0.2s; }
.mobile-menu a:hover { background: var(--cream-dark); color: var(--navy); }
.mobile-menu .m-cta { background: linear-gradient(135deg, var(--navy), var(--navy-mid)); color: var(--white) !important; text-align: center; margin-top: 0.5rem; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy-mid) 50%, #1e3570 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: center; padding-top: 74px;
}
.hero::before {
  content: '';  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Ccircle cx='30' cy='30' r='3'/%3E%3C/g%3E%3C/svg%3E");
}
.hero-blob { position: absolute; border-radius: 50%; filter: blur(80px); }
.hero-blob-1 { width: 550px; height: 550px; top: -120px; right: -80px; background: rgba(232,184,75,0.10); }
.hero-blob-2 { width: 400px; height: 400px; bottom: -100px; left: -100px; background: rgba(46,68,128,0.5); }
.hero-inner {
  max-width: 1200px; margin: 0 auto; padding: 5rem 2rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(232,184,75,0.18); border: 1px solid rgba(232,184,75,0.4);
  border-radius: 99px; padding: 0.45rem 1.1rem;
  color: var(--accent-light); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.07em; text-transform: uppercase; margin-bottom: 1.5rem;
}
.hero-title { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 900; color: var(--white); line-height: 1.1; margin-bottom: 1.5rem; }
.hero-title em { font-style: italic; color: var(--accent-light); }
.hero-desc { color: rgba(255,255,255,0.75); font-size: 1.05rem; line-height: 1.75; margin-bottom: 2.5rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--navy); text-decoration: none; padding: 0.9rem 2rem;
  border-radius: 99px; font-weight: 700; font-size: 0.95rem;
  box-shadow: 0 4px 24px rgba(232,184,75,0.4); transition: all 0.25s;
  border: none; cursor: pointer;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(232,184,75,0.55); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent; color: var(--white); text-decoration: none;
  padding: 0.9rem 2rem; border-radius: 99px; font-weight: 600; font-size: 0.95rem;
  border: 1.5px solid rgba(255,255,255,0.35); transition: all 0.25s;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }
.hero-stats { display: flex; gap: 2.5rem; margin-top: 3rem; }
.stat-item { color: var(--white); }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: var(--accent-light); display: block; }
.stat-label { font-size: 0.8rem; opacity: 0.68; }

/* Hero visual */
.hero-visual { display: flex; flex-direction: column; gap: 1rem; position: relative; }
.hero-logo-showcase {
  background: rgba(255,255,255,0.07); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius-xl);
  padding: 2.5rem; display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
}
.hero-logo-showcase img { width: 200px; height: 200px; object-fit: contain; border-radius: 50%; background: rgba(200,205,216,0.15); padding: 16px; }
.hero-logo-tagline { color: rgba(255,255,255,0.75); font-size: 0.88rem; text-align: center; letter-spacing: 0.08em; text-transform: uppercase; }
.hero-cards-row { display: flex; gap: 1rem; }
.mini-card {
  flex: 1; background: rgba(255,255,255,0.07); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-lg);
  padding: 1.2rem; color: var(--white);
}
.mini-card .mc-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.mini-card .mc-title { font-weight: 600; font-size: 0.85rem; }
.mini-card .mc-sub { font-size: 0.72rem; opacity: 0.65; margin-top: 0.2rem; }

/* ===== SECTIONS ===== */
.section { padding: 6rem 2rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  display: inline-block;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--white); padding: 0.35rem 1.1rem; border-radius: 99px;
  font-size: 0.73rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-title { font-size: clamp(1.9rem, 3.5vw, 2.9rem); font-weight: 800; color: var(--navy); line-height: 1.15; margin-bottom: 1rem; }
.section-desc { font-size: 1.02rem; color: var(--text-mid); max-width: 560px; line-height: 1.78; }

/* ===== VALEURS ===== */
.valeurs-bg { background: var(--white); }
.valeurs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; margin-top: 3.5rem; }
.valeur-card {
  background: var(--cream); border-radius: var(--radius-xl); padding: 2rem;
  border: 1.5px solid transparent; transition: all 0.3s; position: relative; overflow: hidden;
}
.valeur-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--navy-mid), var(--accent));
  border-radius: 99px 99px 0 0; opacity: 0; transition: opacity 0.3s;
}
.valeur-card:hover { border-color: rgba(26,39,68,0.18); box-shadow: var(--shadow-card); transform: translateY(-4px); }
.valeur-card:hover::before { opacity: 1; }
.valeur-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.valeur-title { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 0.6rem; }
.valeur-desc { font-size: 0.9rem; color: var(--text-mid); line-height: 1.65; }

/* ===== PRODUITS ===== */
.produits-vedettes-bg { background: var(--cream); }
.produits-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; flex-wrap: wrap; gap: 1rem; }
.produits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.75rem; }
.produit-card {
  background: var(--white); border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-soft); transition: all 0.3s; border: 1.5px solid transparent;
}
.produit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: rgba(232,184,75,0.3); }
.produit-img { height: 200px; display: flex; align-items: center; justify-content: center; font-size: 5rem; position: relative; }
.produit-badge {
  position: absolute; top: 1rem; right: 1rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--navy); padding: 0.3rem 0.8rem; border-radius: 99px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
}
.produit-body { padding: 1.5rem; }
.produit-category { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy-pale); margin-bottom: 0.5rem; }
.produit-name { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: var(--navy); margin-bottom: 0.6rem; }
.produit-desc { font-size: 0.87rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 1.2rem; }
.produit-footer { display: flex; justify-content: space-between; align-items: center; }
.produit-origin { display: flex; align-items: center; gap: 0.4rem; font-size: 0.78rem; color: var(--text-light); }
.btn-sm {
  background: var(--navy); color: var(--white);
  padding: 0.5rem 1.2rem; border-radius: 99px;
  font-size: 0.82rem; font-weight: 600; text-decoration: none; transition: all 0.2s; border: none; cursor: pointer;
}
.btn-sm:hover { background: var(--navy-mid); transform: translateY(-1px); }

/* ===== TEMOIGNAGES ===== */
.temoignages-bg { background: var(--navy); }
.temoignages-bg .section-title { color: var(--white); }
.temoignages-bg .section-desc { color: rgba(255,255,255,0.65); }
.temoignages-bg .section-label { background: rgba(232,184,75,0.2); color: var(--accent-light); border: 1px solid rgba(232,184,75,0.3); }
.temoignages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.temoignage-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-xl); padding: 2rem; transition: all 0.3s; }
.temoignage-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-3px); }
.stars { color: var(--accent-light); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.temoignage-text { color: rgba(255,255,255,0.82); font-style: italic; font-size: 0.93rem; line-height: 1.78; margin-bottom: 1.5rem; }
.temoignage-author { display: flex; align-items: center; gap: 0.85rem; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-pale), var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 700; color: var(--white); flex-shrink: 0;
}
.author-name { color: var(--white); font-weight: 600; font-size: 0.9rem; }
.author-city { color: rgba(255,255,255,0.5); font-size: 0.78rem; }

/* ===== LIVRAISON BAND ===== */
.livraison-band { background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%); padding: 4rem 2rem; }
.livraison-band-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.livraison-band h2 { font-size: 2rem; color: var(--navy); margin-bottom: 0.5rem; }
.livraison-band p { color: rgba(26,39,68,0.72); }
.btn-white {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--navy); color: var(--white);
  text-decoration: none; padding: 0.9rem 2rem; border-radius: 99px;
  font-weight: 700; font-size: 0.92rem; transition: all 0.25s; white-space: nowrap;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(26,39,68,0.3); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed; bottom: 2rem; right: 2rem;
  background: #25D366; color: var(--white);
  width: 60px; height: 60px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.8rem;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45);
  text-decoration: none; z-index: 800; transition: all 0.3s;
  animation: pulse-wa 3s ease infinite;
}
.whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 8px 36px rgba(37,211,102,0.55); }
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 24px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 4px 36px rgba(37,211,102,0.7), 0 0 0 12px rgba(37,211,102,0.12); }
}

/* ===== FOOTER ===== */
footer { background: var(--navy); color: var(--white); padding: 5rem 2rem 2rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; }
.footer-brand img { height: 52px; width: 52px; object-fit: contain; background: rgba(255,255,255,0.1); border-radius: 50%; padding: 6px; margin-bottom: 0.75rem; }
.footer-brand .brand-name { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--white); margin-bottom: 0.2rem; }
.footer-brand .brand-sub { color: var(--accent-light); font-size: 0.8rem; margin-bottom: 1rem; }
.footer-brand p { color: rgba(255,255,255,0.58); font-size: 0.86rem; line-height: 1.72; }
.footer-col h4 { color: var(--white); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a { color: rgba(255,255,255,0.58); text-decoration: none; font-size: 0.86rem; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--accent-light); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.9rem; }
.footer-contact-item span:first-child { font-size: 1rem; flex-shrink: 0; margin-top: 0.1rem; }
.footer-contact-item .ci-text { font-size: 0.84rem; color: rgba(255,255,255,0.62); line-height: 1.5; }
.footer-bottom { max-width: 1200px; margin: 3rem auto 0; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { color: rgba(255,255,255,0.42); font-size: 0.8rem; }
.footer-bottom a { color: var(--accent-light); text-decoration: none; }

/* ===== PAGE HEADERS ===== */
.page-header {
  background: linear-gradient(155deg, var(--navy), var(--navy-mid));
  padding: 8rem 2rem 5rem; position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Crect width='40' height='40'/%3E%3Crect width='40' height='40' x='40' y='40'/%3E%3C/g%3E%3C/svg%3E");
}
.page-header-inner { max-width: 800px; margin: 0 auto; position: relative; z-index: 1; }
.page-header-breadcrumb { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.2rem; }
.page-header-breadcrumb a { color: rgba(255,255,255,0.58); text-decoration: none; font-size: 0.84rem; }
.page-header-breadcrumb a:hover { color: var(--accent-light); }
.page-header-breadcrumb span { color: rgba(255,255,255,0.3); font-size: 0.84rem; }
.page-header h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900; color: var(--white); line-height: 1.12; margin-bottom: 1rem; }
.page-header p { font-size: 1.03rem; color: rgba(255,255,255,0.7); max-width: 560px; line-height: 1.75; }

/* ===== FILTRES ===== */
.filter-bar { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 3rem; }
.filter-btn {
  padding: 0.55rem 1.4rem; border-radius: 99px;
  border: 1.5px solid rgba(26,39,68,0.2); background: var(--white);
  color: var(--text-mid); font-size: 0.86rem; font-weight: 500;
  cursor: pointer; transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.active { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ===== À PROPOS ===== */
.apropos-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.apropos-visual {
  background: linear-gradient(135deg, var(--navy-mid), var(--navy));
  border-radius: var(--radius-xl); height: 420px;
  display: flex; align-items: center; justify-content: center;
  font-size: 8rem; position: relative; overflow: hidden;
}
.apropos-visual::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='2' fill='%23ffffff' fill-opacity='0.04'/%3E%3C/svg%3E");
}
.apropos-visual img { width: 200px; height: 200px; object-fit: contain; border-radius: 50%; background: rgba(200,205,216,0.12); padding: 20px; position: relative; z-index: 1; }
.apropos-badge-float {
  position: absolute; bottom: -1rem; right: -1rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--navy); padding: 1.2rem 1.8rem; border-radius: var(--radius-lg);
  text-align: center; box-shadow: var(--shadow-card);
}
.apropos-badge-float .num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; display: block; }
.apropos-badge-float .lbl { font-size: 0.73rem; font-weight: 700; opacity: 0.85; }

/* Timeline */
.timeline { margin-top: 2.5rem; }
.timeline-item { display: flex; gap: 2rem; margin-bottom: 2rem; }
.timeline-dot-col { display: flex; flex-direction: column; align-items: center; }
.timeline-dot {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-pale));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: 0.8rem;
  flex-shrink: 0; box-shadow: 0 2px 12px rgba(26,39,68,0.25);
}
.timeline-line { width: 2px; flex: 1; background: rgba(26,39,68,0.12); margin: 8px 0; min-height: 30px; }
.timeline-content { padding-bottom: 1.5rem; }
.timeline-year { font-size: 0.76rem; font-weight: 700; color: var(--accent); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.4rem; }
.timeline-title { font-family: 'Playfair Display', serif; font-size: 1.08rem; font-weight: 700; color: var(--navy); margin-bottom: 0.4rem; }
.timeline-desc { font-size: 0.88rem; color: var(--text-mid); line-height: 1.62; }

/* Équipe */
.equipe-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.team-card { background: var(--white); border-radius: var(--radius-xl); padding: 2rem; text-align: center; box-shadow: var(--shadow-soft); transition: all 0.3s; }
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }
.team-avatar { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg, var(--navy-mid), var(--accent)); margin: 0 auto 1rem; display: flex; align-items: center; justify-content: center; font-size: 2rem; }
.team-name { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 0.3rem; }
.team-role { font-size: 0.78rem; color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; }

/* ===== LIVRAISON ===== */
.regions-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.region-card { background: var(--white); border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-soft); transition: all 0.3s; }
.region-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.region-header { background: linear-gradient(135deg, var(--navy-mid), var(--navy)); padding: 1.2rem 1.5rem; display: flex; justify-content: space-between; align-items: center; }
.region-name { color: var(--white); font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; }
.region-count { background: rgba(255,255,255,0.18); color: var(--white); padding: 0.2rem 0.7rem; border-radius: 99px; font-size: 0.76rem; font-weight: 700; }
.region-localities { padding: 1.2rem 1.5rem; }
.locality-tag { display: inline-block; background: var(--cream); color: var(--text-mid); padding: 0.28rem 0.8rem; border-radius: 99px; font-size: 0.76rem; margin: 0.2rem; border: 1px solid rgba(26,39,68,0.1); transition: all 0.2s; }
.locality-tag:hover { background: var(--cream-dark); }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start; }
.contact-info-cards { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-info-card { background: var(--white); border-radius: var(--radius-xl); padding: 1.5rem; display: flex; gap: 1rem; align-items: flex-start; box-shadow: var(--shadow-soft); transition: all 0.3s; }
.contact-info-card:hover { transform: translateX(4px); box-shadow: var(--shadow-card); }
.ci-icon { width: 48px; height: 48px; border-radius: var(--radius-md); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; }
.ci-icon.navy { background: rgba(26,39,68,0.1); }
.ci-icon.gold  { background: rgba(232,184,75,0.15); }
.ci-icon.wa    { background: rgba(37,211,102,0.12); }
.ci-body .ci-label { font-size: 0.75rem; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.09em; margin-bottom: 0.3rem; }
.ci-body .ci-value { font-weight: 600; color: var(--navy); font-size: 0.93rem; }
.ci-body .ci-sub { font-size: 0.8rem; color: var(--text-light); margin-top: 0.2rem; }
.contact-form-wrap { background: var(--white); border-radius: var(--radius-xl); padding: 2.5rem; box-shadow: var(--shadow-card); }
.contact-form-wrap h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--navy); margin-bottom: 0.5rem; }
.contact-form-wrap .form-subtitle { color: var(--text-light); font-size: 0.88rem; margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.83rem; font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 0.85rem 1.1rem;
  border: 1.5px solid rgba(26,39,68,0.15); border-radius: var(--radius-md);
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem; color: var(--text-dark);
  background: var(--cream); transition: all 0.2s; outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--navy-pale); background: var(--white);
  box-shadow: 0 0 0 3px rgba(26,39,68,0.08);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-success { display: none; background: rgba(26,39,68,0.07); border: 1.5px solid rgba(26,39,68,0.2); border-radius: var(--radius-md); padding: 1rem 1.2rem; color: var(--navy); font-weight: 600; font-size: 0.9rem; margin-top: 1rem; }
.whatsapp-cta-block { background: linear-gradient(135deg, #1fad56, #25D366); border-radius: var(--radius-xl); padding: 2rem; display: flex; align-items: center; gap: 1.2rem; margin-top: 1.5rem; text-decoration: none; transition: all 0.3s; }
.whatsapp-cta-block:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(37,211,102,0.35); }
.wa-icon { font-size: 2.5rem; }
.wa-text .wt-title { color: var(--white); font-weight: 700; font-size: 0.98rem; }
.wa-text .wt-sub { color: rgba(255,255,255,0.75); font-size: 0.83rem; }

/* ===== ANIMATIONS ===== */
.fade-up { opacity: 0; transform: translateY(28px); transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { display: none; }
  .apropos-intro { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .section { padding: 4rem 1.2rem; }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
  .footer-inner { grid-template-columns: 1fr; }
}
