/* ===============================
          STYLE HEADER
=================================*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: #f5f5f5;
  color: #333;
  overflow-x: hidden;
  width: 100%;
  padding-top: 80px;
}

header {
  position: relative;
  z-index: 9999;
}

.logo-text {
  display: flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
}

.logo-pa,
.logo-l {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.6px;
}

.logo-pa {
  color: #111;
}

.logo-l {
  color: #00a87a;
}

.navbar.style-1 {
  position: fixed;
  top: 50px;
  width: calc(100% - 160px);
  left: 50%;
  transform: translateX(-50%);
  max-width: 1200px;
  z-index: 1030;
  border-radius: 14px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  padding: 15px 0;
  background: rgba(255, 255, 255, 0.75);
  --backdrop-filter: blur(12px);
  --webkit-backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

.navbar .nav-link {
  font-weight: 600;
  color: #111;
  padding: 8px 14px;
}

.navbar .nav-link:hover {
  color: #00a87a;
}

.dropdown-menu {
  border: none;
  border-radius: 12px;
  padding: 10px;
}

.dropdown-item {
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.dropdown-item:hover {
  background: rgba(0, 168, 122, 0.08);
  color: #00a87a;
}

.nav-side {
  display: flex;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.lang-select {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-lang {
  appearance: none;
  background: #f4f6f8;
  border: none;
  padding: 6px 30px 6px 10px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
}

.lang-select .flag-icon {
  width: 18px;
  height: 13px;
  margin-left: -24px;
  pointer-events: none;
  object-fit: cover;
}

.mobile-menu {
  width: 100vw;
  background: #ffffff;
}

.mobile-menu .offcanvas-header {
  padding: 20px;
  border-bottom: 1px solid #eee;
}

.mobile-nav {
  list-style: none;
  padding: 0;
}

.mobile-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  font-size: 18px;
  font-weight: 600;
  border-bottom: 1px solid #f0f0f0;
}

.mobile-item a {
  text-decoration: none;
  color: #111;
}

.toggle {
  background: none;
  border: none;
  font-size: 18px;
}

.collapse a {
  display: block;
  padding: 12px 0 12px 16px;
  font-size: 15px;
  color: #555;
}

.mobile-actions .btn-dark {
  background-color: #000;
  border-color: #000;
  color: #fff;
  padding: 14px;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  border-radius: 10px;
}

.mobile-actions .btn-dark:hover {
  background-color: #111;
  border-color: #111;
}

.mobile-actions .btn-outline-dark {
  background-color: #f1f3f5;
  border: 1.5px solid #e0e0e0;
  color: #111;
  padding: 14px;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  border-radius: 10px;
}

.mobile-actions .btn-outline-dark:hover {
  background-color: #e5e7eb;
  border-color: #d0d0d0;
  color: #111;
}

.navbar .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.navbar .btn.btn-dark {
  background-color: #000;
  border-color: #000;
  color: #fff;
  padding: 8px 18px;
  font-weight: 600;
  font-size: 0.9rem;
}

.navbar .signup-btn {
  background-color: #d9d9d9;
  border: 1.5px solid #d9d9d9;
  color: #111;
  padding: 8px 18px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.25s ease;
}

@media (max-width: 991.98px) {
  .navbar .container {
    display: flex;
    align-items: center;
  }

  .navbar-brand {
    margin-right: auto;
  }

  .navbar-lang {
    margin-left: 0;
    margin-right: 6px;
    order: 2;
  }

  .navbar-toggler {
    margin-left: auto;
    order: 3;
  }

  .navbar.style-1 {
    top: 20px;     
    width:90%;       
  }
}

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

.dropdown-fullwidth {
  position: relative;
}

.mega-menu {
  position: fixed;
  top: 135px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 160px); 
  max-width: 1200px; 
  padding: 50px 20px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  z-index: 1030;
  display: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.nav-item.dropdown.dropdown-fullwidth:hover + .mega-menu,
.mega-menu:hover {
  display: block;
}

.mega-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 10px;
}

.mega-item {
  display: block;
  text-decoration: none;
  padding: 22px;
  border-radius: 14px;
  transition: all 0.25s ease;
  height: 100%;
}

.mega-item:hover {
  background-color: #b2dfdb;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.mega-item:hover .mega-title {
  color: #00796b;
}

.mega-item:hover .mega-desc {
  color: #004d40;
}

.mega-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: #111;
  margin-bottom: 8px;
}

.icon-box {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0; /* Empêche le cercle de s'écraser */
}

.icon-box i {
  font-size: 18px;
}

/* Variantes de couleurs */

/* Orange */
.bg-orange { background-color: rgba(255, 165, 0, 0.15); }
.bg-orange i { color: #ff8c00; }

/* Bleu */
.bg-blue { background-color: rgba(13, 110, 253, 0.15); }
.bg-blue i { color: #0d6efd; }

/* Vert */
.bg-green {  background-color: rgba(25, 135, 84, 0.15) !important;   }
.bg-green i { color: #198754; }

/* Violet */
.bg-purple { background-color: rgba(111, 66, 193, 0.15); }
.bg-purple i { color: #6f42c1; }


.mega-desc {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 991.98px) {
  .mega-menu {
    position: static !important;
    width: 100%;
    left: 0;
    right: 0;
    padding: 20px 0;
    box-shadow: none;
    display: none;
  }

  .mega-item {
    padding: 16px;
  }
}

/* ===============================
          STYLE FOOTER
=================================*/
.pal-footer {
  background: #000;
  color: #ffffff;
  font-family: "Inter", Arial, sans-serif;
}

.pal-footer-main {
  max-width: 1200px;
  margin: auto;
  padding: 56px 24px 32px;
}

.pal-footer-brand {
  font-size: 2.6rem;
  font-weight: 900;
  letter-spacing: -2px;
}

.brand-pa {
  color: #fff;
  padding: 2px 4px;
  border-radius: 4px;
}

.pal-footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 24px;
}

.pal-footer-stores {
  display: flex;
  gap: 16px;
  color: #fff;
}

.pal-footer-stores .store-card img {
  color: #fff;
}

.store-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 0.95rem;
  transition: transform 0.25s ease, background 0.25s ease;
}

.store-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.15);
}

