/* ============================================================
   MGM — Mounps Group Management v4.0
   Design: Luxury Sports / Editorial — Bleu Marine + Or + Blanc
   Fonts: Cormorant Garamond (display) + DM Sans (body)
   ============================================================ */

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

/* ---- VARIABLES ---- */
:root {
  --bleu:      #1B2D6B;
  --bleu-mid:  #1E4DB7;
  --bleu-dark: #0f1e4a;
  --or:        #C9A84C;
  --or-clair:  #E8C97A;
  --or-pale:   #f5e9c4;
  --blanc:     #FFFFFF;
  --creme:     #fafaf7;
  --gris:      #F2F4F8;
  --texte:     #3a3a4a;
  --texte-mid: #6b7180;
  --noir:      #12121a;

  --ombre-sm:  0 2px 12px rgba(27,45,107,0.08);
  --ombre:     0 6px 28px rgba(27,45,107,0.12);
  --ombre-lg:  0 16px 56px rgba(27,45,107,0.18);
  --r:         10px;
  --r-lg:      18px;
  --r-xl:      28px;
  --t:         all 0.3s cubic-bezier(0.4,0,0.2,1);

  /* Icon system — uniform navy gradient */
  --icon-bg:   linear-gradient(135deg, #1B2D6B 0%, #2a4db8 100%);
  --icon-col:  #FFFFFF;
}

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

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; line-height: 1.18; color: var(--bleu); font-weight: 700; }
h1 { font-size: clamp(2.2rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
p  { color: var(--texte-mid); }

/* ---- LAYOUT ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
section { padding: 96px 0; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--or);
  margin-bottom: 14px;
}
.section-label::before { content: ''; width: 24px; height: 2px; background: var(--or); border-radius: 1px; }
.section-title { margin-bottom: 18px; }
.section-intro { font-size: 1.05rem; color: var(--texte-mid); max-width: 580px; margin-bottom: 52px; line-height: 1.75; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 30px; border-radius: var(--r); font-family: 'DM Sans', sans-serif;
  font-weight: 600; font-size: 0.88rem; cursor: pointer;
  transition: var(--t); border: none; white-space: nowrap; letter-spacing: 0.02em;
}
.btn i { font-size: 0.85em; }
.btn-primary  { background: var(--bleu-mid); color: var(--blanc); box-shadow: 0 4px 18px rgba(30,77,183,0.32); }
.btn-primary:hover  { background: var(--bleu); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(30,77,183,0.4); }
.btn-gold     { background: linear-gradient(135deg, var(--or) 0%, #b89036 100%); color: var(--blanc); }
.btn-gold:hover     { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,168,76,0.45); }
.btn-white    { background: var(--blanc); color: var(--bleu); }
.btn-white:hover    { background: var(--creme); transform: translateY(-1px); }
.btn-outline  { background: transparent; color: var(--blanc); border: 1.5px solid rgba(255,255,255,0.5); }
.btn-outline:hover  { background: rgba(255,255,255,0.10); border-color: var(--blanc); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(11, 18, 44, 0.97);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--t);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 12px; }

/* Logo */
.nav-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; text-decoration: none; }
.nav-logo-img {
  height: 36px; width: auto; max-width: 90px;
  object-fit: contain; object-position: center;
  border-radius: 6px;
  /* transparent PNG - no border needed */
  filter: brightness(0) invert(1); /* white logo on dark navbar */
  flex-shrink: 0;
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-text .brand   { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 700; color: var(--blanc); letter-spacing: 0.05em; }
.nav-logo-text .tagline { font-size: 0.55rem; color: var(--or-clair); letter-spacing: 0.18em; text-transform: uppercase; margin-top: 2px; }

/* Nav links */
.nav-links { display: flex; align-items: center; gap: 0; flex-wrap: nowrap; }
.nav-links a { font-size: 0.73rem; font-weight: 500; color: rgba(255,255,255,0.72); padding: 6px 9px; border-radius: 6px; transition: var(--t); white-space: nowrap; letter-spacing: 0.01em; }
.nav-links a:hover, .nav-links a.active { color: var(--blanc); background: rgba(255,255,255,0.08); }
.btn-nav-cta { background: var(--or) !important; color: var(--blanc) !important; padding: 7px 15px !important; border-radius: 7px !important; font-weight: 700 !important; margin-left: 6px; }
.btn-nav-cta:hover { background: var(--or-clair) !important; color: var(--bleu) !important; }

/* Lang switcher */
.lang-switcher { display: flex; align-items: center; gap: 4px; flex-shrink: 0; }
.lang-btn {
  display: inline-flex; align-items: center; gap: 5px; padding: 5px 10px;
  border-radius: 6px; border: 1px solid rgba(255,255,255,0.14);
  background: transparent; color: rgba(255,255,255,0.55);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em;
  cursor: pointer; transition: var(--t); text-decoration: none;
}
.lang-btn .flag { font-size: 0.9rem; }
.lang-btn:hover  { background: rgba(255,255,255,0.08); color: var(--blanc); }
.lang-btn.active { background: var(--or); color: var(--blanc); border-color: var(--or); }

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

/* ============================================================
   PAGE HERO (interior pages)
   ============================================================ */
.page-hero {
  padding: 150px 0 80px;
  position: relative; overflow: hidden;
  background-color: var(--bleu-dark);
  background-size: cover; background-position: center;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11,18,44,0.82) 0%, rgba(27,45,107,0.72) 100%);
}
/* Gold accent line at bottom */
.page-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--or), var(--or-clair), var(--or)); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--blanc); margin: 14px 0 22px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.79rem; color: rgba(255,255,255,0.52); }
.breadcrumb a { color: rgba(255,255,255,0.52); transition: var(--t); }
.breadcrumb a:hover { color: var(--or-clair); }
.breadcrumb span { color: rgba(255,255,255,0.28); }

