/* ---------- COULEURS ---------- */
:root {
  --gb-green: #0f7b47;   /* vert manioc / feuilles */
  --gb-brown: #c48a3b;   /* marron doré / gari */
}

.text-gb-green { color: var(--gb-green); }
.text-gb-brown { color: var(--gb-brown); }

.bg-gb-green { background-color: var(--gb-green); }
.bg-gb-brown { background-color: var(--gb-brown); }

/* ---------- NAVIGATION ---------- */
.nav-link {
  position: relative;
  padding-bottom: 0.15rem;
  color: rgb(71, 85, 105);
  transition: color 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(to right, var(--gb-brown), var(--gb-green));
  transition: width 0.25s ease;
}

.nav-link:hover {
  color: var(--gb-brown);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link-active {
  color: var(--gb-brown);
}

.nav-link-active::after {
  width: 100%;
}

.nav-link-mobile {
  padding: 0.4rem 0;
  color: rgb(71, 85, 105);
}

.nav-link-mobile-active {
  color: var(--gb-brown);
  font-weight: 600;
}

/* ---------- BOUTONS ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, var(--gb-brown), var(--gb-green));
  box-shadow:
    0 14px 30px rgba(15, 123, 71, 0.25),
    0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 40px rgba(15, 123, 71, 0.3),
    0 6px 18px rgba(0, 0, 0, 0.06);
  filter: brightness(1.02);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(148, 163, 184, 0.7);
  color: rgb(71, 85, 105);
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  transition: background-color 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.hero-ghost {
  color: #f9fafb;
  border-color: rgba(248, 250, 252, 0.7);
  background-color: rgba(15, 23, 42, 0.15);
}

.hero-ghost:hover {
  background-color: rgba(15, 23, 42, 0.3);
  border-color: #fefce8;
}

.btn-ghost:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.5rem 1.15rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.9);
  font-size: 0.8rem;
  font-weight: 500;
  color: rgb(71, 85, 105);
  background-color: white;
  transition: all 0.18s ease;
}

.btn-outline:hover {
  border-color: var(--gb-brown);
  color: var(--gb-brown);
  transform: translateY(-1px);
}

/* ---------- AVATARS ---------- */
.avatar-circle {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  border: 2px solid white;
}

/* ---------- TITRES & PARAGRAPHES ---------- */
.section-title {
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgb(15, 23, 42);
}

.section-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgb(75, 85, 99);
}

/* ---------- HERO SECTION FULL BACKGROUND ---------- */
.hero-section {
  position: relative;
  min-height: 380px;
  color: #f9fafb;
}

@media (min-width: 768px) {
  .hero-section {
    min-height: 460px;
  }
}

@media (min-width: 1024px) {
  .hero-section {
    min-height: 520px;
  }
}

/* Slides */
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

/* Overlay dégradé foncé pour le texte */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(248, 250, 252, 0.12), transparent 55%),
    linear-gradient(120deg, rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.55), rgba(15, 23, 42, 0.8));
}

/* Cartes infos dans le hero */
.hero-badge-card {
  border-radius: 1.1rem;
  background: rgba(15, 23, 42, 0.45);
  border: 1px solid rgba(248, 250, 252, 0.24);
  padding: 0.7rem 0.9rem;
  font-size: 0.8rem;
  backdrop-filter: blur(10px);
  box-shadow:
    0 18px 40px rgba(15, 23, 42, 0.4),
    0 0 0 1px rgba(15, 23, 42, 0.7);
}

.hero-badge-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(248, 250, 252, 0.7);
  margin-bottom: 0.1rem;
}

.hero-badge-value {
  font-size: 0.85rem;
  font-weight: 500;
}

.hero-badge-phone {
  border-color: rgba(251, 191, 36, 0.7);
}

/* Dots en bas du hero */
.hero-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.75rem;
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  z-index: 20;
}

.dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  border: none;
  background-color: rgba(148, 163, 184, 0.7);
  transition: width 0.2s ease, background-color 0.2s ease;
}

.dot.is-active {
  width: 1.2rem;
  background: linear-gradient(90deg, var(--gb-brown), var(--gb-green));
}

