/* ============================================================
   TERANGA SENEGAL — Global Stylesheet
   Couleurs: OR #C9A84C | Noir #0A0A0C | Blanc #F8F8F6
   (Google Fonts chargees via <link> dans le HTML)
   ============================================================ */

:root {
  --gold:    #C9A84C;
  --gold-l:  #E8C97A;
  --gold-d:  #A8893A;
  --gold-f:  rgba(201, 168, 76, 0.08);
  --black:   #0A0A0C;
  --black-s: #111114;
  --black-c: #18181C;
  --black-h: #222228;
  --white:   #F8F8F6;
  --white-m: #C8C8C4;
  --muted:   #787874;
  --nav-h:   80px;
  --sp:      clamp(64px, 9vw, 120px);
  --mw:      1220px;
  --r:       10px;
  --t:       0.3s ease;
  --sh:      0 20px 60px rgba(0, 0, 0, 0.5);
  --sg:      0 8px 40px rgba(201, 168, 76, 0.25);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', Arial, sans-serif;
  background: #0A0A0C;
  color: #F8F8F6;
  overflow-x: hidden;
  line-height: 1.65;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; outline: none; font-family: 'Outfit', Arial, sans-serif; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', Georgia, serif; line-height: 1.15; }

/* ---- HELPERS ---- */
.label {
  font-size: 0.72rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: block;
  margin-bottom: 14px;
}

.sec-title {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 18px;
}

.sec-title em { font-style: italic; color: var(--gold); }
.sec-sub { font-size: clamp(0.95rem, 1.5vw, 1.05rem); color: var(--muted); max-width: 560px; font-weight: 300; }

.container {
  max-width: var(--mw);
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 48px);
}

section { padding: var(--sp) 0; }

.gold-line {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 22px 0;
}

/* ---- BOUTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 34px;
  border-radius: var(--r);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: var(--t);
  min-height: 50px;
  white-space: nowrap;
  font-family: 'Outfit', Arial, sans-serif;
  border: none;
  cursor: pointer;
}

.btn-gold { background: var(--gold); color: var(--black); }
.btn-gold:hover { background: var(--gold-l); transform: translateY(-2px); box-shadow: var(--sg); }
.btn-outline { background: transparent; color: var(--gold); border: 1.5px solid var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--black); transform: translateY(-2px); }
.btn-sm { padding: 10px 22px; min-height: 44px; font-size: 0.82rem; }

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s, box-shadow 0.4s;
}

.navbar.scrolled {
  background: rgba(10, 10, 12, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 2px 40px rgba(0, 0, 0, 0.6);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo { display: flex; flex-direction: column; }

.nav-logo .brand {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  line-height: 1;
}

.nav-logo .tagline {
  font-size: 0.6rem;
  letter-spacing: 3px;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white-m);
  transition: color var(--t);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--t);
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 16px; }

.nav-cta {
  background: var(--gold);
  color: var(--black);
  padding: 10px 24px;
  border-radius: var(--r);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  transition: var(--t);
  min-height: 44px;
  display: flex;
  align-items: center;
}

.nav-cta:hover { background: var(--gold-l); transform: translateY(-1px); }

.cart-wrap {
  position: relative;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-wrap svg {
  width: 22px; height: 22px;
  stroke: var(--white-m);
  transition: stroke var(--t);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-wrap:hover svg { stroke: var(--gold); }

.cart-badge {
  position: absolute;
  top: 2px; right: 2px;
  min-width: 18px; height: 18px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.6rem;
  font-weight: 700;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
}

.cart-badge.show { display: flex; }

/* ---- BURGER ---- */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  transition: var(--t);
  transform-origin: center;
}

.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- MOBILE NAV ---- */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(10, 10, 12, 0.99);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  z-index: 999;
  padding: 20px 24px 28px;
  transform: translateY(-110%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-nav.open { transform: translateY(0); }

.mobile-nav a {
  display: block;
  padding: 14px 0;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-m);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color var(--t);
}

.mobile-nav a:hover { color: var(--gold); }

.mobile-nav .m-cta {
  display: block;
  margin-top: 18px;
  text-align: center;
  background: var(--gold);
  color: var(--black);
  padding: 14px;
  border-radius: var(--r);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

/* ---- WHATSAPP FLOTTANT ---- */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 998;
  width: 62px; height: 62px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.45);
  transition: transform var(--t), box-shadow var(--t);
  animation: wa-pulse 2.5s ease-in-out infinite;
}

