/* ===============================
   🎨 Thème ULTEUME TRANSFERT
   Noir & Blanc — Palette sobre
   =============================== */

:root {
  --primary: #000000;           /* Couleur principale */
  --primary-hover: #333333;     /* Survol */
  --primary: #000000;           /* Noir - Accent principal */
  --secondary: #ffffff;         /* Blanc - Accent secondaire */
  --background: #ffffff;        /* Fond général */
  --background-dark: #000000;   /* Header/Footer */
  --text-main: #000000;         /* Texte principal */
  --text-invert: #ffffff;       /* Texte inversé (fond noir) */
  --text-secondary: #777777;    /* Texte gris secondaire */
  --border-color: #bfbfbf;      /* Bordures et séparateurs */
  --danger: #ff0000;            /* Rouge erreur */
  --success: #00b050;           /* Vert succès */
  --transition: 0.3s ease;      /* Transition douce */
}

/* ===============================
   📊 Cards / Stats — Style Ulteume Transfert
   =============================== */

.card {
  position: relative;
  border-left: 3px solid var(--primary) !important;
  background-color: var(--background);
  color: var(--text-main);
  transition: var(--transition);
}

.card:hover {
  border-left-color: var(--text-secondary);
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* ===============================
   🖤 Boutons principaux
   =============================== */

.btn--primary,
.btn.btn-primary {
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
  color: var(--text-invert) !important;
  transition: var(--transition);
}

.btn--primary:hover,
.btn.btn-primary:hover {
  background-color: var(--text-secondary) !important;
  border-color: var(--text-secondary) !important;
}


/* ===============================
   🌐 Base globale
   =============================== */

body {
  background-color: var(--background);
  color: var(--text-main);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--text-secondary);
}

/* ===============================
   🧭 Header & Footer
   =============================== */

header, footer {
  background-color: var(--background-dark);
  color: var(--text-invert);
}

header a, footer a {
  color: var(--text-invert);
}

header a:hover, footer a:hover {
  color: var(--text-secondary);
}

/* ===============================
   🖱️ Boutons
   =============================== */

.btn-primary {
  background-color: var(--primary);
  color: var(--text-invert);
  border: 1px solid var(--primary);
  transition: var(--transition);
}

.btn-primary:hover {
  background-color: var(--text-secondary);
  border-color: var(--text-secondary);
  color: var(--text-invert);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--text-invert);
}

/* ===============================
   🧾 Formulaires & Bordures
   =============================== */

input, select, textarea {
  border: 1px solid var(--border-color);
  color: var(--text-main);
  background-color: var(--secondary);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--primary);
}

/* ===============================
   ⚠️ États (succès / erreur)
   =============================== */

.alert-success {
  background-color: var(--success);
  color: var(--text-invert);
}

.alert-danger {
  background-color: var(--danger);
  color: var(--text-invert);
}

/* ===============================
   🧭 Divers
   =============================== */

hr {
  border-color: var(--border-color);
}

.text-muted {
  color: var(--text-secondary);
}

.bg-dark {
  background-color: var(--background-dark) !important;
  color: var(--text-invert);
}

.bg-light {
  background-color: var(--background) !important;
  color: var(--text-main);
}

/* ===============================
   ✅ Séparateurs & bordures
   =============================== */

hr, .border-bottom, .border-top, .border-left, .border-right {
  border-color: var(--border-color) !important;
  opacity: 1;
}

.card, .box, .section, input, textarea, select {
  border-color: var(--border-color);
}

/* ===============================
   🌙 Couleur blanche dans le menu latéral Agent
   =============================== */

/* Texte par défaut + icônes */
.agent-dashboard .agent-sidenav a,
.agent-dashboard .agent-sidenav i,
.agent-dashboard .agent-sidenav span {
  color: #ffffff !important;
}

/* Texte et icônes actifs */
.agent-dashboard .agent-sidenav a.active,
.agent-dashboard .agent-sidenav li.active > a,
.agent-dashboard .agent-sidenav a:focus,
.agent-dashboard .agent-sidenav a:visited,
.agent-dashboard .agent-sidenav li.active i,
.agent-dashboard .agent-sidenav a.active i {
  color: #ffffff !important;
}

/* Survol */
.agent-dashboard .agent-sidenav a:hover {
  color: #ffffff !important;
}

/* Fond transparent sur l'actif si besoin */
.agent-dashboard .agent-sidenav li.active,
.agent-dashboard .agent-sidenav a.active {
  background-color: transparent !important;
}