/* ---------- CARTES D'INFO (AVEC ICÔNES ANIMÉES) ---------- */
.info-card {
  position: relative;
  border-radius: 1.1rem;
  background: white;
  border: 1px solid rgba(226, 232, 240, 0.95);
  padding: 0.95rem 0.95rem 0.8rem 0.95rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  overflow: hidden;
}

.info-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgb(148, 163, 184);
  margin-bottom: 0.15rem;
}

.info-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgb(30, 64, 175);
}

/* badge icône animé dans les cartes */
.info-icon-badge {
  position: absolute;
  top: 0.6rem;
  right: 0.7rem;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 20%, #fef3c7, #fffbeb);
  color: var(--gb-green);
  font-size: 1.1rem;
  box-shadow:
    0 8px 18px rgba(15, 23, 42, 0.12),
    0 0 0 1px rgba(248, 250, 252, 1);
  animation: infoIconPulse 3s ease-in-out infinite;
}

@keyframes infoIconPulse {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-2px) scale(1.05);
  }
}

/* Hover clean sur les cartes info */
.hover-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 22px 55px rgba(15, 23, 42, 0.08),
    0 0 0 1px rgba(148, 163, 184, 0.15);
  border-color: rgba(148, 163, 184, 0.7);
}

/* ---------- TAGS ---------- */
.tag-chip {
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
  border: 1px solid rgba(148, 163, 184, 0.8);
  background-color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 0.8rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

/* ---------- PRODUITS (APERÇU BOUTIQUE) ---------- */
.product-card {
  border-radius: 1.3rem;
  background-color: white;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow:
    0 20px 45px rgba(15, 23, 42, 0.06),
    0 0 0 1px rgba(148, 163, 184, 0.04);
  transform: translateY(0) scale(1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow:
    0 26px 60px rgba(15, 23, 42, 0.09),
    0 0 0 1px rgba(148, 163, 184, 0.12);
}

.product-image {
  height: 9rem;
  background: linear-gradient(120deg, #fef3c7, #f1f5f9);
  overflow: hidden;
}

.product-image img {
  transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.06);
}

.product-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgb(15, 23, 42);
}

.product-desc {
  margin-top: 0.25rem;
  font-size: 0.8rem;
  color: rgb(100, 116, 139);
}

/* ---------- VALEURS / ENGAGEMENTS ---------- */
.value-card {
  border-radius: 1.3rem;
  background: white;
  padding: 1.15rem;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow:
    0 18px 45px rgba(15, 23, 42, 0.05),
    0 0 0 1px rgba(148, 163, 184, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.value-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgb(15, 23, 42);
}

.value-text {
  font-size: 0.82rem;
  color: rgb(100, 116, 139);
  margin-top: 0.2rem;
}

/* Icône animée pour engagements */
.animated-icon {
  font-size: 1.7rem;
  margin-bottom: 0.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #fef3c7, #fffbeb);
  color: var(--gb-green);
  box-shadow:
    0 8px 18px rgba(15, 23, 42, 0.12),
    0 0 0 1px rgba(248, 250, 252, 1);
  animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-3px) scale(1.05);
  }
}

/* Hover sur engagement */
.hover-bounce:hover {
  transform: translateY(-6px);
  box-shadow:
    0 26px 60px rgba(15, 23, 42, 0.12),
    0 0 0 1px rgba(148, 163, 184, 0.18);
}

.hover-bounce:hover .animated-icon {
  animation-duration: 1.5s;
  filter: brightness(1.05);
}

/* ---------- PARTENAIRES (BANDEAU QUI DÉFILE) ---------- */
.partners-strip {
  position: relative;
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: radial-gradient(circle at 0 0, #fef3c7 0, #f8fafc 45%, #ffffff 100%);
  padding: 0.75rem 0;
}

.partners-track {
  display: flex;
  align-items: center;
  gap: 3rem;
  animation: partnersScroll 22s linear infinite;
}

.partner-logo {
  height: 70px;
  width: auto;
  object-fit: contain;
  filter: grayscale(0.1);
  opacity: 0.85;
  transition: filter 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.partner-logo:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: translateY(-2px) scale(1.03);
}

@keyframes partnersScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ---------- FOOTER ---------- */
.footer-title {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgb(148, 163, 184);
  margin-bottom: 0.5rem;
}

.footer-link {
  color: rgb(209, 213, 219);
  text-decoration: none;
  position: relative;
  padding-bottom: 1px;
  transition: color 0.18s ease;
}

.footer-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(to right, var(--gb-brown), var(--gb-green));
  transition: width 0.2s ease;
}