.store-card img {
  width: 28px;
  height: 28px;
}

.pal-footer-cols {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.pal-footer-col {
  flex: 1 1 180px;
}

.pal-footer-title {
  font-weight: 700;
  margin-bottom: 14px;
  color: #ffffff;
}

.pal-footer-col ul {
  list-style: none;
  padding: 0;
}

.pal-footer-col li {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.75);
}

.pal-footer-col a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s ease;
}

.pal-footer-col a:hover {
  color: #00a87a;
}

.pal-footer-socials {
  display: flex;
  gap: 12px;
}

.social-card {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.25s ease;
}

.social-card:hover {
  background: #00a87a;
  color: #fff;
  transform: translateY(-3px);
}

.social-card:hover i {
  color: #fff;
}

.pal-footer-note {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.pal-footer-note strong {
  color: #ffffff;
  font-weight: 600;
}

.pal-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 18px 0;
  font-size: 0.95rem;
}

.pal-footer-bottom-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lang-select {
  position: relative;
  display: flex;
  align-items: center;
}

.footer-lang {
  appearance: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 6px 32px 6px 10px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}

.flag-icon {
  width: 20px;
  height: 14px;
  margin-left: -26px;
  pointer-events: none;
}

@media (max-width: 768px) {
  .pal-footer-top,
  .pal-footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* ===============================
 STYLE DU MENU BOTTOM MOBILE
=================================*/
.mobile-app-download-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.07);
  padding: 12px 0;
}

.mobile-app-download-content {
  display: flex;
  justify-content: center;
  max-width: 98vw;
  margin: 0 auto;
  padding: 0 16px;
}

.download-buttons1 {
  display: flex;
  width: 100%;
  gap: 12px;
}

.download-btn {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.download-btn img {
  width: 100%;
  max-width: 180px;
  height: auto;
  object-fit: contain;
}

@media (max-width: 1024px) {
  .mobile-app-download-bar {
    display: block;
  }

  .download-btn img {
    max-width: 160px;
  }
}

@media (max-width: 768px) {
  .download-btn img {
    max-width: 140px;
  }
}

@media (max-width: 480px) {
  .download-btn img {
    max-width: 120px;
  }
}

/* ===============================
          STYLE SECTION HERO
=================================*/
.hero-section {
  position: relative;
  z-index: 1;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  overflow: hidden;
}

.lines-container2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
}

.line-11 {
  width: 2px;
  height: 200px;
  top: 10%;
  left: 5%;
  transform: rotate(45deg);
}

.line-12 {
  width: 1px;
  height: 150px;
  top: 20%;
  left: 15%;
  transform: rotate(-30deg);
}

.line-13 {
  width: 2px;
  height: 180px;
  top: 5%;
  right: 20%;
  transform: rotate(60deg);
}

.line-14 {
  width: 1px;
  height: 120px;
  top: 35%;
  left: 8%;
  transform: rotate(15deg);
}

.line-15 {
  width: 2px;
  height: 160px;
  top: 30%;
  right: 10%;
  transform: rotate(-45deg);
}

.line-16 {
  width: 1px;
  height: 100px;
  top: 50%;
  left: 25%;
  transform: rotate(75deg);
}

.line-17 {
  width: 2px;
  height: 140px;
  top: 60%;
  right: 35%;
  transform: rotate(-15deg);
}

.line-18 {
  width: 1px;
  height: 110px;
  top: 45%;
  left: 45%;
  transform: rotate(30deg);
}

.line-19 {
  width: 2px;
  height: 130px;
  bottom: 20%;
  left: 12%;
  transform: rotate(-60deg);
}

.line-110 {
  width: 1px;
  height: 90px;
  bottom: 30%;
  right: 15%;
  transform: rotate(45deg);
}

.line-111 {
  width: 1px;
  height: 170px;
  top: 15%;
  left: 35%;
  transform: rotate(-75deg);
}

.line-112 {
  width: 2px;
  height: 125px;
  top: 70%;
  left: 55%;
  transform: rotate(20deg);
}

.line-113 {
  width: 1px;
  height: 145px;
  bottom: 15%;
  right: 25%;
  transform: rotate(-40deg);
}

.line-114 {
  width: 2px;
  height: 115px;
  top: 25%;
  right: 5%;
  transform: rotate(80deg);
}

.line-115 {
  width: 1px;
  height: 135px;
  bottom: 10%;
  left: 30%;
  transform: rotate(10deg);
}

.line-116 {
  width: 1px;
  height: 80px;
  top: 40%;
  right: 45%;
  transform: rotate(-25deg);
  opacity: 0.5;
}

.line-117 {
  width: 1px;
  height: 95px;
  top: 55%;
  left: 65%;
  transform: rotate(55deg);
  opacity: 0.4;
}

.line-118 {
  width: 1px;
  height: 75px;
  bottom: 40%;
  left: 20%;
  transform: rotate(-10deg);
  opacity: 0.6;
}

.line-119 {
  width: 1px;
  height: 105px;
  bottom: 25%;
  right: 40%;
  transform: rotate(35deg);
  opacity: 0.3;
}

.line-120 {
  width: 1px;
  height: 85px;
  top: 65%;
  right: 20%;
  transform: rotate(-50deg);
  opacity: 0.5;
}