/* ============================================================
   HERO (homepage)
   ============================================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(145deg, #060e28 0%, #0d1d52 40%, #142278 70%, #1a2f8a 100%);
  display: flex; align-items: center; position: relative; overflow: hidden; padding-top: 68px;
}
/* Glowing orbs background effect */
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 80% 45%, rgba(201,168,76,0.13) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 15% 75%, rgba(30,77,183,0.35) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 50% 10%, rgba(201,168,76,0.06) 0%, transparent 50%);
}
/* Diagonal light beam pattern */
.hero::after {
  content: '';
  position: absolute; top: -50%; right: -5%; width: 65%; height: 200%;
  background:
    repeating-linear-gradient(
      58deg,
      rgba(255,255,255,0.018) 0px,
      rgba(255,255,255,0.018) 1px,
      transparent 1px,
      transparent 28px
    );
  pointer-events: none;
}
/* Gold accent bar at very top */
.hero-gold-bar {
  position: absolute; top: 68px; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--or) 30%, var(--or-clair) 50%, var(--or) 70%, transparent 100%);
  z-index: 2;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; padding: 80px 0 88px; position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.4);
  color: var(--or-clair); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em;
  padding: 7px 16px; border-radius: 40px; margin-bottom: 24px; text-transform: uppercase;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  animation: fadeInDown 0.7s ease both;
}
.hero-badge i { font-size: 0.85rem; }
@keyframes fadeInDown { from { opacity:0; transform:translateY(-12px); } to { opacity:1; transform:translateY(0); } }

.hero h1 { color: var(--blanc); margin-bottom: 22px; font-size: clamp(2rem, 3.5vw, 3.2rem); line-height: 1.12; }
.hero h1 span { 
  background: linear-gradient(135deg, var(--or-clair) 0%, var(--or) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  font-style: italic;
}
.hero-desc { color: rgba(255,255,255,0.75); font-size: 1rem; max-width: 460px; margin-bottom: 36px; line-height: 1.8; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-cta .btn-gold { 
  background: linear-gradient(135deg, var(--or) 0%, #e0b840 50%, var(--or) 100%);
  background-size: 200% auto;
  transition: background-position 0.4s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 6px 24px rgba(201,168,76,0.4);
}
.hero-cta .btn-gold:hover { background-position: right center; transform: translateY(-3px); box-shadow: 0 10px 32px rgba(201,168,76,0.55); }

.hero-stats { display: flex; gap: 0; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 32px; flex-wrap: wrap; }
.stat-item { 
  text-align: left; padding-right: 32px; 
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: ''; position: absolute; right: 16px; top: 4px; bottom: 4px;
  width: 1px; background: rgba(255,255,255,0.15);
}
.stat-item:not(:first-child) { padding-left: 16px; }
.stat-number { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 800; color: var(--or-clair); line-height: 1; }
.stat-label { font-size: 0.67rem; color: rgba(255,255,255,0.48); margin-top: 5px; letter-spacing: 0.07em; text-transform: uppercase; }

/* Hero visual */
.hero-visual { position: relative; padding-bottom: 40px; }
/* Decorative circle behind images */
.hero-visual::before {
  content: '';
  position: absolute; top: -20px; right: -30px; width: 85%; height: 85%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.07) 0%, transparent 70%);
  border: 1px solid rgba(201,168,76,0.08);
  pointer-events: none;
}
.hero-img-main { 
  border-radius: var(--r-xl); overflow: hidden; 
  box-shadow: 0 24px 72px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.06); 
  aspect-ratio: 4/3; 
  position: relative;
}
/* Gold frame accent */
.hero-img-main::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--r-xl);
  box-shadow: inset 0 0 0 2px rgba(201,168,76,0.18);
  pointer-events: none;
}
.hero-img-main img { width: 100%; height: 100%; object-fit: cover; transition: transform 8s ease; }
.hero-img-main:hover img { transform: scale(1.04); }

