
/*-----------------------------------------------------1 ere section bare de menu----------------------------------------------------------------*/

.hero {
    height: 100vh;
    display: flex
;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    background: radial-gradient(circle at center, #03101c 0%, #000000 42%, #000 100%);
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    color: #2f80c3;
    margin-bottom: 0.5rem;
}

.hero-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    margin: 14px;
}

.hero-content .btn {
    display: inline-block;        /* pour gérer padding/marge si tu veux */
    padding: 0.8rem 1.8rem;
    background: linear-gradient(135deg, rgb(45, 168, 255), rgb(15, 95, 168));
    border-radius: 30px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    margin: 14px;
    cursor: default;             /* montre que ce n’est pas cliquable */
    pointer-events: none;        /* désactive tout clic */
}
  .hero-content .btn:hover {
    background-color: #145da0;
  }



/*-----------------------------------------------------2 ere section bare de menu----------------------------------------------------------------*/

/* Réinitialisation des marges et du padding */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #000;
     margin: 0;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}


/* Réinitialisation des marges et du padding */
body {
    margin: 0;
    font-family: Arial, sans-serif;
        background: black;
}

/* Style par défaut (transparent) */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: transparent; /* Transparent au début */
    padding: 0px 17px;
    color: white;
    position: fixed;   /* header fixe */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    transition: background-color 0.5s, box-shadow 0.5s; /* transition douce */
}

/* Style quand on scroll */
.header.scrolled {
    background-color: #000000c7; /* noir translucide */
    box-shadow: 0 2px 5px rgb(0, 0, 0); /* ligne/bordure en bas */
}




/* Logo */
.header .logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header .logo img {
    height: 85px;
}

.header .logo span {
    font-size: 22px;
    font-weight: bold;
}

/* Menu */
.header .menu {
    display: flex;
    gap: 20px;
    margin-left: auto;
    align-items: center;
}

.header .menu a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

.header .menu a:hover {
    color: #1e90ff;
}

/* Bouton Appeler */
.header .call-button {
      background: linear-gradient(135deg, rgb(45, 168, 255), rgb(15, 95, 168));
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    margin-left: 32px;
        margin-right: 37px;
}

.header .call-button:hover {
    background-color: #4682b4;
}




.menu a {
    margin: 0 10px;
    text-decoration: none;
    color: black;
    font-weight: bold;
}

.call-button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

/* Style du bouton menu (icône) */
.menu-button {
    display: none; /* Masquer le bouton par défaut */
}

@media (max-width: 768px) {
    /* Masquer le bouton Appeler */
    .header .call-button {
        display: none;
    }

    /* Afficher le bouton menu (icône) */
    .menu-button {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
        color: white;
        
    }

.hero h1 {
    font-size: 38px !important;
    margin-bottom: 25px;
}

.hero {
    height: 100vh;
}

.badge {
    padding: 10px 14px;
    font-size: 12px;
    margin-bottom: 0px;
}

.cta {
    padding: 16px 19px;
    font-size: 14px;
}

    /* Cacher le menu par défaut */
    .header .menu {
        display: none;
        position: absolute;
        top: 60px; /* juste sous le header */
        right: 15px;
        flex-direction: column;
        background-color: #0a0a0a;
        padding: 10px;
        border-radius: 5px;
        gap: 15px;
        z-index: 1000;
    }

    /* Header : logo à gauche, bouton menu à droite */
    .header {
        justify-content: space-between; /* garde le logo à gauche et le menu-button à droite */
        padding: 0 15px;
        
    }

    .header .logo {
        flex-shrink: 0; /* pour éviter que le logo se rétrécisse */
    }

    .header .logo img {
    height: 67px;
    }
}











/*-----------------------------------------------------3 section ----------------------------------------------------------------*/


/* ========== BACKGROUND FULL WIDTH ========== */
.pricing3-bg {
  width: 100%;
  background:
    radial-gradient(circle at center,   rgba(32, 144, 255, 0.15), transparent 40%), linear-gradient(180deg, #000000, #000)
}

/* ========== SECTION CENTRÉE ========== */
.pricing3-section {
  max-width: 1200px;
  margin: auto;
  padding: 80px 20px;
  color: #fff;
  font-family: Inter, system-ui, sans-serif;
}

/* ========== HEADER ========== */
.pricing3-header {
  text-align: center;
  margin-bottom: 60px;
}

.pricing3-subtitle {
  color: #1e90ff;
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}

.pricing3-header h2 {
  font-size: 42px;
  margin: 0;
}

.pricing3-header h2 span {
  color: #1e90ff;
}

.pricing3-header p {
  color: #b5b5b5;
  margin-top: 10px;
}

/* ========== GRID ========== */
.pricing3-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;

  align-items: stretch; /* IMPORTANT */
}