.wa-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 36px rgba(37, 211, 102, 0.6);
  animation: none;
}

.wa-float svg { width: 30px; height: 30px; fill: #fff; }

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.45); }
  50%       { box-shadow: 0 4px 44px rgba(37, 211, 102, 0.75), 0 0 0 12px rgba(37, 211, 102, 0.08); }
}

/* ---- FOOTER ---- */
.footer {
  background: var(--black-s);
  border-top: 1px solid rgba(201, 168, 76, 0.12);
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 14px;
}

.footer-brand p { font-size: 0.9rem; color: var(--muted); line-height: 1.75; max-width: 270px; }

.footer-col h4 {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-family: 'Outfit', Arial, sans-serif;
  font-weight: 600;
}

.footer-col li + li { margin-top: 10px; }
.footer-col a, .footer-col span { font-size: 0.9rem; color: var(--muted); transition: color var(--t); }
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { font-size: 0.82rem; color: var(--muted); }

/* ---- ANIMATIONS ---- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ---- BADGE ---- */
.badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 5px;
  z-index: 2;
}

/* ---- PAGE HEADER ---- */
.pg-header {
  padding: calc(var(--nav-h) + 64px) 0 60px;
  text-align: center;
  background: linear-gradient(180deg, rgba(201, 168, 76, 0.06) 0%, transparent 100%);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.pg-header h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 300; }

/* ---- CARD ---- */
.card {
  background: var(--black-c);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--r);
  overflow: hidden;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 168, 76, 0.2);
  box-shadow: var(--sg);
}

/* ---- FORMS ---- */
.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--black-c);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r);
  color: var(--white);
  font-family: 'Outfit', Arial, sans-serif;
  font-size: 0.95rem;
  padding: 14px 16px;
  transition: border-color var(--t);
  min-height: 50px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--black-c); }

/* ---- TOAST ---- */
.toast {
  position: fixed;
  bottom: 100px; right: 28px;
  background: var(--black-c);
  border: 1px solid var(--gold);
  color: var(--white);
  padding: 14px 20px;
  border-radius: var(--r);
  font-size: 0.9rem;
  z-index: 9999;
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  max-width: 300px;
  box-shadow: var(--sg);
}