.hero-img-secondary {
  position: absolute; bottom: 0; right: -24px; width: 48%;
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.1);
  border: 3px solid rgba(201,168,76,0.22);
  aspect-ratio: 3/2;
  transition: transform 0.3s ease;
}
.hero-img-secondary:hover { transform: translateY(-4px); }
.hero-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
/* Floating badge on secondary image */
.hero-img-secondary::before {
  content: '⚽ MGM';
  position: absolute; top: 10px; left: 10px;
  background: rgba(11,18,44,0.85);
  color: var(--or-clair); font-size: 0.65rem; font-weight: 700;
  padding: 4px 10px; border-radius: 20px;
  backdrop-filter: blur(4px);
  letter-spacing: 0.08em;
  z-index: 1;
}

/* ============================================================
   ICONS — Unified system
   ============================================================ */
.icon-box {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--icon-bg);
  display: flex; align-items: center; justify-content: center;
  color: var(--icon-col); font-size: 1.3rem; flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(27,45,107,0.28);
}
.icon-box-sm { width: 40px; height: 40px; border-radius: 10px; font-size: 1rem; }
.icon-box-lg { width: 64px; height: 64px; border-radius: 16px; font-size: 1.5rem; margin-bottom: 20px; }
.icon-box-green { background: linear-gradient(135deg, #1a6b1a 0%, #2d9e2d 100%) !important; }
.icon-box-wa    { background: linear-gradient(135deg, #075e54, #25d366) !important; }

/* ============================================================
   ACTION AREAS (domaines)
   ============================================================ */
.domaines { background: var(--creme); }
.domaines-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 18px; }
.domaine-card {
  background: var(--blanc); border-radius: var(--r-lg);
  padding: 28px 18px 24px; text-align: center;
  border: 1px solid rgba(27,45,107,0.07);
  box-shadow: var(--ombre-sm); transition: var(--t); cursor: default;
}
.domaine-card:hover { transform: translateY(-5px); box-shadow: var(--ombre); border-color: rgba(27,45,107,0.14); }
.domaine-card .icon-box { margin: 0 auto 16px; }
.domaine-card h3 { font-size: 0.9rem; margin-bottom: 7px; font-family: 'DM Sans', sans-serif; font-weight: 600; }
.domaine-card p  { font-size: 0.76rem; line-height: 1.6; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-img  { position: relative; }
.about-img > img { border-radius: var(--r-xl); width: 100%; height: 520px; object-fit: cover; box-shadow: var(--ombre-lg); }
.img-badge {
  position: absolute; bottom: 24px; right: -22px;
  background: var(--bleu); color: var(--blanc); border-radius: var(--r-lg);
  padding: 18px 24px; box-shadow: var(--ombre-lg); text-align: center;
  min-width: 120px; border: 2px solid rgba(201,168,76,0.35);
}
.badge-num { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 800; color: var(--or-clair); line-height: 1; }
.badge-txt { font-size: 0.65rem; color: rgba(255,255,255,0.65); margin-top: 5px; text-transform: uppercase; letter-spacing: 0.1em; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px; }
.value-item { display: flex; align-items: center; gap: 12px; background: var(--gris); border-radius: var(--r); padding: 12px 14px; }
.value-item h4 { font-size: 0.84rem; font-family: 'DM Sans', sans-serif; font-weight: 600; }

/* ============================================================
   PLAYERS
   ============================================================ */
.players-section { background: var(--creme); }
.players-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(185px, 1fr)); gap: 16px; }
.player-card {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  height: 300px; box-shadow: var(--ombre); transition: var(--t); cursor: pointer;
}
.player-card:hover { transform: translateY(-6px); box-shadow: var(--ombre-lg); }
.player-card img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform 0.5s ease; }
.player-card:hover img { transform: scale(1.06); }
.player-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,18,44,0.92) 0%, rgba(11,18,44,0.08) 55%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 18px 14px; opacity: 0; transition: var(--t);
}
.player-card:hover .player-overlay { opacity: 1; }
.player-overlay h3 { color: var(--blanc); font-size: 0.9rem; margin-bottom: 3px; font-family: 'DM Sans', sans-serif; font-weight: 600; }
.player-overlay span { color: var(--or-clair); font-size: 0.71rem; }
.player-overlay span i { margin-right: 4px; font-size: 0.65rem; }