/* ========== CARD ========== */
.pricing3-card {
    background: linear-gradient(180deg, #1c1c1c, #222);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: auto;
}
.pricing3-card:hover {
  transform: translateY(-6px);
}

/* ========== ICON / PRICE ========== */
.pricing3-icon {
  color: #1e90ff;
  font-size: 28px;
  margin-bottom: 12px;
}

.pricing3-price {
  color: #1e90ff;
  font-size: 35px;
  font-weight: 700;
  margin: 12px 0 24px;
}

/* ========== LISTE ========== */
.pricing3-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.pricing3-list li {
  padding-left: 24px;
  margin-bottom: 12px;
  position: relative;
  font-size: 14px;
}

.pricing3-list li::before {
  content: "✔";
  color: #1e90ff;
  position: absolute;
  left: 0;
}

/* ========== BOUTONS ========== */
.pricing3-btn {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  border: none;

  margin-top: auto;  /* AJOUT IMPORTANT */
}
.pricing3-btn-primary {
    background: linear-gradient(135deg, rgb(45, 168, 255), rgb(15, 95, 168));
  color: #fff;
}

.pricing3-btn-outline {
  background: transparent;
  border: 1px solid #1e90ff;
  color: #fff;
}

/* ========== FEATURED ========== */
.pricing3-featured {
  outline: 2px solid #1e90ff;
}

.pricing3-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: linear-gradient(135deg, rgb(45, 168, 255), rgb(15, 95, 168));
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.pricing3-icon {
  width: 60px;
  height: 60px;
  background: rgba(30, 144, 255, 0.15); /* couleur de fond légère */
  border-radius: 12px; /* coins arrondis */
  display: flex;
  align-items: center;
  justify-content: center;
  
  overflow: hidden; /* pour que l'image reste dans le cadre */
}

.pricing3-icon img {
  width: 50%;
  height: 50%;
  object-fit: contain;
}


/* Mobile : carrousel horizontal avec card centrée */
@media (max-width: 768px) {

  .pricing3-grid {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      gap: 20px;
      padding: 40px 20px; /* espace autour du carrousel */
  }

  .pricing3-card {
      flex: 4 0 96% ;          /* largeur visible principale */
      scroll-snap-align: center;  /* centrage automatique */
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      background: linear-gradient(180deg, #1c1c1c, #222);
      border-radius: 20px;
      padding: 32px;
      position: relative;
      box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  }

  /* Zoom léger de la card au centre du viewport */
  .pricing3-grid::-webkit-scroll-snap-align {
      scroll-snap-align: center;
  }

  /* Effet de mise en avant pour la carte active */
  .pricing3-card:focus,
  .pricing3-card:hover {
      transform: scale(1.05);
      box-shadow: 0 15px 35px rgba(0,0,0,0.6);
  }

  /* Masquer la scrollbar pour propreté */
  .pricing3-grid::-webkit-scrollbar {
      display: none;
  }

  .pricing3-grid {
      -ms-overflow-style: none;  /* IE et Edge */
      scrollbar-width: none;     /* Firefox */
  }

  /* Ajuster les icones et textes */
  .pricing3-icon {
      width: 70px;
      height: 70px;
  }

  .pricing3-price {
      font-size: 30px;
  }

  .pricing3-header h2 {
      font-size: 28px;
  }

  .pricing3-list li {
      font-size: 13px;
  }

  .pricing3-btn {
      font-size: 14px;
      padding: 12px;
  }
}


/*-----------------------------------------------------4 section ----------------------------------------------------------------*/


body {
        margin: 0;
        background: #000;
        font-family: Arial, Helvetica, sans-serif;
        color: #fff;
       
        height: 100vh;
    }

    .wrapper {
    text-align: center;
    width: 100%;
    /* background: linear-gradient(180deg, #1c1c1c, #222); */
    display: flex
;
    flex-direction: column;
    justify-content: center;
    height: 73vh;
    background: black;
}
   .lang {
    font-size: 44px;
    font-weight: bold;
    color: #2da8ff;
    margin-bottom: 30px;
}

 .card {
    background: linear-gradient(180deg, #1c1c1c, #222);
    border-radius: 14px;
    width: 754px;
    margin: 0 auto;
    padding: 34px 40px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}

    .card h2 {
        margin: 0;
        font-size: 22px;
        font-weight: 600;
    }

    .card h2 span {
        color: #2da8ff;
    }

   .divider {
    margin: 15px 0 25px;
    height: 1px;
    background: rgb(255 255 255);
}

    .option {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 0;
        font-size: 14px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .option:last-child {
        border-bottom: none;
    }

  .price {
            background: linear-gradient(135deg, rgb(45, 168, 255), rgb(15, 95, 168));
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
}
.alert-banner {
    position: relative; /* IMPORTANT */
    margin: 50px auto 0;
    width: fit-content;
    max-width: 90%;
    background: linear-gradient(180deg, #8b0000, #5a0000);
    border-radius: 999px;
    padding: 18px 30px;
    text-align: center;
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.4);
}

/* ✅ Icône AU-DESSUS */
.alert-icon {
    position: absolute;
    top: -18px; /* ajuste ici */
    left: 50%;
    transform: translateX(-50%);
    background: #00000000; /* fond pour effet “posé au-dessus” */
    padding: 4px;
    border-radius: 50%;
}

/* Texte */
.alert-text {
    font-size: 15px;
    font-weight: 500;
    color: #ff3b3b;
}

/* =========================
   MOBILE ULTRA PREMIUM
   ========================= */
@media (max-width: 768px) {

    body {
        height: auto;
        background: radial-gradient(circle at 50% -20%, #1a1a1a 0%, #000 60%);
    }

       .wrapper {
        height: auto;
        padding: 50px 18px 104px;
        justify-content: flex-start;
    }


    .lang {
        font-size: 22px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 35px;
        background: linear-gradient(90deg, #2da8ff, #7dd3ff);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .card {
        width: 100%;
        padding: 26px 22px;
        border-radius: 24px;
        background: linear-gradient(180deg, rgba(30,30,30,0.9), rgba(20,20,20,0.95));
        backdrop-filter: blur(14px);
        border: 1px solid rgba(255,255,255,0.05);
        box-shadow:
            0 20px 60px rgba(0,0,0,0.8),
            inset 0 1px 0 rgba(255,255,255,0.04);
    }

    .card h2 {
        font-size: 17px;
        font-weight: 600;
        line-height: 1.5;
        margin-bottom: 5px;
    }

    .card h2 span {
        background: linear-gradient(90deg, #2da8ff, #5ac8ff);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .divider {
        margin: 20px 0 25px;
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(255,255,255,0.25), transparent);
    }

    .option {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 16px 0;
        font-size: 15px;
        border-bottom: 1px solid rgba(255,255,255,0.04);
        transition: all 0.2s ease;
    }

    .option:last-child {
        border-bottom: none;
    }

    .option span:first-child {
        font-weight: 500;
        opacity: 0.92;
    }

    .price {
        font-size: 13px;
        font-weight: 600;
        padding: 8px 16px;
        border-radius: 999px;
        background: linear-gradient(135deg, #2da8ff, #0f5fa8);
        box-shadow:
            0 6px 18px rgba(45,168,255,0.35),
            inset 0 1px 0 rgba(255,255,255,0.3);
        letter-spacing: 0.5px;
    }

    /* Interaction premium */
    .option:hover {
        padding-left: 6px;
    }

    .option:active {
        transform: scale(0.97);
        opacity: 0.8;
    }

    .alert-banner {
    margin-top: 25px;
    padding: 18px 16px;
    border-radius: 999px;
    gap: 10px;
}

.alert-icon {
    font-size: 20px;
}

.alert-text {
    font-size: 13px;
    line-height: 1.4;
}

}









/*-----------------------------------------------------5 section ----------------------------------------------------------------*/














.footer {
  background-color: #111;
  color: #fff;
  padding: 50px 20px;
  font-family: Arial, sans-serif;
          border-top-left-radius: 50px;
        border-top-right-radius: 50px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.footer-col {
  flex: 1 1 200px;
}

.footer-logo img {
  width: 180px;
  margin-bottom: 20px;
}

/* Social */
.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons img {
  width: 40px;
  transition: transform 0.3s;
}

.social-icons a:hover img {
  transform: scale(1.1);
}

/* Links */
.footer-col h3 {
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  line-height: 2;
}

.footer-col a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: #00bcd4;
}

/* Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
}

/* 📱 MOBILE */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-col {
    width: 100%;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-logo img {
    margin: 0 auto 20px;
  }
}