/* ====================================
   🌙 Forcer le texte et icônes blancs
   sur les liens actifs et survolés
   dans la sidebar agent
   ==================================== */

.sidebar-menu__link,
.sidebar-menu__link i {
  color: #ffffff !important;
}

.sidebar-menu__link:hover,
.sidebar-menu__link:hover i,
.sidebar-menu__link.active,
.sidebar-menu__link.active i {
  color: #ffffff !important;
  background-color: rgba(255, 255, 255, 0.1) !important;
  border-color: #ffffff !important;
}

/* ====================================
   🧭 Bouton Déconnexion — Site Client
   ==================================== */
.btn--custom {
  background-color: #000000 !important;   /* Noir */
  color: #ffffff !important;              /* Texte blanc */
  border: 1px solid #000000 !important;
  transition: 0.3s ease;
}

.btn--custom:hover {
  background-color: #333333 !important;   /* Gris foncé au survol */
  color: #ffffff !important;
  border-color: #333333 !important;
}

/* ====================================
   📊 Section compteur (counter-section)
   Fond noir & texte blanc
   ==================================== */
.counter-section {
  background-color: #000000 !important; /* fond noir */
  color: #ffffff !important;           /* texte blanc */
}

.counter-section h1,
.counter-section h2,
.counter-section h3,
.counter-section h4,
.counter-section h5,
.counter-section h6,
.counter-section p,
.counter-section span {
  color: #ffffff !important;
}

.counter-section i {
  color: #ffffff !important; /* icônes en blanc */
}


/* ====================================
   🌐 Section Suivez Ulteume — Style Pro
   ==================================== */

/* Fond clair harmonisé avec ton blanc principal */
.follow-ulteume {
  background-color: var(--secondary);
  color: var(--text-main);
  padding-top: 60px;
  padding-bottom: 60px;
}

/* Ligne de formulaire épurée */
.follow-ulteume form {
  border-bottom: 1px solid #000;
  transition: border-color var(--transition);
}
.follow-ulteume input {
  font-size: 15px;
  background: transparent;
  border: none !important;
  padding-bottom: 5px;
}
.follow-ulteume input:focus {
  box-shadow: none;
  border-color: var(--primary);
}
.follow-ulteume button {
  background: transparent;
  border: none;
  color: #000;
  font-size: 20px;
  transition: color var(--transition);
}
.follow-ulteume button:hover {
  color: #555;
}

/* Icônes sociales circulaires uniformisées */
.social-circle {
  width: 38px;
  height: 38px;
  background: #000;
  color: #fff;
  border-radius: 50%;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.social-circle:hover {
  background: #fff;
  color: #000;
  border: 1px solid #000;
  transform: translateY(-3px);
}

/* Badges App Store / Play Store */
.follow-ulteume img {
  height: 42px;
  transition: transform var(--transition);
}
.follow-ulteume img:hover {
  transform: scale(1.07);
}

/* ✅ Responsive clean */
@media (max-width: 768px) {
  .follow-ulteume .row {
    text-align: center;
  }
  .follow-ulteume form {
    width: 100% !important;
    margin: 0 auto;
  }
  .social-circle {
    margin: 3px;
  }
}

/* ==============================
   📱 SECTION APPLICATION MOBILE ULTEUME
   ============================== */

.app-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.app-section h3 {
  font-weight: 800;
  font-size: clamp(2rem, 3vw, 2.6rem);
  color: #000;
  margin-bottom: 20px;
}

.app-section .section__para {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 25px;
  max-width: 520px;
}

.app-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.app-section ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: #111;
  font-weight: 500;
}

.app-section ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: -2px;
  font-size: 26px;
  color: #000;
  line-height: 1;
}