.footer-link:hover {
  color: #e5e7eb;
}

.footer-link:hover::after {
  width: 100%;
}

/* ---------- ANIMATION AU DÉFILEMENT ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
}

.reveal-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 640px) {
  .product-image {
    height: 8rem;
  }
}
/* -------- IMAGE ANIMÉE ZA-KPOTA -------- */
.zakpota-image-wrapper {
  position: relative;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1024px) {
  .zakpota-image-wrapper {
    max-width: 400px;
  }
}

.zakpota-image-inner {
  position: relative;
  border-radius: 1.8rem;
  overflow: hidden;
  background: radial-gradient(circle at 0 0, #fef3c7, #f1f5f9);
  box-shadow:
    0 26px 60px rgba(15, 23, 42, 0.25),
    0 0 0 1px rgba(148, 163, 184, 0.25);
  animation: zakFloat 7s ease-in-out infinite;
  transform-origin: center;
}

.zakpota-image-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 0, rgba(254, 249, 195, 0.38), transparent 55%);
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.zakpota-image-inner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}

/* Effet au survol : pause de l’animation + léger tilt */
.zakpota-image-wrapper:hover .zakpota-image-inner {
  animation-play-state: paused;
  transform: translateY(-4px) rotate(-1.5deg) scale(1.02);
}

.zakpota-image-wrapper:hover img {
  transform: scale(1.05);
  filter: saturate(1.08);
}

/* Badge de localisation */
.zakpota-badge {
  position: absolute;
  left: 0.9rem;
  bottom: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.82);
  color: #e5e7eb;
  font-size: 0.7rem;
  font-weight: 500;
  backdrop-filter: blur(8px);
  box-shadow:
    0 14px 35px rgba(15, 23, 42, 0.5),
    0 0 0 1px rgba(15, 23, 42, 0.6);
}

/* Animation flottante douce */
@keyframes zakFloat {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-6px) rotate(-0.8deg);
  }
  50% {
    transform: translateY(0px) rotate(0.4deg);
  }
  75% {
    transform: translateY(-4px) rotate(-0.4deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}
.pagination-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  background-color: #ffffff;
  color: rgb(71, 85, 105);
  font-weight: 500;
  font-size: 0.8rem;
  cursor: pointer;
  transition: background-color 0.18s ease, border-color 0.18s ease,
              color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.pagination-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
  border-color: var(--gb-brown);
}

.pagination-btn-disabled {
  opacity: 0.5;
  cursor: default;
  box-shadow: none;
  transform: none;
}
.about-img-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  background-color: #e5e7eb;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.22);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.about-img-main {
  height: 220px;
}

@media (min-width: 768px) {
  .about-img-main {
    height: 260px;
  }
}

.about-img-secondary {
  position: absolute;
  right: -8%;
  bottom: -10%;
  width: 60%;
  height: 150px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.25);
}

@media (min-width: 768px) {
  .about-img-secondary {
    right: -5%;
    bottom: -12%;
    height: 170px;
  }
}

/* Effet hover / légère animation */
.about-img-card img {
  transform: scale(1.02);
  transition: transform 0.6s ease;
}

.about-img-card:hover img {
  transform: scale(1.07);
}

.about-img-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.35);
}
/* Cartes de galerie en mode box */
.gallery-card {
  border-radius: 1rem;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(226, 232, 240, 0.8);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.2);
}

/* Wrapper pour que toutes les images aient la même dimension */
.gallery-image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 70%; /* ratio 7/10 environ, toutes les images mêmes proportions */
  overflow: hidden;
  background-color: #e5e7eb;
}

/* Image qui remplit la box */
.gallery-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.6s ease;
}

.gallery-card:hover .gallery-image {
  transform: scale(1.08);
}

/* Légende */
.gallery-caption {
  font-size: 0.8rem;
  line-height: 1.5;
  color: #475569;
}
