/* ═══════════════════════════════════════════════════════════
   GICS – Guinée Intérim Conseils et Services
   style.css – Feuille de style principale
   Version : 1.0 | 2026
   ═══════════════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --navy:   #1a4e8f;
  --navy2:  #2460a7;
  --navy-dark: #0f2a50;
  --green:  #1e6e22;
  --green2: #27922c;
  --gold:   #b8870e;
  --gold2:  #d4a017;
  --white:  #ffffff;
  --off:    #f7f6f3;
  --light:  #eef4fb;
  --text:   #1a2640;
  --muted:  #5a6475;
  --border: rgba(26,78,143,.12);
  --shadow: 0 4px 32px rgba(26,78,143,.09);
  --radius: 6px;
}

/* ── RESET & BASE ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Outfit', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── UTILITAIRES ─────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 5vw; }
.tag {
  display: inline-block;
  font-size: .7rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold2); margin-bottom: .7rem;
}
.title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  font-weight: 700; color: var(--navy);
  line-height: 1.18; margin-bottom: 1rem;
}
.lead {
  font-size: .97rem; line-height: 1.8;
  color: var(--muted); max-width: 560px;
}
.btn-gold {
  background: var(--gold2); color: var(--navy);
  padding: .8rem 2rem; border-radius: var(--radius);
  font-weight: 700; font-size: .9rem;
  transition: transform .2s, box-shadow .2s;
  display: inline-block;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212,160,23,.4);
}
.btn-ghost {
  border: 1.5px solid rgba(255,255,255,.3);
  color: rgba(255,255,255,.9);
  padding: .8rem 2rem; border-radius: var(--radius);
  font-weight: 500; font-size: .9rem;
  transition: all .2s; display: inline-block;
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,.65);
  background: rgba(255,255,255,.07);
}
.btn-navy {
  background: var(--navy); color: var(--white);
  padding: .8rem 2rem; border-radius: var(--radius);
  font-weight: 700; font-size: .9rem;
  display: inline-block;
  transition: background .25s, transform .2s;
}
.btn-navy:hover { background: var(--green); transform: translateY(-1px); }

/* ── ANIMATIONS ──────────────────────────────────────────── */
.anim {
  opacity: 0; transform: translateY(20px);
  transition: opacity .55s ease, transform .55s ease;
}
.anim.vis { opacity: 1; transform: translateY(0); }

/* ── TOPBAR ──────────────────────────────────────────────── */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  font-size: .76rem; font-weight: 500;
  padding: .45rem 5vw;
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
}
.topbar a { color: rgba(255,255,255,.85); transition: color .2s; }
.topbar a:hover { color: var(--gold2); }
.tb-side { display: flex; align-items: center; gap: 1.8rem; flex-wrap: wrap; }
.tbi { display: flex; align-items: center; gap: .5rem; }
.tbi svg { opacity: .7; flex-shrink: 0; }