.app-section img.img-fluid {
  border-radius: 28px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
  transform: scale(1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.app-section img.img-fluid:hover {
  transform: scale(1.03);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

/* --- Badges Google Play / App Store --- */
.app-section .hero__btn-group img {
  height: 55px;
  border-radius: 12px;
  filter: grayscale(100%) brightness(0);
  opacity: 0.9;
  transition: all 0.3s ease;
}

.app-section .hero__btn-group img:hover {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
  transform: translateY(-3px);
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .app-section {
    text-align: center;
    padding: 70px 0;
  }

  .app-section ul {
    text-align: left;
    display: inline-block;
  }

  .app-section img.img-fluid {
    margin-bottom: 30px;
  }
}



/* ==============================
   ⚡ SECTION FEATURES ULTEUME TRANSFERT — Zoom au survol
   ============================== */

.ulteume-features {
  background: #f9f9f9;
  padding: 100px 0;
}

.ulteume-features h3 {
  font-weight: 800;
  font-size: clamp(2rem, 2.8vw, 2.5rem);
  color: #000;
  margin-bottom: 60px;
}

/* --- Carte standard --- */
.features-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px 30px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.35s ease;
  height: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* --- Effet au survol --- */
.features-card:hover {
  transform: scale(1.04) translateY(-6px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.10);
}

/* --- Icône ronde --- */
.features-card .icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.35s ease;
}

/* --- Zoom léger aussi sur l’icône --- */
.features-card:hover .icon {
  transform: scale(1.1);
}

/* --- Titre et description --- */
.features-card__content h5 {
  font-weight: 700;
  font-size: 1.2rem;
  color: #000;
  margin-bottom: 10px;
}

.features-card__content p {
  color: #555;
  font-size: 0.98rem;
  line-height: 1.6;
  max-width: 90%;
  margin: 0 auto;
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .ulteume-features {
    padding: 70px 0;
  }
  .features-card {
    padding: 30px 20px;
  }
}


/* ==============================
   ⚡ SECTION SERVICE — ULTEUME TRANSFERT
   ============================== */

.ulteume-service {
  background: #ffffff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.ulteume-service h3 {
  font-weight: 800;
  font-size: clamp(2rem, 2.6vw, 2.5rem);
  color: #000;
  margin-bottom: 25px;
}

.ulteume-service p {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 15px;
  text-align: justify;
}

.ulteume-service a.btn--base {
  background: #000 !important;
  color: #fff !important;
  border-radius: 999px;
  padding: 12px 30px;
  border: none;
  transition: all 0.3s ease;
  font-weight: 600;
}

.ulteume-service a.btn--base:hover {
  background: #222 !important;
  transform: translateY(-3px);
}

/* --- Image stylisée à droite --- */
.ulteume-service img {
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.ulteume-service img:hover {
  transform: scale(1.03) translateY(-5px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.1);
}

/* --- Apparition douce --- */
.ulteume-service [class*="col-"] {
  opacity: 0;
  transform: translateY(25px);
  animation: fadeInService 0.7s ease forwards;
}

@keyframes fadeInService {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .ulteume-service {
    padding: 70px 0;
    text-align: center;
  }
  .ulteume-service .btn--base {
    margin: 20px auto 0;
  }
  .ulteume-service img {
    margin-top: 40px;
    width: 90%;
  }
}



/* ==============================
   ⚡ SECTION TRANSFERT — ULTEUME TRANSFERT
   ============================== */

.ulteume-transfer {
  background: #f9f9f9;
  padding: 100px 0;
  overflow: hidden;
}

.ulteume-transfer h3 {
  font-weight: 800;
  font-size: clamp(2rem, 2.6vw, 2.4rem);
  color: #000;
  margin-bottom: 25px;
}

.ulteume-transfer p.section__para {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* --- Listes des étapes --- */
.ulteume-transfer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ulteume-transfer ul li {
  background: #fff;
  border-radius: 14px;
  padding: 12px 18px;
  margin-bottom: 12px;
  font-size: 0.98rem;
  color: #222;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ulteume-transfer ul li::before {
  content: "✔";
  font-weight: 700;
  color: #000;
  background: #eaeaea;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

.ulteume-transfer ul li:hover {
  transform: translateX(6px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

/* --- Bouton principal --- */
.ulteume-transfer a.btn--base {
  background: #000 !important;
  color: #fff !important;
  border-radius: 999px;
  padding: 12px 30px;
  border: none;
  transition: all 0.3s ease;
  font-weight: 600;
}

.ulteume-transfer a.btn--base:hover {
  background: #222 !important;
  transform: translateY(-3px);
}

/* --- Image flottante à droite --- */
.ulteume-transfer img {
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.ulteume-transfer img:hover {
  transform: scale(1.03) translateY(-5px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.1);
}

/* --- Apparition fluide --- */
.ulteume-transfer [class*="col-"] {
  opacity: 0;
  transform: translateY(25px);
  animation: fadeInTransfer 0.7s ease forwards;
}

@keyframes fadeInTransfer {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .ulteume-transfer {
    padding: 70px 0;
    text-align: center;
  }

  .ulteume-transfer ul li {
    justify-content: center;
    text-align: left;
  }

  .ulteume-transfer img {
    margin-top: 40px;
    width: 90%;
  }
}


/* ==============================
   ⚡ SECTION HOW IT WORKS — ULTEUME TRANSFERT
   ============================== */

.ulteume-howwork {
  background: #ffffff;
  padding: 100px 0;
  position: relative;
}

.ulteume-howwork .section__head h3 {
  font-weight: 800;
  font-size: clamp(2rem, 2.6vw, 2.4rem);
  color: #000;
}

.ulteume-howwork .section__head p {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

/* --- Étapes principales --- */
.step-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px 25px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  text-align: center;
  height: 100%;
  transition: all 0.35s ease;
  position: relative;
  z-index: 2;
}

/* --- Animation au survol --- */
.step-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.1);
}

/* --- Icônes circulaires --- */
.step-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.step-card:hover .step-icon {
  transform: scale(1.1);
  background: #333;
}

/* --- Titre et texte --- */
.step-card h5 {
  font-weight: 700;
  color: #000;
  font-size: 1.1rem;
}

.step-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* --- Lignes entre les étapes --- */
.ulteume-howwork .row.g-4.g-md-0 {
  position: relative;
}

.ulteume-howwork .row.g-4.g-md-0::before {
  content: "";
  position: absolute;
  top: 70px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: #e0e0e0;
  z-index: 1;
}

.ulteume-howwork .col-md-4 {
  position: relative;
  z-index: 2;
}

/* --- Animation à l’apparition --- */
.ulteume-howwork .col-md-4 {
  opacity: 0;
  transform: translateY(25px);
  animation: fadeInHowwork 0.8s ease forwards;
}

@keyframes fadeInHowwork {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .ulteume-howwork {
    padding: 70px 0;
  }

  .ulteume-howwork .row.g-4.g-md-0::before {
    display: none;
  }

  .step-card {
    margin-bottom: 20px;
  }
}


/* ==============================
   ⚡ SECTION HOW TO RECEIVE — ULTEUME TRANSFERT
   ============================== */

.ulteume-receive {
  background: #f9f9f9;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.ulteume-receive .section__head h3 {
  font-weight: 800;
  font-size: clamp(2rem, 2.6vw, 2.4rem);
  color: #000;
}

.ulteume-receive .section__head p {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

/* --- Carte de réception --- */
.ulteume-receive .features-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  text-align: center;
  height: 100%;
  transition: all 0.35s ease;
  position: relative;
  z-index: 2;
}

/* --- Survol : zoom léger --- */
.ulteume-receive .features-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.1);
}

/* --- Icônes circulaires --- */
.ulteume-receive .icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.ulteume-receive .features-card:hover .icon {
  transform: scale(1.1);
  background: #333;
}

/* --- Titres & descriptions --- */
.ulteume-receive h5 {
  font-weight: 700;
  color: #000;
  font-size: 1.1rem;
}

.ulteume-receive p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* --- Apparition fluide --- */
.ulteume-receive .col-md-4 {
  opacity: 0;
  transform: translateY(25px);
  animation: fadeInReceive 0.8s ease forwards;
}

@keyframes fadeInReceive {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .ulteume-receive {
    padding: 70px 0;
  }

  .ulteume-receive .features-card {
    margin-bottom: 20px;
  }
}


/* ==============================
   ⚡ SECTION FAQ — ULTEUME TRANSFERT
   ============================== */

.ulteume-faq {
  background: #ffffff;
  padding: 100px 0;
  position: relative;
}

.ulteume-faq h3 {
  font-weight: 800;
  font-size: clamp(2rem, 2.6vw, 2.4rem);
  color: #000;
  margin-bottom: 30px;
}

/* --- Image --- */
.ulteume-faq img {
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.ulteume-faq img:hover {
  transform: scale(1.03);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.12);
}

/* --- Accordéon personnalisé --- */
.custom--accordion .accordion-item {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  margin-bottom: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  overflow: hidden;
}

.custom--accordion .accordion-item:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.custom--accordion .accordion-button {
  background-color: #fff;
  color: #000;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  padding: 18px 22px;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.custom--accordion .accordion-button:focus {
  box-shadow: none;
}

.custom--accordion .accordion-button:not(.collapsed) {
  background: #000;
  color: #fff;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

/* --- Icônes + et - --- */
.custom--accordion .accordion-button::after {
  content: "+";
  font-weight: bold;
  font-size: 20px;
  color: #000;
  transform: none !important;
  background: none !important;
}

.custom--accordion .accordion-button:not(.collapsed)::after {
  content: "−";
  color: #fff;
}

/* --- Contenu de réponse --- */
.custom--accordion .accordion-body {
  background: #f9f9f9;
  color: #333;
  font-size: 0.96rem;
  line-height: 1.6;
  padding: 18px 22px;
  border-top: 1px solid #e5e5e5;
}

/* --- Animation à l’apparition --- */
.ulteume-faq .col-lg-6 {
  opacity: 0;
  transform: translateY(25px);
  animation: fadeInFaq 0.8s ease forwards;
}

@keyframes fadeInFaq {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .ulteume-faq {
    padding: 70px 0;
  }

  .ulteume-faq img {
    margin-bottom: 40px;
  }
}


/* ==============================
   ⚡ SECTION TESTIMONIAL — ULTEUME TRANSFERT
   ============================== */

.ulteume-testimonial {
  background: #ffffff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.ulteume-testimonial .section__head h3 {
  font-weight: 800;
  font-size: clamp(2rem, 2.6vw, 2.4rem);
  color: #000;
}

.ulteume-testimonial .section__head p {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

/* --- Carte témoignage --- */
.feedback-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px 30px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  text-align: center;
  max-width: 460px;
  margin: 0 auto;
}

.feedback-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.1);
}

/* --- Image utilisateur --- */
.feedback-card .user__img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.feedback-card .user__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Nom et rôle --- */
.feedback-card .user__content h5 {
  font-weight: 700;
  color: #000;
  margin-bottom: 4px;
}

.feedback-card .user__content p {
  color: #777;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

/* --- Étoiles --- */
.feedback-card .fa-star {
  color: #ffb400;
  font-size: 15px;
}

/* --- Texte du témoignage --- */
.feedback-card__para {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-top: 15px;
}

/* --- Date --- */
.feedback-card__footer {
  margin-top: 20px;
  color: #888;
  font-size: 0.9rem;
  font-style: italic;
}

/* --- Slider --- */
.feedback-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 20px;
}

.feedback-slider::-webkit-scrollbar {
  height: 6px;
}

.feedback-slider::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}

/* --- Animation à l’apparition --- */
.ulteume-testimonial .feedback-card {
  opacity: 0;
  transform: translateY(25px);
  animation: fadeInTestimonial 0.8s ease forwards;
}

@keyframes fadeInTestimonial {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .ulteume-testimonial {
    padding: 70px 0;
  }
  .feedback-card {
    max-width: 90%;
  }
}


/* ==============================
   ⚡ SECTION COUNTER — ULTEUME TRANSFERT
   ============================== */

.ulteume-counter {
  background: #000;
  color: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.ulteume-counter .counter-up {
  text-align: center;
  transition: all 0.4s ease;
  padding: 20px 10px;
  border-radius: 20px;
}

.ulteume-counter .counter-up:hover {
  transform: translateY(-6px);
}

/* --- Icônes --- */
.ulteume-counter .counter-up__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fff;
  color: #000;
  font-size: 30px;
  margin-bottom: 15px;
  box-shadow: 0 6px 15px rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
}

.ulteume-counter .counter-up:hover .counter-up__icon {
  transform: scale(1.1);
  background: #f5f5f5;
}

/* --- Chiffres --- */
.ulteume-counter .odometer {
  font-size: 2.6rem;
  font-weight: 800;
  color: #fff;
  display: inline-block;
  margin-right: 6px;
}

.ulteume-counter h5 {
  font-weight: 700;
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 0;
}

/* --- Titres --- */
.ulteume-counter .counter-up__title {
  margin-top: 10px;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 600;
  color: #ddd;
}

/* --- Animation à l’apparition --- */
.ulteume-counter .col-6 {
  opacity: 0;
  transform: translateY(25px);
  animation: fadeInCounter 0.8s ease forwards;
}

@keyframes fadeInCounter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .ulteume-counter {
    padding: 60px 0;
  }

  .ulteume-counter .odometer {
    font-size: 2rem;
  }

  .ulteume-counter .counter-up__icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
}


/* ==============================
   ⚡ SECTION ABOUT — ULTEUME TRANSFERT
   ============================== */

.ulteume-about {
  background: #fff;
  padding: 100px 0;
  position: relative;
}

.ulteume-about h3 {
  font-weight: 800;
  font-size: clamp(2rem, 2.6vw, 2.4rem);
  color: #000;
  margin-bottom: 25px;
}

.ulteume-about .section__para {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* --- Image principale --- */
.ulteume-about img {
  border-radius: 20px;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.ulteume-about img:hover {
  transform: scale(1.03);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.12);
}

/* --- Liste des points --- */
.ulteume-about .list--column__item {
  position: relative;
  padding-left: 28px;
  font-size: 0.96rem;
  color: #222;
  line-height: 1.7;
  margin-bottom: 10px;
  font-weight: 500;
}

.ulteume-about .list--column__item::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #000;
  font-weight: 700;
  font-size: 1rem;
}

/* --- Apparition fluide --- */
.ulteume-about .col-lg-6,
.ulteume-about .col-xl-5 {
  opacity: 0;
  transform: translateY(25px);
  animation: fadeInAbout 0.8s ease forwards;
}

@keyframes fadeInAbout {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .ulteume-about {
    padding: 70px 0;
  }

  .ulteume-about img {
    margin-bottom: 40px;
  }

  .ulteume-about h3 {
    text-align: center;
  }

  .ulteume-about .section__para {
    text-align: center;
  }
}


/* ==============================
   🎯 Boutons Header — Ulteume Transfert
   ============================== */

/* Style commun pour tous les boutons du header */
.header-fixed .btn {
  border-radius: 999px !important; /* rendu parfaitement rond */
  padding: 10px 26px !important;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}

/* Légère ombre et effet de zoom au survol */
.header-fixed .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
}