@keyframes backgroundShift {
  0%,
  100% {
    filter: hue-rotate(0deg) brightness(1);
  }

  50% {
    filter: hue-rotate(5deg) brightness(1.02);
  }
}

.lines-container1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.12;
}

.line1 {
  position: absolute;
  transform-origin: center;
  border-radius: 1px;
  transition: all 0.3s ease;
}

.line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(180, 180, 180, 0.4) 20%,
    rgba(160, 160, 160, 0.8) 50%,
    rgba(180, 180, 180, 0.4) 80%,
    transparent 100%
  );
  border-radius: inherit;
}

.line:hover {
  transform: scale(1.05);
  opacity: 0.8;
}

.line-1 {
  width: 3px;
  height: 220px;
  top: 10%;
  left: 5%;
  transform: rotate(45deg);
  animation: float1 12s ease-in-out infinite;
}

.line-2 {
  width: 2px;
  height: 160px;
  top: 20%;
  left: 15%;
  transform: rotate(-30deg);
  animation: float2 15s ease-in-out infinite reverse;
}

.line-3 {
  width: 3px;
  height: 190px;
  top: 5%;
  right: 20%;
  transform: rotate(60deg);
  animation: float3 18s ease-in-out infinite;
}

.line-4 {
  width: 2px;
  height: 140px;
  top: 35%;
  left: 8%;
  transform: rotate(15deg);
  animation: float1 14s ease-in-out infinite reverse;
}

.line-5 {
  width: 4px;
  height: 180px;
  top: 30%;
  right: 10%;
  transform: rotate(-45deg);
  animation: float2 16s ease-in-out infinite;
}

.line-6 {
  width: 2px;
  height: 120px;
  top: 50%;
  left: 25%;
  transform: rotate(75deg);
  animation: float3 11s ease-in-out infinite;
}

.line-7 {
  width: 3px;
  height: 150px;
  top: 60%;
  right: 35%;
  transform: rotate(-15deg);
  animation: float1 13s ease-in-out infinite reverse;
}

.line-8 {
  width: 2px;
  height: 130px;
  top: 45%;
  left: 45%;
  transform: rotate(30deg);
  animation: float2 17s ease-in-out infinite;
}

.line-9 {
  width: 3px;
  height: 145px;
  bottom: 20%;
  left: 12%;
  transform: rotate(-60deg);
  animation: float3 19s ease-in-out infinite reverse;
}

.line-10 {
  width: 2px;
  height: 110px;
  bottom: 30%;
  right: 15%;
  transform: rotate(45deg);
  animation: float1 10s ease-in-out infinite;
}

.line-11 {
  width: 2px;
  height: 185px;
  top: 15%;
  left: 35%;
  transform: rotate(-75deg);
  animation: float2 21s ease-in-out infinite;
}

.line-12 {
  width: 4px;
  height: 135px;
  top: 70%;
  left: 55%;
  transform: rotate(20deg);
  animation: float3 9s ease-in-out infinite reverse;
}

.line-13 {
  width: 2px;
  height: 155px;
  bottom: 15%;
  right: 25%;
  transform: rotate(-40deg);
  animation: float1 22s ease-in-out infinite;
}

.line-14 {
  width: 3px;
  height: 125px;
  top: 25%;
  right: 5%;
  transform: rotate(80deg);
  animation: float2 8s ease-in-out infinite reverse;
}

.line-15 {
  width: 2px;
  height: 145px;
  bottom: 10%;
  left: 30%;
  transform: rotate(10deg);
  animation: float3 24s ease-in-out infinite;
}

.line-16 {
  width: 1px;
  height: 90px;
  top: 40%;
  right: 45%;
  transform: rotate(-25deg);
  opacity: 0.6;
  animation: float1 7s ease-in-out infinite;
}

.line-17 {
  width: 2px;
  height: 105px;
  top: 55%;
  left: 65%;
  transform: rotate(55deg);
  opacity: 0.5;
  animation: float2 26s ease-in-out infinite reverse;
}

.line-18 {
  width: 1px;
  height: 85px;
  bottom: 40%;
  left: 20%;
  transform: rotate(-10deg);
  opacity: 0.7;
  animation: float3 6s ease-in-out infinite;
}

.line-19 {
  width: 2px;
  height: 115px;
  bottom: 25%;
  right: 40%;
  transform: rotate(35deg);
  opacity: 0.4;
  animation: float1 28s ease-in-out infinite reverse;
}

.line-20 {
  width: 1px;
  height: 95px;
  top: 65%;
  right: 20%;
  transform: rotate(-50deg);
  opacity: 0.6;
  animation: float2 5s ease-in-out infinite;
}

@keyframes float1 {
  0%,
  100% {
    transform: translateY(0px) rotate(var(--rotation, 0deg));
    opacity: 0.8;
  }

  50% {
    transform: translateY(-10px) rotate(calc(var(--rotation, 0deg) + 2deg));
    opacity: 1;
  }
}

@keyframes float2 {
  0%,
  100% {
    transform: translateX(0px) rotate(var(--rotation, 0deg)) scale(1);
    opacity: 0.7;
  }

  50% {
    transform: translateX(8px) rotate(calc(var(--rotation, 0deg) - 1deg))
      scale(1.02);
    opacity: 0.9;
  }
}

@keyframes float3 {
  0%,
  100% {
    transform: translate(0px, 0px) rotate(var(--rotation, 0deg));
    opacity: 0.6;
  }

  33% {
    transform: translate(5px, -8px) rotate(calc(var(--rotation, 0deg) + 1deg));
    opacity: 0.9;
  }

  66% {
    transform: translate(-3px, 6px) rotate(calc(var(--rotation, 0deg) - 0.5deg));
    opacity: 0.8;
  }
}