/* ============================================================
   GALLERY MOSAIC
   ============================================================ */
.gallery-mosaic { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 180px; gap: 10px; }
.mosaic-item { border-radius: var(--r-lg); overflow: hidden; position: relative; background: var(--gris); }
.mosaic-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.mosaic-item:hover img { transform: scale(1.06); }
.mosaic-wide   { grid-column: span 8; }
.mosaic-tall   { grid-row: span 2; grid-column: span 4; }
.mosaic-normal { grid-column: span 4; }
.mosaic-half   { grid-column: span 6; }
.mosaic-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,18,44,0.75) 0%, transparent 50%);
  display: flex; align-items: flex-end; padding: 14px 16px;
  opacity: 0; transition: var(--t);
}
.mosaic-item:hover .mosaic-overlay { opacity: 1; }
.mosaic-overlay span { color: var(--blanc); font-size: 0.78rem; font-weight: 600; }

/* ============================================================
   IMPACT SECTION
   ============================================================ */
.impact-section { position: relative; padding: 96px 0; overflow: hidden; }
.impact-bg { position: absolute; inset: 0; background-image: url('../images/equipe_terrain2.jpeg'); background-size: cover; background-position: center; background-attachment: fixed; }
.impact-overlay { position: absolute; inset: 0; background: linear-gradient(150deg, rgba(11,18,44,0.94), rgba(27,45,107,0.88)); }
.impact-content { position: relative; z-index: 1; }
.impact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; text-align: center; }
.impact-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-lg); padding: 36px 20px;
  backdrop-filter: blur(8px); transition: var(--t);
}
.impact-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-4px); }
.impact-num { font-family: 'Cormorant Garamond', serif; font-size: 3.4rem; font-weight: 800; color: var(--or-clair); line-height: 1; }
.impact-label { color: rgba(255,255,255,0.78); font-size: 0.82rem; margin-top: 8px; font-weight: 500; }

/* ============================================================
   TEAM CARDS
   ============================================================ */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 26px; }
.team-card {
  background: var(--blanc); border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--ombre); transition: var(--t); text-align: center;
  border: 1px solid rgba(27,45,107,0.06);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--ombre-lg); }
.team-card-img { height: 300px; overflow: hidden; background: var(--gris); }
.team-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform 0.5s ease; }
.team-card:hover .team-card-img img { transform: scale(1.05); }
.team-card-info { padding: 22px 18px; }
.team-card-info h3 { font-size: 1.05rem; margin-bottom: 4px; }
.team-card-info .role { color: var(--or); font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 10px; }
.team-card-info p { font-size: 0.82rem; line-height: 1.6; }