/* ── NAVBAR ──────────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 900;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 12px rgba(26,78,143,.06);
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 74px;
}
.logo-wrap { display: flex; align-items: center; gap: 14px; }
.logo-wrap img { height: 52px; width: auto; object-fit: contain; display: block; }
.logo-divider { width: 1px; height: 38px; background: var(--border); margin: 0 14px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.lt1 { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 900; color: var(--navy); }
.lt2 { font-size: .68rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--green); }
.lt3 { font-size: .6rem; letter-spacing: .08em; color: var(--muted); }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: .88rem; font-weight: 500; color: var(--text);
  position: relative; padding-bottom: 3px; transition: color .2s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--gold2); transition: width .3s;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--navy); font-weight: 600; }
.nav-btn {
  background: var(--green); color: var(--white);
  padding: .6rem 1.5rem; border-radius: var(--radius);
  font-size: .85rem; font-weight: 700;
  transition: background .25s, transform .2s;
}
.nav-btn:hover { background: var(--navy); transform: translateY(-1px); }

/* ── HERO ────────────────────────────────────────────────── */
#hero {
  background: linear-gradient(135deg, #1a4e8f 0%, #1e5fa8 50%, #14592e 100%);
  padding: 90px 5vw 80px;
  position: relative; overflow: hidden;
}
.ring { position: absolute; border-radius: 50%; pointer-events: none; }
.r1 { width: 700px; height: 700px; top: -260px; right: -210px; border: 1px solid rgba(212,160,23,.13); }
.r2 { width: 460px; height: 460px; top: -120px; right: -60px;  border: 1px solid rgba(30,110,34,.1); }
.r3 { width: 240px; height: 240px; top: 30px;   right: 90px;   border: 1px solid rgba(212,160,23,.08); }
.hero-grid {
  display: grid; grid-template-columns: 1fr 400px;
  gap: 5vw; align-items: center; position: relative; z-index: 2;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  background: rgba(212,160,23,.15); border: 1px solid rgba(212,160,23,.3);
  color: var(--gold2); font-size: .7rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  padding: .4rem 1rem; border-radius: 2px; margin-bottom: 1.5rem;
}
.hero-eyebrow em { width: 6px; height: 6px; border-radius: 50%; background: var(--gold2); display: block; font-style: normal; }
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.3rem, 4.2vw, 3.6rem);
  font-weight: 900; line-height: 1.08; color: var(--white);
  margin-bottom: 1.3rem;
}
.hg { color: #4ecb55; }
.hd { color: var(--gold2); }
.hero-sub {
  font-size: .98rem; line-height: 1.8;
  color: rgba(255,255,255,.72);
  max-width: 520px; margin-bottom: 2.2rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.8rem; }
.hero-stats { display: flex; gap: 2.5rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.1); }
.hs-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--gold2); line-height: 1; }
.hs-lbl { font-size: .73rem; color: rgba(255,255,255,.52); margin-top: .25rem; letter-spacing: .04em; }
.hero-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px; backdrop-filter: blur(8px); padding: 1.8rem;
}
.hc-label { font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--gold2); margin-bottom: 1.3rem; }
.hci { display: flex; align-items: center; gap: .9rem; padding: .8rem 0; border-bottom: 1px solid rgba(255,255,255,.07); }
.hci:last-child { border-bottom: none; }
.hci-icon { width: 38px; height: 38px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.bg1{background:var(--navy2)} .bg2{background:var(--green)} .bg3{background:var(--gold)} .bg4{background:#2460a7} .bg5{background:#165c1a}
.hci p { font-size: .8rem; font-weight: 600; color: rgba(255,255,255,.87); line-height: 1.3; }

/* ── STRIP ACTIVITÉS ─────────────────────────────────────── */
#activites { background: var(--navy); border-top: 3px solid var(--gold2); }
.strip { display: flex; align-items: stretch; }
.s-item {
  flex: 1; display: flex; align-items: center; gap: .9rem;
  padding: 1.5rem 1.3rem;
  border-right: 1px solid rgba(255,255,255,.08);
  transition: background .25s; cursor: default;
}
.s-item:last-child { border-right: none; }
.s-item:hover { background: rgba(255,255,255,.05); }
.s-icon { width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.si-n{background:var(--navy2)} .si-g{background:var(--green)} .si-d{background:var(--gold)}
.s-lbl { font-size: .74rem; font-weight: 700; color: rgba(255,255,255,.88); line-height: 1.35; text-transform: uppercase; letter-spacing: .03em; }

/* ── SERVICES ────────────────────────────────────────────── */
#services { padding: 100px 5vw; background: var(--off); }
.svc-layout { display: grid; grid-template-columns: 360px 1fr; gap: 5vw; align-items: start; }
.svc-intro { position: sticky; top: 90px; }
.svc-intro .lead { margin-bottom: 1.8rem; }
.svc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.svc-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 10px; padding: 1.9rem 1.7rem;
  position: relative; overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.svc-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; transform: scaleX(0); transform-origin: left; transition: transform .35s;
}
.cn::after{background:var(--navy)} .cg::after{background:var(--green)}
.cd::after{background:var(--gold2)} .ck::after{background:#2460a7} .ct::after{background:#0e7a6e}
.svc-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(26,78,143,.1); border-color: transparent; }
.svc-card:hover::after { transform: scaleX(1); }
.svc-ic { width: 50px; height: 50px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem; }
.in{background:var(--navy)} .ig{background:var(--green)} .id{background:var(--gold)} .ik{background:#2460a7} .it{background:#0c6a5e}
.svc-card h3 { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: .55rem; }
.svc-card p { font-size: .83rem; line-height: 1.72; color: var(--muted); }

/* ── À PROPOS ────────────────────────────────────────────── */
#about { padding: 100px 5vw; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6vw; align-items: center; max-width: 1200px; margin: 0 auto; }
.about-vis { position: relative; padding-bottom: 30px; }
.about-main {
  background: var(--navy); border-radius: 12px;
  padding: 2.8rem 2.3rem; position: relative; overflow: hidden;
}
.about-main::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 220px; height: 220px; border-radius: 50%;
  background: rgba(212,160,23,.07);
}
.about-main blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700; line-height: 1.45;
  color: var(--white); margin-bottom: 1.3rem; position: relative; z-index: 1;
}
.eg { color: #4ecb55; }
.ed { color: var(--gold2); }
.about-src { font-size: .73rem; color: rgba(255,255,255,.45); letter-spacing: .08em; text-transform: uppercase; position: relative; z-index: 1; }
.about-badge {
  position: absolute; bottom: -18px; right: 1.5rem;
  background: var(--gold2); color: var(--navy);
  padding: 1rem 1.5rem; border-radius: 8px;
  font-weight: 800; font-size: .83rem; text-align: center;
  box-shadow: 0 8px 28px rgba(212,160,23,.35);
}
.about-badge .bn { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 900; display: block; line-height: 1; }
.about-content p { font-size: .95rem; line-height: 1.82; color: var(--muted); margin-bottom: 1rem; }
.pillars { margin-top: 1.8rem; display: flex; flex-direction: column; gap: .8rem; }
.prow {
  display: flex; align-items: flex-start; gap: .9rem;
  padding: 1rem 1.1rem; background: var(--off);
  border-radius: var(--radius); border-left: 3px solid var(--gold2);
}
.pico { font-size: 1.15rem; flex-shrink: 0; margin-top: 2px; }
.pb h4 { font-size: .82rem; font-weight: 700; color: var(--navy); margin-bottom: .2rem; }
.pb p  { font-size: .79rem; color: var(--muted); line-height: 1.55; }

/* ── SECTEURS ────────────────────────────────────────────── */
#secteurs { background: var(--navy); padding: 90px 5vw; text-align: center; }
.pills { display: flex; flex-wrap: wrap; justify-content: center; gap: .8rem; margin-top: 2.5rem; }
.pill {
  border: 1px solid rgba(255,255,255,.18); border-radius: 100px;
  padding: .52rem 1.3rem; font-size: .81rem; font-weight: 500;
  color: rgba(255,255,255,.8); transition: all .25s; cursor: default;
}
.pill:hover { background: var(--gold2); border-color: var(--gold2); color: var(--navy); font-weight: 700; }

/* ── CONTACT ─────────────────────────────────────────────── */
#contact { padding: 100px 5vw; background: var(--off); }
.c-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 5vw; align-items: start; max-width: 1200px; margin: 0 auto; }
.c-left .lead { margin-bottom: 2rem; }
.c-items { display: flex; flex-direction: column; gap: .9rem; }
.c-item {
  display: flex; align-items: flex-start; gap: .9rem;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.1rem 1.2rem;
}
.c-ico { width: 40px; height: 40px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cin{background:var(--navy)} .cig{background:var(--green)} .cid{background:var(--gold)}
.c-body h4 { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--navy); margin-bottom: .25rem; }
.c-body p, .c-body a { font-size: .87rem; color: var(--muted); line-height: 1.6; }
.c-body a { color: var(--green); font-weight: 500; transition: color .2s; }
.c-body a:hover { color: var(--navy); }
.c-form {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; padding: 2.4rem 2.1rem; box-shadow: var(--shadow);
}
.c-form h3 { font-family: 'Playfair Display', serif; font-size: 1.45rem; font-weight: 700; color: var(--navy); margin-bottom: 1.5rem; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg { margin-bottom: 1.05rem; }
.fg label { display: block; font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--navy); margin-bottom: .35rem; }
.fg input, .fg textarea, .fg select {
  width: 100%; border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: .7rem .95rem;
  font-size: .9rem; font-family: inherit;
  color: var(--text); background: var(--white);
  transition: border-color .2s, box-shadow .2s; outline: none;
}
.fg input:focus, .fg textarea:focus, .fg select:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,78,143,.09);
}
.fg textarea { resize: vertical; min-height: 106px; }
.f-btns { display: flex; flex-direction: column; gap: .75rem; margin-top: .3rem; }
.f-btn {
  width: 100%; background: var(--navy); color: var(--white);
  border: none; padding: .85rem; border-radius: var(--radius);
  font-size: .9rem; font-weight: 700; letter-spacing: .03em;
  cursor: pointer; font-family: inherit;
  transition: background .25s, transform .2s;
}
.f-btn:hover { background: var(--green); transform: translateY(-1px); }
.f-btn-wa {
  width: 100%; background: #25D366; color: #fff;
  border: none; padding: .85rem; border-radius: var(--radius);
  font-size: .9rem; font-weight: 700; letter-spacing: .03em;
  cursor: pointer; font-family: inherit;
  transition: background .25s, transform .2s;
  display: flex; align-items: center; justify-content: center; gap: .6rem;
  text-decoration: none;
}
.f-btn-wa:hover { background: #1ebe5d; transform: translateY(-1px); }
.or-sep {
  text-align: center; font-size: .75rem; color: var(--muted);
  position: relative; margin: .2rem 0;
}
.or-sep::before, .or-sep::after {
  content: ''; position: absolute; top: 50%;
  width: 42%; height: 1px; background: var(--border);
}
.or-sep::before { left: 0; } .or-sep::after { right: 0; }

/* ── WHATSAPP FLOTTANT ───────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  background: #25D366; color: #fff; border-radius: 50%;
  width: 58px; height: 58px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.55); }
.wa-float svg { width: 30px; height: 30px; }

/* ── FOOTER ──────────────────────────────────────────────── */
footer { background: var(--navy-dark); color: rgba(255,255,255,.65); }
.ft-main {
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 3rem; padding: 60px 5vw 40px;
}
.ft-brand .fn { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 900; color: var(--white); margin-bottom: .3rem; }
.ft-brand .fs { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--green2); margin-bottom: .9rem; }
.ft-brand p { font-size: .81rem; line-height: 1.75; max-width: 270px; margin-bottom: 1.1rem; }
.nif { display: inline-block; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); padding: .35rem .85rem; border-radius: 3px; font-size: .68rem; letter-spacing: .05em; color: rgba(255,255,255,.45); }
.ft-col h4 { font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--gold2); margin-bottom: 1rem; }
.ft-col ul { list-style: none; }
.ft-col li { margin-bottom: .5rem; }
.ft-col a { font-size: .81rem; color: rgba(255,255,255,.52); transition: color .2s; }
.ft-col a:hover { color: var(--white); }
.ft-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 5vw; border-top: 1px solid rgba(255,255,255,.07);
  font-size: .73rem; flex-wrap: wrap; gap: .5rem;
}
.ft-bar .lft { color: rgba(255,255,255,.28); }
.ft-bar .rgt { color: var(--gold2); }

/* ── PAGE INTÉRIEURE ─────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, #1a4e8f 0%, #1e5fa8 70%, #1e6e22 100%);
  padding: 80px 5vw 60px; text-align: center;
}
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: var(--white); margin-bottom: .8rem; }
.page-hero p { font-size: 1rem; color: rgba(255,255,255,.75); max-width: 560px; margin: 0 auto; }
.breadcrumb { font-size: .78rem; color: rgba(255,255,255,.5); margin-bottom: 1rem; }
.breadcrumb a { color: var(--gold2); }
.page-body { padding: 80px 5vw; max-width: 1200px; margin: 0 auto; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .svc-layout { grid-template-columns: 1fr; }
  .svc-intro { position: static; }
  .about-grid { grid-template-columns: 1fr; }
  .c-grid { grid-template-columns: 1fr; }
  .ft-main { grid-template-columns: 1fr 1fr; }
  .strip { flex-wrap: wrap; }
  .s-item { flex: 1 1 46%; border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
}
@media (max-width: 680px) {
  .nav-links { display: none; }
  .frow { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .ft-main { grid-template-columns: 1fr; }
  .tb-right { display: none; }
}