@media (max-width: 768px) {
  .shape:nth-child(1) {
    width: 120px;
    height: 120px;
  }

  .shape:nth-child(2) {
    width: 90px;
    height: 90px;
  }

  .shape:nth-child(3) {
    width: 60px;
    height: 60px;
  }

  .animated-line {
    width: 160px !important;
  }
}

@media (max-width: 900px) {
  .title {
    font-size: 2em;
  }
}

.line {
  position: absolute;
  background: linear-gradient(45deg, #6c757d, #495057);
  border-radius: 2px;
  animation: float 8s ease-in-out infinite;
}

.line:nth-child(1) {
  width: 200px;
  height: 2px;
  top: 10%;
  left: 20%;
  transform: rotate(45deg);
  animation-delay: 0s;
}

.line:nth-child(2) {
  width: 150px;
  height: 1px;
  top: 25%;
  left: 70%;
  transform: rotate(-30deg);
  animation-delay: 1s;
}

.line:nth-child(3) {
  width: 300px;
  height: 1px;
  top: 40%;
  left: 10%;
  transform: rotate(60deg);
  animation-delay: 2s;
}

.line:nth-child(4) {
  width: 180px;
  height: 2px;
  top: 60%;
  left: 60%;
  transform: rotate(-45deg);
  animation-delay: 3s;
}

.line:nth-child(5) {
  width: 250px;
  height: 1px;
  top: 75%;
  left: 30%;
  transform: rotate(20deg);
  animation-delay: 4s;
}

.line:nth-child(6) {
  width: 120px;
  height: 1px;
  top: 15%;
  left: 50%;
  transform: rotate(-60deg);
  animation-delay: 2.5s;
}

.line:nth-child(7) {
  width: 220px;
  height: 2px;
  top: 35%;
  left: 80%;
  transform: rotate(75deg);
  animation-delay: 1.5s;
}

.line:nth-child(8) {
  width: 160px;
  height: 1px;
  top: 55%;
  left: 15%;
  transform: rotate(-20deg);
  animation-delay: 3.5s;
}

.line:nth-child(9) {
  width: 280px;
  height: 1px;
  top: 80%;
  left: 65%;
  transform: rotate(40deg);
  animation-delay: 0.5s;
}

.line:nth-child(10) {
  width: 140px;
  height: 2px;
  top: 5%;
  left: 75%;
  transform: rotate(-75deg);
  animation-delay: 4.5s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(var(--rotation, 0deg));
    opacity: 0.15;
  }

  50% {
    transform: translateY(-10px) rotate(var(--rotation, 0deg));
    opacity: 0.25;
  }
}

.hero-container {
  position: relative;
  z-index: 10;
  text-align: center;
  align-items: center;
  max-width: 1200px;
}

.hero-left {
  width: 100%;
}

.hero-left .title {
  font-size: 4.5em;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 10px;
}

.hero-left h1 {
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.1em;
  color: #444;
  margin-bottom: 32px;
}

.hero-cta {
  display: inline-block;
  background: #d9d9d9;
  color: #000000;
  font-size: 1.1em;
  font-weight: 500;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  margin-top: 12px;
  transition: background 0.2s;
}

.hero-cta:hover {
  background: #bdbdbd;
  color: #393939;
}

.hero-card {
  position: relative;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 32px rgba(44, 185, 150, 0.1);
  padding: 32px 24px;
  width: 340px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-user-img {
  width: 180px;
  height: 220px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 16px;
}

.floating-ui {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(44, 185, 150, 0.1);
  padding: 8px 16px;
  font-size: 0.95em;
  font-weight: 500;
  color: #222;
  display: flex;
  align-items: center;
  gap: 8px;
}

.recommended-time {
  top: 18px;
  right: -40px;
  background: #f5f5f5;
  color: #2bb996;
  font-size: 0.85em;
  text-align: center;
}

.likes {
  top: 18px;
  left: -40px;
  background: #fff;
  color: #e74c3c;
  font-size: 0.95em;
}

.likes img {
  width: 20px;
  height: 20px;
}

.chat {
  bottom: 60px;
  left: -60px;
  background: #f5f5f5;
  color: #222;
  font-size: 0.95em;
}

.cta {
  bottom: 18px;
  right: -40px;
  background: #2bb996;
  color: #fff;
  font-size: 0.95em;
  cursor: pointer;
}

.linee {
  display: block;
  width: 85px;
  height: 7px;
  background: #000000;
  border-radius: 2px;
  margin: 10px 0 16px 0;
}

@media (max-width: 900px) {
  .hero-container {
    flex-direction: column;
    gap: 32px;
    padding: 0 8px;
  }

  .hero-right {
    width: 100%;
  }

  .hero-left .title {
    font-size: 3em;
  }
}

@media (max-width: 600px) {
  .hero-container {
    margin-top: -180px;
  }

  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.5;
  }

  .hero-subtitle br {
    display: none;
  }

  .title br {
    display: none;
  }
}

/* ===============================
    STYLE SCROL TOP
=================================*/
.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 999;
}

.scroll-top-btn.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}



.about-hero-card {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -60%);
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(44, 185, 150, 0.1);
  padding: 32px 28px 24px 28px;
  min-width: 320px;
  max-width: 340px;
  z-index: 2;
  text-align: left;
}

.about-hero-card .user-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.about-hero-card .user-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #2bb996;
}

.about-hero-card .user-info {
  display: flex;
  flex-direction: column;
}

.about-hero-card .user-name {
  font-weight: 700;
  font-size: 1.1em;
  margin-bottom: 2px;
}

.about-hero-card .user-bank {
  font-size: 0.95em;
  color: #888;
  margin-bottom: 2px;
}

.about-hero-card .user-country {
  font-size: 0.95em;
  color: #2bb996;
  font-weight: 600;
}

.about-hero-card .user-amounts {
  display: flex;
  justify-content: space-between;
  margin: 18px 0 10px 0;
}