/* ============================================================
   SERVICES / PROJECT CARDS
   ============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.service-card {
  background: var(--blanc); border-radius: var(--r-xl);
  padding: 32px 26px; border: 1px solid rgba(27,45,107,0.07);
  box-shadow: var(--ombre-sm); transition: var(--t);
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--ombre); border-color: rgba(27,45,107,0.15); }
.service-card h3 { margin-bottom: 12px; }
.service-card p { font-size: 0.86rem; }

/* Project cards */
.projects-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 26px; }
.project-card { background: var(--blanc); border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--ombre-sm); transition: var(--t); }
.project-card:hover { transform: translateY(-5px); box-shadow: var(--ombre); }
.project-card-img { height: 210px; overflow: hidden; position: relative; }
.project-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.project-card:hover .project-card-img img { transform: scale(1.05); }
.project-status {
  position: absolute; top: 14px; right: 14px;
  padding: 4px 12px; border-radius: 20px;
  font-size: 0.67rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
}
.status-planned   { background: rgba(27,45,107,0.88); color: white; }
.status-ongoing   { background: rgba(201,168,76,0.92); color: #3a2200; }
.status-completed { background: rgba(34,139,34,0.88); color: white; }
.project-card-body { padding: 22px 20px; }
.domain-tag { display: inline-flex; align-items: center; gap: 6px; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--bleu-mid); margin-bottom: 10px; }
.project-card-body h3 { font-size: 1rem; margin-bottom: 8px; }
.project-card-body p  { font-size: 0.83rem; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.testimonial-card {
  background: var(--blanc); border-radius: var(--r-xl); padding: 32px 26px;
  box-shadow: var(--ombre-sm); border: 1px solid rgba(27,45,107,0.06); position: relative; transition: var(--t);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--ombre); }
.testimonial-card::before {
  content: '\201C'; font-family: 'Cormorant Garamond', serif;
  font-size: 6rem; color: var(--or-pale); position: absolute;
  top: -4px; left: 16px; line-height: 1; pointer-events: none;
}
.testimonial-stars { color: var(--or); margin-bottom: 16px; font-size: 0.82rem; letter-spacing: 3px; }
.testimonial-text { font-style: italic; margin-bottom: 22px; position: relative; z-index: 1; font-size: 0.9rem; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--icon-bg); display: flex; align-items: center; justify-content: center;
  color: var(--blanc); font-weight: 700; font-size: 0.82rem; flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: 0.87rem; color: var(--bleu); }
.author-role { font-size: 0.7rem; color: var(--or); font-weight: 500; margin-top: 2px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-wrapper { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; }
.contact-item { display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start; }
.contact-item h4 { font-size: 0.82rem; font-weight: 600; margin-bottom: 3px; color: var(--bleu); font-family: 'DM Sans', sans-serif; }
.contact-item p { font-size: 0.84rem; }
.contact-item a { color: var(--texte-mid); transition: var(--t); }
.contact-item a:hover { color: var(--bleu-mid); }
.contact-socials { display: flex; gap: 10px; margin-top: 6px; }
.social-btn {
  width: 44px; height: 44px; background: var(--gris);
  border-radius: 10px; display: inline-flex; align-items: center; justify-content: center;
  color: var(--bleu); font-size: 1.1rem; transition: var(--t);
}
.social-btn:hover { background: var(--bleu-mid); color: var(--blanc); }
.contact-form-box {
  background: var(--blanc); border-radius: var(--r-xl);
  padding: 40px 36px; box-shadow: var(--ombre-lg);
  border: 1px solid rgba(27,45,107,0.07);
}
.contact-form-box h3 { margin-bottom: 24px; font-size: 1.4rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.76rem; font-weight: 600; color: var(--bleu); margin-bottom: 7px; letter-spacing: 0.04em; text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 15px;
  border: 1.5px solid #e0e4f0; border-radius: var(--r);
  font-family: 'DM Sans', sans-serif; font-size: 0.88rem; color: var(--noir);
  transition: var(--t); background: var(--blanc); appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--bleu-mid); box-shadow: 0 0 0 3px rgba(30,77,183,0.10);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; justify-content: center; margin-top: 6px; font-size: 0.92rem; padding: 15px; }