.toast.show { transform: translateX(0); }
.toast.ok   { border-color: #3DDC84; }
.toast.err  { border-color: #FF6B6B; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 68px; }
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }
  .mobile-nav { display: block; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand p { max-width: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .wa-float { bottom: 20px; right: 20px; width: 56px; height: 56px; }
  .toast { right: 16px; left: 16px; max-width: none; }
}

/* ============================================================
   AJOUTS — Logo, Réseaux sociaux, Téléchargement images
   ============================================================ */

/* ---- LOGO NAVBAR ---- */
.nav-logo {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(201,168,76,0.25));
  transition: transform 0.3s ease;
}
.nav-logo:hover .nav-logo-img { transform: scale(1.05); }
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-text .brand {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  line-height: 1;
}
.nav-logo-text .tagline {
  font-size: 0.6rem;
  letter-spacing: 3px;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 3px;
}
@media (max-width: 480px) {
  .nav-logo-img { height: 40px; }
  .nav-logo-text .brand { font-size: 1.15rem; }
}

/* ---- MOBILE NAV LOGO ---- */
.mobile-nav-logo {
  text-align: center;
  padding: 18px 0 10px;
  border-bottom: 1px solid rgba(201,168,76,0.2);
  margin-bottom: 12px;
}

/* ---- FOOTER LOGO ---- */
.footer-brand-logo { margin-bottom: 8px; }

/* ---- RÉSEAUX SOCIAUX FOOTER ---- */
.footer-social { margin-top: 20px; }
.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}
.soc-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  color: #fff;
  text-decoration: none;
  flex-shrink: 0;
}
.soc-icon:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.4); }
.soc-fb  { background: #1877F2; }
.soc-fb:hover  { background: #166fe5; }
.soc-ig  { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.soc-ig:hover  { filter: brightness(1.1); }
.soc-sc  { background: #FFFC00; color: #000 !important; }
.soc-sc svg { fill: #000 !important; }
.soc-sc:hover  { background: #e6e300; }
.soc-tt  { background: #010101; border: 1px solid rgba(255,255,255,0.2); }
.soc-tt:hover  { background: #1a1a1a; }
.soc-x   { background: #000; border: 1px solid rgba(255,255,255,0.2); }
.soc-x:hover   { background: #1a1a1a; }
.soc-li  { background: #0A66C2; }
.soc-li:hover  { background: #004182; }

/* ---- RÉSEAUX SOCIAUX PAGE CONTACT ---- */
.social-links { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 12px; }
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: var(--r);
  font-size: 0.82rem;
  font-weight: 500;
  transition: var(--t);
  color: #fff;
  min-height: 42px;
}
.social-btn svg { width: 16px; height: 16px; fill: currentColor; }
.social-btn.whatsapp { background: #25D366; }
.social-btn.whatsapp:hover { background: #1ebe57; transform: translateY(-2px); }
.social-btn.facebook  { background: #1877F2; }
.social-btn.facebook:hover  { background: #166fe5; transform: translateY(-2px); }
.social-btn.instagram { background: linear-gradient(45deg,#f09433,#dc2743,#bc1888); }
.social-btn.instagram:hover { filter: brightness(1.1); transform: translateY(-2px); }

/* ---- PAGE SERVICES ---- */
.services-hero {
  padding: calc(var(--nav-h) + 48px) 0 56px;
  background: linear-gradient(160deg, var(--black-s) 0%, var(--black-c) 100%);
  text-align: center;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.services-hero .label { margin-bottom: 12px; }
.services-hero h1 { margin-bottom: 18px; }
.services-hero p { color: var(--muted); max-width: 560px; margin: 0 auto; }

.services-grid-main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
@media (max-width: 900px)  { .services-grid-main { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px)  { .services-grid-main { grid-template-columns: 1fr; } }

.srv-card {
  background: var(--black-c);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.srv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  border-color: rgba(201,168,76,0.35);
}
.srv-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.srv-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.srv-card:hover .srv-card-img img { transform: scale(1.06); }
.srv-card-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 4px;
}
.srv-card-body { padding: 22px; }
.srv-card-body h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.2;
}
.srv-card-body p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 14px;
}
.srv-card-feats {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}
.srv-feat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--white-m);
}
.srv-feat::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

/* ---- TRAITEUR SECTION ---- */
.traiteur-section {
  background: var(--black-s);
  border-radius: var(--r);
  padding: clamp(32px, 5vw, 56px);
  border: 1px solid rgba(201,168,76,0.2);
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 768px) { .traiteur-section { grid-template-columns: 1fr; } }
.traiteur-img { position: relative; border-radius: var(--r); overflow: hidden; }
.traiteur-img img { width: 100%; height: 320px; object-fit: cover; border-radius: var(--r); }
.traiteur-badge {
  position: absolute;
  bottom: 18px; left: 18px;
  background: var(--gold);
  color: var(--black);
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.85rem;
}

/* ---- PROCESS STEPS ---- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
  margin-top: 56px;
}
@media (max-width: 900px) { .process-steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .process-steps { grid-template-columns: 1fr; } }
.step-card {
  text-align: center;
  padding: 28px 16px;
  background: var(--black-c);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r);
  transition: border-color 0.3s;
}
.step-card:hover { border-color: rgba(201,168,76,0.35); }
.step-num {
  width: 52px; height: 52px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
}
.step-card h4 { font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.step-card p  { font-size: 0.82rem; color: var(--muted); line-height: 1.6; }

/* ---- CTA SERVICES ---- */
.srv-cta {
  text-align: center;
  margin-top: 64px;
  padding: clamp(36px,6vw,64px);
  background: linear-gradient(135deg, rgba(201,168,76,0.08) 0%, rgba(10,10,12,0) 100%);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--r);
}
.srv-cta h2 { margin-bottom: 14px; }
.srv-cta p  { color: var(--muted); max-width: 500px; margin: 0 auto 28px; }
.srv-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---- TÉLÉPHONES (2 numéros) ---- */
.tel-group { display: flex; flex-direction: column; gap: 4px; }
.tel-group a { display: block; }