.about-hero-card .amount-label {
  font-size: 0.95em;
  color: #888;
}

.about-hero-card .amount-value {
  font-size: 1.2em;
  font-weight: 700;
  color: #222;
}

.about-hero-card .user-flag {
  width: 32px;
  height: 22px;
  border-radius: 4px;
  object-fit: cover;
  margin-top: 8px;
}

.about-hero-card .pay-btn {
  display: block;
  width: 100%;
  background: #2bb996;
  color: #fff;
  font-size: 1.1em;
  font-weight: 600;
  padding: 12px 0;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.about-hero-card .pay-btn:hover {
  background: #1fa07d;
}

.about-hero-avatar {
  position: absolute;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(44, 185, 150, 0.1);
  background: #fff;
  z-index: 3;
}

.about-hero-avatar.avatar1 {
  left: -40px;
  top: 30%;
}

.about-hero-avatar.avatar2 {
  right: -40px;
  top: 10%;
}

.about-hero-avatar.avatar3 {
  left: 10%;
  bottom: -30px;
}

.about-hero-feature-section {
  padding: 60px 24px;
}

.about-hero-feature-card-main {
  max-width: 1200px;
  width: 100%;
  margin: auto;
  border-radius: 28px;
  padding: 64px 56px 72px;
  color: #fff;
  position: relative;
  overflow: hidden;
  background-color: #00a87a;
  background-image: url("/assets/img/noise.png");
  background-repeat: repeat;
  background-size: 200px 200px;
  background-blend-mode: soft-light;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Container des étoiles filantes */
.shooting-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.shooting-stars span:nth-child(even) {
  transform: rotate(35deg);
}

.shooting-stars span:nth-child(odd) {
  transform: rotate(50deg);
}

/* Étoile filante */
.shooting-stars span {
  position: absolute;
  top: -150px;

  left: 50%;
  width: 2px;
  height: 160px;
  background: linear-gradient(
    -45deg,
    rgba(255, 255, 255, 1),
    rgba(255, 255, 255, 0)
  );
  opacity: 0;
  transform: rotate(45deg);
  animation: shooting-star 5s linear infinite;
  transform-origin: bottom center;
  animation-timing-function: cubic-bezier(0.2, 0, 0.3, 1);
}

.shooting-stars span:nth-child(1) {
  animation-duration: 4.3s;
}

.shooting-stars span:nth-child(2) {
  animation-duration: 5.8s;
}

.shooting-stars span:nth-child(3) {
  animation-duration: 3.9s;
}

.shooting-stars span:nth-child(4) {
  animation-duration: 6.4s;
}

.shooting-stars span:nth-child(5) {
  animation-duration: 4.7s;
}

.shooting-stars span:nth-child(6) {
  animation-duration: 5.2s;
}

.shooting-stars span:nth-child(7) {
  animation-duration: 6.1s;
}

.shooting-stars span:nth-child(8) {
  animation-duration: 4.1s;
}

.shooting-stars span:nth-child(9) {
  animation-duration: 5.9s;
}

.shooting-stars span:nth-child(10) {
  animation-duration: 6.8s;
}

.shooting-stars span::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.9),
    0 0 12px rgba(255, 255, 255, 0.7), 0 0 20px rgba(255, 255, 255, 0.5);

  animation: star-flash 5s linear infinite;
  animation-delay: inherit;
}

.shooting-stars span:nth-child(1) {
  animation-delay: 0s;

  left: 10%;
}

.shooting-stars span:nth-child(2) {
  animation-delay: 1s;
  left: 30%;
}

.shooting-stars span:nth-child(3) {
  animation-delay: 2s;
  left: 50%;
}

.shooting-stars span:nth-child(4) {
  animation-delay: 3s;
  left: 70%;
}

.shooting-stars span:nth-child(5) {
  animation-delay: 4s;
  left: 90%;
}

.shooting-stars span:nth-child(6) {
  animation-delay: 5s;
  left: 15%;
}

.shooting-stars span:nth-child(7) {
  animation-delay: 6s;
  left: 35%;
}

.shooting-stars span:nth-child(8) {
  animation-delay: 7s;
  left: 55%;
}

.shooting-stars span:nth-child(9) {
  animation-delay: 8s;
  left: 75%;
}

.shooting-stars span:nth-child(10) {
  animation-delay: 9s;
  left: 95%;
}

@keyframes shooting-star {
  0% {
    transform: translateX(0) translateY(0) rotate(45deg);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  100% {
    transform: translateX(-600px) translateY(600px) rotate(45deg);
    opacity: 0;
  }
}

@keyframes star-flash {
  0% {
    transform: translateX(-50%) scale(0.4);
    opacity: 0;
  }

  30% {
    transform: translateX(-50%) scale(1.4);
    opacity: 1;
  }

  60% {
    transform: translateX(-50%) scale(1);
    opacity: 0.9;
  }

  100% {
    transform: translateX(-50%) scale(1);
    opacity: 0.9;
  }
}

.feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  margin-bottom: 28px;
}

.feature-badge .dot {
  width: 10px;
  height: 10px;
  background: #b6ff4a;
  border-radius: 50%;
}

.feature-main-title {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 64px;
}

.about-hero-feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.about-hero-feature-card {
  background: transparent;
}

.card-title {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.card-description {
  font-size: 0.78rem;
  line-height: 1.6;
  opacity: 0.95;
}

.about-hero-feature-card,
.card-title,
.card-description {
  color: #fff;
}

.feature-bg-shape {
  position: absolute;
  top: -180px;
  right: -240px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.12);
}

.card-title::before {
  font-family: "bootstrap-icons";
  font-size: 1.2rem;
  color: #fff;
  line-height: 1;
}

.about-hero-feature-card:nth-child(1) .card-title::before {
  content: "\F6F0";
}