/* Pour éviter qu’ils bougent trop sur mobile */
@media (max-width: 992px) {
  .header-fixed .btn {
    width: 100%;
    text-align: center;
    margin-bottom: 6px;
  }
}


/* ==============================
   📞 PAGE CONTACT — ULTEUME TRANSFERT
   ============================== */

.section .bg--light {
  background: #fff;
  border-radius: 20px;
  padding: 40px 35px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.section .bg--light:hover {
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.08);
}

/* --- Titre et description --- */
.section h4 {
  font-weight: 800;
  color: #000;
  margin-bottom: 12px;
}

.section p {
  color: #555;
  line-height: 1.6;
  font-size: 0.96rem;
}

/* --- Champs du formulaire --- */
.form--control,
.form--control-textarea {
  background: #f9f9f9;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 0.95rem;
  color: #000;
  transition: all 0.3s ease;
}

.form--control:focus,
.form--control-textarea:focus {
  background: #fff;
  border-color: #000;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
  outline: none;
}

/* --- Bouton envoyer --- */
.btn--base {
  border-radius: 999px;
  padding: 12px 28px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.btn--base:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* --- Bloc info contact à droite --- */
.header-top__info {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 12px;
  padding: 12px 15px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.header-top__info:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.header-top__icon {
  font-size: 1.1rem;
  color: #000;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f3f3;
}

.header-top__text {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* --- Icônes sociales --- */
.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #000;
  color: #fff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.social-icon:hover {
  background: #222;
  transform: translateY(-3px);
}

/* --- Carte Google Map --- */
.map {
  width: 100%;
  height: 420px;
  border: none;
  filter: grayscale(100%) contrast(1.1);
  border-top: 3px solid #000;
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .section .bg--light {
    padding: 30px 25px;
  }
  .header-top__info {
    padding: 10px 12px;
  }
}


/* ==============================
   🎯 Fix - Boutons Header (texte bien centré)
   ============================== */

.header-fixed .btn,
.header-fixed .btn--base,
.header-fixed .btn--custom {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 999px !important;
  padding: 10px 30px !important;  /* plus large horizontalement */
  line-height: 1.4 !important;    /* centre verticalement le texte */
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: all 0.3s ease;
}

/* Effet hover homogène */
.header-fixed .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

/* Responsive : sur mobile, les boutons s’ajustent */
@media (max-width: 992px) {
  .header-fixed .btn {
    width: 100%;
    padding: 12px 0 !important;
    font-size: 0.9rem;
  }
}

/* ===== 🎨 Icônes des transactions Ulteume ===== */

.icon-bg {
  width: 28px;           /* 🔽 Réduit de 38px à 28px */
  height: 28px;
  border-radius: 6px;    /* coins un peu plus doux */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;       /* 🔽 icône plus fine */
  transition: 0.3s ease;
}

/* 🟢 Fond vert remboursement */
.bg-success {
  background-color: #00b050;
}

/* 🔴 Fond rouge paiement envoyé */
.bg-danger {
  background-color: #ff0000;
}

/* 💫 Effet hover */
.icon-bg:hover {
  transform: scale(1.08);
  filter: brightness(1.1);
}