.maps-section iframe { width: 100%; height: 420px; display: block; border: 0; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(150deg, var(--bleu-dark) 0%, #152264 55%, var(--bleu-mid) 100%);
  padding: 96px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.12) 0%, transparent 65%);
}
/* Gold line top */
.cta-banner::after { content: ''; position: absolute; top: 0; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg, transparent, var(--or), transparent); }
.cta-banner > .container { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--blanc); margin-bottom: 18px; }
.cta-banner p { color: rgba(255,255,255,0.72); max-width: 520px; margin: 0 auto 36px; font-size: 1.02rem; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: var(--bleu-dark); padding: 72px 0 0; color: rgba(255,255,255,0.66); }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.4fr; gap: 44px; margin-bottom: 52px; }
.footer-brand p { font-size: 0.82rem; line-height: 1.7; max-width: 280px; }
.footer-logo-img {
  height: 32px; width: auto; max-width: 110px;
  object-fit: contain; object-position: left center;
  margin-bottom: 18px;
  filter: brightness(0) invert(1); /* white logo on dark footer */
}
.footer-col h4 {
  color: rgba(255,255,255,0.35); font-size: 0.65rem; font-weight: 700;
  margin-bottom: 18px; text-transform: uppercase; letter-spacing: 0.18em;
  font-family: 'DM Sans', sans-serif;
}
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul a { font-size: 0.81rem; color: rgba(255,255,255,0.55); transition: var(--t); display: inline-flex; align-items: center; gap: 7px; }
.footer-col ul a:hover { color: var(--or-clair); padding-left: 3px; }
.footer-col ul a i { font-size: 0.68rem; color: var(--or-clair); width: 13px; flex-shrink: 0; }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 11px; font-size: 0.8rem; align-items: flex-start; }
.footer-contact-item i { color: var(--or-clair); margin-top: 3px; flex-shrink: 0; width: 13px; text-align: center; font-size: 0.8rem; }
.footer-socials { display: flex; gap: 8px; margin-top: 20px; }
.footer-socials a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); font-size: 0.9rem; transition: var(--t);
}
.footer-socials a:hover { background: var(--or); color: var(--blanc); border-color: var(--or); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06); padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom > p { font-size: 0.74rem; color: rgba(255,255,255,0.3); }
.footer-legal { display: flex; gap: 18px; }
.footer-legal a { font-size: 0.72rem; color: rgba(255,255,255,0.3); transition: var(--t); }
.footer-legal a:hover { color: var(--or-clair); }
.footer-lang-switcher { display: flex; align-items: center; gap: 6px; }
.footer-lang-btn {
  display: inline-flex; align-items: center; gap: 5px; padding: 4px 10px;
  border-radius: 6px; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.45);
  font-size: 0.68rem; font-weight: 700; transition: var(--t); text-decoration: none;
}
.footer-lang-btn .flag { font-size: 0.9rem; }
.footer-lang-btn:hover { color: var(--or-clair); border-color: rgba(201,168,76,0.4); }
.footer-lang-btn.active { background: var(--or); color: var(--blanc); border-color: var(--or); }
.footer-kinerty { font-size: 0.7rem !important; color: rgba(255,255,255,0.22) !important; }
.footer-kinerty a { color: var(--or-clair) !important; }

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.whatsapp-float {
  position: fixed; bottom: 26px; right: 26px;
  width: 52px; height: 52px; background: #25D366; color: var(--blanc);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.45rem; box-shadow: 0 6px 24px rgba(37,211,102,0.55);
  z-index: 999; transition: var(--t);
}
.whatsapp-float:hover { background: #1fb855; transform: scale(1.1); }
.back-to-top {
  position: fixed; bottom: 88px; right: 26px;
  width: 42px; height: 42px; background: var(--bleu-mid); color: var(--blanc);
  border: none; border-radius: 50%; cursor: pointer; font-size: 0.85rem;
  box-shadow: var(--ombre); z-index: 998; opacity: 0; visibility: hidden; transition: var(--t);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--bleu); transform: translateY(-3px); }

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

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-grid { gap: 40px; }
  .about-grid { gap: 44px; }
}
@media (max-width: 900px) { .nav-logo-text { display: none; } }
@media (max-width: 768px) {
  .nav-links {
    display: none; position: fixed; top: 68px; left: 0; right: 0;
    background: rgba(11,18,44,0.99); flex-direction: column;
    align-items: flex-start; padding: 20px 24px 28px; gap: 2px;
    border-bottom: 1px solid rgba(255,255,255,0.06); z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; padding: 11px 12px; font-size: 0.9rem; }
  .burger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-img-secondary { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .img-badge { right: 0; bottom: 14px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .gallery-mosaic { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
  .mosaic-wide { grid-column: span 2; }
  .mosaic-tall { grid-column: span 1; grid-row: span 1; }
  .mosaic-normal, .mosaic-half { grid-column: span 1; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 16px; }
  .contact-wrapper { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-box { padding: 28px 22px; }
  section { padding: 64px 0; }
}
@media (max-width: 480px) {
  .hero-stats { gap: 22px; }
  .players-grid { grid-template-columns: repeat(2, 1fr); }
  .domaines-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-btns { flex-direction: column; align-items: center; }
  .hero-cta { flex-direction: column; }
}