.about-hero-feature-card:nth-child(2) .card-title::before {
  content: "\F615";
}

/* 3️⃣ Payout */
.about-hero-feature-card:nth-child(3) .card-title::before {
  content: "\F3EE";
}

.about-hero-cta-row {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.about-hero-cta-btn {
  background: #d9d9d9;
  color: #222;
  font-size: 1.1em;
  font-weight: 600;
  padding: 14px 38px;
  border-radius: 8px;
  box-shadow: none;
  transition: background 0.2s;
  cursor: pointer;
}

.about-hero-cta-btn:hover {
  background: #cdcdcd;
  color: #1f1f1f;
}

@media (max-width: 900px) {
  .about-hero-feature-card-main {
    padding: 48px 32px;
  }

  .feature-main-title {
    font-size: 2.4rem;
    text-align: center;
  }

  .feature-badge {
    justify-content: center;
  }

  .about-hero-feature-row {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .feature-bg-shape {
    display: none;
  }
}

@media (max-width: 900px) {
  .about-hero-row {
    flex-direction: column;
    gap: 18px;
  }

  .about-hero-center {
    min-width: 0;
    max-width: 98vw;
  }

  .about-hero-map {
    max-width: 98vw;
  }

  .about-hero-card {
    min-width: 0;
    max-width: 98vw;
  }

  .about-hero-feature-row {
    gap: 5px;
  }

  .about-hero-title {
    margin-bottom: -100px;
  }
  .feature-main-title br {
    display: none;
  }
}

.icon-container {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #00d4aa, #019477);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  box-shadow: 0 8px 20px rgba(0, 212, 170, 0.3);
}

.icon1 {
  width: 36px;
  height: 36px;
  stroke: white;
  stroke-width: 2;
  fill: none;
}

.about-hero-title {
  font-size: 2.8rem;
}
.feature-main-title {
  font-size: 3.2rem;
}

@media (max-width: 1200px) {
  .about-hero-title {
    font-size: 2.4rem;
  }
  .feature-main-title {
    font-size: 2.8rem;
  }
  .about-hero-container {
    padding: 0 24px;
  }
}

@media (max-width: 900px) {
  .about-hero-row {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .about-hero-left,
  .about-hero-right {
    text-align: center;
  }

  .about-hero-title {
    font-size: 2.2rem;
    margin-bottom: 12px;
    line-height: 1.2;
  }

  .feature-main-title {
    font-size: 2.4rem;
    margin-bottom: 48px;
    text-align: center;
  }

  .about-hero-feature-row {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .feature-bg-shape {
    display: none;
  }
  .card-description {
    font-size: 11px;
    text-align: left;
  }
}

@media (max-width: 768px) {
  .about-hero-title {
    font-size: 2rem;
  }
  .about-hero-subtext {
    font-size: 1rem;
  }
  .feature-main-title {
    font-size: 2rem;
  }
  .about-hero-feature-card.feature-card-img {
    max-width: 260px;
    padding: 18px 14px;
  }
  .card-title {
    font-size: 14px;
  }
  .card-description {
    font-size: 12px;
  }
}

@media (max-width: 600px) {
  .about-hero-title {
    font-size: 1.8rem;
  }
  .feature-main-title {
    font-size: 1.8rem;
  }
  .about-hero-feature-card.feature-card-img {
    max-width: 240px;
    padding: 16px 12px;
  }
  .card-title {
    font-size: 13px;
  }
  .card-description {
    font-size: 11px;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .about-hero-title {
    font-size: 1.5rem;
  }
  .feature-main-title {
    font-size: 1.6rem;
  }
  .about-hero-feature-card.feature-card-img {
    max-width: 200px;
    padding: 12px 10px;
  }
  .card-title {
    font-size: 12px;
  }
  .card-description {
    font-size: 10px;
  }
  .about-hero-cta-btn {
    font-size: 0.9rem;
    padding: 10px 18px;
  }
}

/* ===============================
STYLE SECTION API For Businesses
=================================*/

.new-section {
  position: relative;
  z-index: 1;
  padding: 60px 20px;
}

.action-item,
.action-item:visited {
  display: inline-block !important;
  background: #d9d9d9 !important;
  color: #000000 !important;
  font-size: 1.1em !important;
  font-weight: 500 !important;
  padding: 14px 32px !important;
  border-radius: 8px !important;
  text-decoration: none !important;
  margin-top: 12px !important;
  box-shadow: none !important;
  transition: background 0.2s !important;
}

.action-item:hover {
  background: #bdbdbd !important;
  color: #393939 !important;
  transform: none !important;
}

.action-item::before,
.action-item:hover::before {
  content: none !important;
}

.action-item .icon {
  width: 24px !important;
  height: 24px !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.action-item .icon::before {
  content: none !important;
}

.action-item .icon svg {
  width: 24px !important;
  height: 24px !important;
  stroke: currentColor !important;
  stroke-width: 2 !important;
  fill: none !important;
}

/* ===============================
STYLE SECTION FLAGS SLIDE AUTO
=================================*/
.flags-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 80px;
  margin-top: 10px;
}

.flags-track {
  display: flex;
  animation: scroll 20s linear infinite;
  gap: 30px;
  width: max-content;
}

.flag {
  width: 70px;
  height: 50px;
  border-radius: 50px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  overflow: hidden;
}

.flag-label {
  display: flex;
  align-items: center;
  background: rgba(255, 247, 247, 0.12);
  border-radius: 50px;
  padding: 8px 20px 8px 20px;
  margin-right: 10px;
  box-shadow: 0 2px 8px rgba(44, 185, 150, 0.08);
}

.country-name {
  margin-left: 12px;
  font-size: 1.08em;
  font-weight: 600;
  color: #ffffff;
  padding: 3px 12px;
  border-radius: 6px;
  letter-spacing: 0.01em;
  box-shadow: 0 1px 2px #0001;
}

.flag:hover {
  transform: scale(1.1);
}

.flag.cote-divoire {
  background: linear-gradient(
    to right,
    #ff8c00 33.33%,
    white 33.33%,
    white 66.66%,
    #009639 66.66%
  );
}

.flag.togo {
  background: linear-gradient(
    to bottom,
    #006a4e 0%,
    #006a4e 20%,
    #ffce00 20%,
    #ffce00 40%,
    #006a4e 40%,
    #006a4e 60%,
    #ffce00 60%,
    #ffce00 80%,
    #006a4e 80%
  );
  position: relative;
}

.flag.togo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: #d21034;
}

.flag.togo::after {
  content: "★";
  position: absolute;
  top: 50%;
  left: 20%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 16px;
  z-index: 2;
}

.flag.maldives {
  background: #d21034;
  position: relative;
}

.flag.maldives::before {
  content: "";
  position: absolute;
  top: 15%;
  left: 25%;
  width: 50%;
  height: 70%;
  background: #007e3a;
  border-radius: 50%;
}

.flag.maldives::after {
  content: "☪";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 20px;
}

.flag.mali {
  background: linear-gradient(
    to right,
    #14b53a 33.33%,
    #fcd116 33.33%,
    #fcd116 66.66%,
    #ce1126 66.66%
  );
}

.flag.nigeria {
  background: linear-gradient(
    to right,
    #008751 33.33%,
    white 33.33%,
    white 66.66%,
    #008751 66.66%
  );
}

.flag.ireland {
  background: linear-gradient(
    to right,
    #009639 33.33%,
    white 33.33%,
    white 66.66%,
    #ff8c00 66.66%
  );
}

.flag.togo2 {
  background: linear-gradient(
    to bottom,
    #006a4e 0%,
    #006a4e 20%,
    #ffce00 20%,
    #ffce00 40%,
    #006a4e 40%,
    #006a4e 60%,
    #ffce00 60%,
    #ffce00 80%,
    #006a4e 80%
  );
  position: relative;
}

.flag.togo2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: #d21034;
}

.flag.togo2::after {
  content: "★";
  position: absolute;
  top: 50%;
  left: 20%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 16px;
  z-index: 2;
}

.flag.burkina-faso {
  background: linear-gradient(to bottom, #ce1126 50%, #009639 50%);
  position: relative;
}

.flag.burkina-faso::after {
  content: "★";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fcd116;
  font-size: 18px;
}

.flag.chad {
  background: linear-gradient(
    to right,
    #002664 33.33%,
    #fecb00 33.33%,
    #fecb00 66.66%,
    #c60c30 66.66%
  );
}

.flag.nigeria2 {
  background: linear-gradient(
    to right,
    #008751 33.33%,
    white 33.33%,
    white 66.66%,
    #008751 66.66%
  );
}

.flag.burkina-faso2 {
  background: linear-gradient(to bottom, #ce1126 50%, #009639 50%);
  position: relative;
}

.flag.burkina-faso2::after {
  content: "★";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fcd116;
  font-size: 18px;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ===============================
STYLE SECTION Disburse
=================================*/
.disburse-section {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  padding: 40px 0;
}

.disburse-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(44, 185, 150, 0.08);
  padding: 32px 28px;
  min-width: 320px;
  max-width: 820px;
  margin: auto;
}

.disburse-header {
  font-size: 15px;
  font-weight: 500;
  color: #bdbdbd;
  background: #ededed;
  border-radius: 8px;
  padding: 6px 18px;
  display: inline-block;
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}

.disburse-flow {
  font-size: 17px;
  color: #222;
}

.disburse-step {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 2px;
  margin-top: 8px;
}

.disburse-icon {
  color: #2bb996;
  font-size: 22px;
}

.pal-title {
  font-weight: bold;
  font-size: 22px;
  color: #2bb996;
  letter-spacing: 0.03em;
}

.disburse-title {
  font-weight: 600;
  font-size: 18px;
  color: #222;
}

.disburse-desc {
  font-size: 15px;
  color: #666;
  margin-bottom: 2px;
  margin-left: 32px;
}

.disburse-label {
  font-size: 13px;
  color: #bdbdbd;
  margin-left: 2px;
}

.disburse-arrow {
  text-align: left;
  font-size: 22px;
  color: #bdbdbd;
  margin: 8px 0 0 32px;
}

.disburse-currencies {
  display: flex;
  gap: 18px;
  font-weight: 700;
  font-size: 17px;
  color: #222;
  margin: 8px 0 0 32px;
  margin-bottom: 8px;
}

.disburse-wallets {
  display: flex;
  gap: 22px;
  margin: 10px 0 0 32px;
}

.wallet-logo {
  height: 32px;
  width: auto;
  object-fit: contain;
  background: none;
}

.disburse-info {
  padding-left: 18px;
}

.disburse-title-main {
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

.disburse-desc-main {
  color: #444;
  margin-bottom: 18px;
}

.disburse-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.disburse-list li {
  color: #222;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.disburse-list-icon {
  color: #2bb996;
  font-size: 20px;
}

.disburse-btns {
  display: flex;
  gap: 18px;
  margin-top: 30px;
}

.disburse-btn {
  font-size: 20px;
  font-weight: 500;
  padding: 10px 32px;
  border-radius: 8px;
  border: none;
  box-shadow: none;
  transition: background 0.2s;
}

.disburse-btn-light {
  background: #d9d9d9;
  color: #222;
}

.disburse-btn-light:hover {
  background: #c7c6c6;
}

.integration-image-carousel {
  width: 70%;
  overflow: hidden;
  margin-top: 20px;
  margin-bottom: 20px;
}

.integration-image-track {
  display: flex;
  gap: 24px;
  animation: integration-carousel-scroll 28s linear infinite;
  align-items: center;
}

.integration-image-carousel img {
  width: 70px;
  height: auto;
  border-radius: 8px;
  flex-shrink: 0;
  background: #fff;
  box-shadow: 0 2px 8px rgba(44, 185, 150, 0.08);
}

@keyframes integration-carousel-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}



/* ==================================
STYLE SECTION INTEGRATION CODE SOURCE
====================================*/
.integration-section {
  background: #393939;
  background-image: url(assets/img/noise.png);
  background-blend-mode: difference;
  
}

.integration-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  gap: 5px;
  max-width: 1200px; 
  width: 100%;
  padding: 0 40px;
  overflow: hidden; 
}

.integration-left {
  margin-top: 20px;
  color: #fff;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 0 0 60%;
  max-width: 60%;
  min-width: 0;
}

.integration-bar {
  width: 60px;
  height: 6px;
  background: #fff;
  border-radius: 3px;
  margin-bottom: 32px;
}

.integration-left h2 {
  font-weight: 400;
  margin-bottom: 18px;
  line-height: 1.1;
}

.integration-bold {
  font-weight: 700;
}

.integration-green {
  color: #2bb996;
  font-weight: 700;
}

.integration-desc {
  color: #e0e0e0;
  margin-bottom: 32px;
  margin-top: 12px;
}

.integration-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #000;
  width: 200px;
  color: #fff;
  font-size: 1.1em;
  font-weight: 500;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  margin-top: 12px;
  transition: background 0.2s;
}

.integration-btn:hover {
  background: #3f3e3e;
  color: #fff;
}

.integration-arrow {
  display: flex;
  transition: transform 0.2s ease;
}

.integration-btn:hover .integration-arrow {
  transform: translateX(4px);
}

.integration-right {
  background: #181818;
  color: #fff;
  font-family: "Fira Mono", "Consolas", "Menlo", monospace;
  padding: 32px;
  border-radius: 16px;
  height: 600px;
  overflow-x: hidden;
  flex: 0 0 40%;
  max-width: 40%;
  min-width: 0;
}

.integration-code {
  background: transparent;
  color: #fff;
  font-size: 1.1em;
  line-height: 1.6;
  margin-left: 0;
  padding: 0;
  border: none;
  white-space: pre;
  width: 100%;
}

.code-key {
  color: #2bb996;
}

.code-var {
  color: #e1e1e1;
}

.code-func {
  color: #82aaff;
}

.code-str {
  color: #ecc48d;
}

.code-num {
  color: #f78c6c;
}

.code-prop {
  color: #c3e88d;
}

.code-comment {
  color: #7f8c8d;
  font-style: italic;
}

@media (max-width: 900px) {
  .integration-left h2 {
    font-size: 2em;
  }

  .integration-left h2 {
    font-size: 2em;
    text-align: left;
  }

  .integration-desc {
    font-size: 1em;
  }


  .integration-image-carousel {
    width: 100%;
  }
}


@media (max-width: 700px) {
  .integration-left h2 br {
    display: none;
  }

  .integration-container {
    flex-direction: column;
    gap: 40px;
    padding: 0 20px;
  }

  .integration-left,
  .integration-right {
    flex: 0 0 100%;
    max-width: 100%;
    align-items: left;
  }

  .integration-right {
    height: auto;
  }

  .integration-code {
    white-space: pre-wrap;
    word-break: break-word;
  }
  
  .integration-btn {
    font-size: smaller;
    width: 200px;
    text-align: center;
  }
}


@media (max-width: 600px) {
  .integration-image-carousel img {
    width: 70px;
  }

  .integration-image-track {
    gap: 12px;
  }
  .disburse-card {
    padding: 18px 8px;
    min-width: 0;
    max-width: 100%;
  }

  .disburse-title-main {
    font-size: 22px;
  }

  .disburse-btn {
    font-size: 16px;
    padding: 8px 18px;
  }
}

/* ============================================
STYLE SECTION Ready to start your PAL journey ?
=============================================*/
.cta-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2.5rem;
}

.cta-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.get-started {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  color: #00a87a;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0;
  color: #0f172a;
  white-space: nowrap;
}

.cta-right {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  min-width: 220px;
}

.cta-btn i {
  font-size: 1.25rem;
}

.cta-expert {
  background: #00a87a;
  color: #ffffff;
}

.cta-expert:hover {
  background: #00a87a;
  color: #ffffff;
}

.cta-account {
  background: transparent;
  border: 2px solid #00a87a;
  color: #00a87a;
}

.cta-account:hover {
  background: #00a87a;
  color: #ffffff;
}

/* ===============================
        RESPONSIVE CTA
        ================================= */

/* Tablette */
@media (max-width: 900px) {
  .cta-wrapper {
    padding: clamp(1.5rem, 5vw, 3rem);
  }

  .cta-title {
    font-size: clamp(1.8rem, 5vw, 2.6rem);
    white-space: normal; /* permet au texte de passer à la ligne si nécessaire */
  }

  .cta-btn {
    padding: 12px 24px;
    font-size: 0.95rem;
    min-width: 180px;
  }

  .cta-btn i {
    font-size: 1rem;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .cta-wrapper {
    gap: 1.5rem;
    padding: 1.5rem 1rem;
  }

  .cta-title {
    font-size: 1.6rem;
    line-height: 1.25;
  }

  .get-started {
    font-size: 0.75rem;
    margin-bottom: 0.8rem;
  }

  .cta-right {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }

  .cta-btn {
    width: 100%;
    padding: 10px 20px;
    font-size: 0.95rem;
    min-width: unset;
  }

  .cta-btn i {
    font-size: 1rem;
  }
}
