
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Inter;
}

body{
background:#ffffff;
color:#0a1a2f;
}
/*
/* NAV *
nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 30px;
  background:#fff;
  box-shadow:0 2px 10px rgba(0,0,0,0.05);
  position:sticky;
  top:0;
  z-index:1000;
}

/* LOGO *
.logo{
  font-size:22px;
  font-weight:bold;
}
.logo span{
  color:#2E94E3;
}

/* MENU *
.nav-links{
  display:flex;
  list-style:none;
  gap:25px;
}

.nav-links a{
  text-decoration:none;
  color:#333;
  font-weight:600;
  transition:0.3s;
}

.nav-links a:hover{
  color:#2E94E3;
}

/* BOUTON *
.btn{
  background:#2E94E3;
  color:#fff;
  padding:10px 18px;
  border-radius:8px;
  text-decoration:none;
  font-weight:bold;
}

/* MENU MOBILE *
.menu-btn{
  display:none;
  font-size:26px;
  cursor:pointer;
}

/* MOBILE *
@media(max-width:768px){

  .nav-links{
    position:absolute;
    top:70px;
    left:0;
    width:100%;
    background:#fff;
    flex-direction:column;
    align-items:center;
    gap:20px;
    padding:20px 0;
    display:none;
  }

  .nav-links.active{
    display:flex;
  }

  .menu-btn{
    display:block;
  }

  .btns{
    display:none;  /*cache bouton sur mobile *
  }
}*/




.slide{
  background-position:center;
  background-repeat:no-repeat;
}

/* Desktop */
@media(min-width:901px){
  .slide{
    background-size:cover;
  }
}

/* Mobile */
@media(max-width:900px){
  .slide{
    background-size:contain;
    background-color:#000;
  }
}





/* ================= NAVBAR ================= */
.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 8%;
  background:#fff;
  box-shadow:0 5px 20px rgba(0,0,0,0.05);
  position:sticky;
  top:0;
  z-index:1000;
}

/* LOGO */
.logo{
    display: flex;
    align-items: center;
  }
  
  /* IMAGE LOGO */
  .logo img{
    height: 70px;        /* taille propre desktop */
    width: auto;
    object-fit: contain;
  }
  
  /* RESPONSIVE MOBILE */
  @media(max-width:900px){
    .logo img{
      height: 35px;
    }

   
  }

/* MENU */
.nav-links{
  display:flex;
  gap:25px;
  list-style:none;
}

.nav-links li{
  position:relative;
}

.nav-links a{
  text-decoration:none;
  color:#333;
  font-weight:600;
  display:flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border-radius:8px;
  transition:0.3s;
}

.nav-links a:hover{
  background:#f0f6ff;
  color:#1e66ff;
}

/* CTA */
.cta{
  background:#1e66ff;
  color:white;
  padding:10px 18px;
  border-radius:10px;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
}

.cta:hover{
  background:#1554d1;
}

/* DROPDOWN */
.dropdown-menu{
  position:absolute;
  top:45px;
  left:0;
  background:#fff;
  box-shadow:0 15px 35px rgba(0,0,0,0.1);
  border-radius:12px;
  display:none;
  flex-direction:column;
  min-width:200px;
  overflow:hidden;
}

.dropdown-menu li a{
  padding:12px;
  border-bottom:1px solid #eee;
}

.dropdown-menu li a:hover{
  background:#f5f9ff;
}

/* hover desktop */
.dropdown:hover .dropdown-menu{
  display:flex;
}

/* MOBILE */
.menu-btn{
  display:none;
  font-size:26px;
  cursor:pointer;
}

@media(max-width:900px){

  .nav-links{
    position:absolute;
    top:70px;
    left:0;
    width:100%;
    background:#fff;
    flex-direction:column;
    align-items:center;
    gap:15px;
    padding:20px 0;
    display:none;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
  }

  .nav-links.active{
    display:flex;
  }

  .menu-btn{
    display:block;
  }

  /*.cta{
    display:none;
  }*/

  /* dropdown mobile */
  .dropdown-menu{
    position:static;
    box-shadow:none;
    display:none;
  }

  .dropdown.active .dropdown-menu{
    display:flex;
  }
}








/* DROPDOWN BASE */
.dropdown{
  position:relative;
}

/* MENU CACHÉ */
.dropdown-menu{
  position:absolute;
  top:100%;
  left:0;
  background:#fff;
  min-width:220px;
  border-radius:10px;
  box-shadow:0 10px 30px rgba(0,0,0,0.1);
  display:none;
  z-index:9999; /* IMPORTANT */
}

/* LIENS */
.dropdown-menu li{
  list-style:none;
}

.dropdown-menu a{
  display:block;
  padding:12px 15px;
  color:#333;
  text-decoration:none;
}

.dropdown-menu a:hover{
  background:#f1f5f9;
}

/* AFFICHAGE AU HOVER */
.dropdown:hover .dropdown-menu{
  display:block;
}






.btn{
background:#1e66ff;
color:white;
padding:10px 18px;
border-radius:8px;
text-decoration:none;
font-weight:600;
}

.slider{
position:relative;
width:100%;
height:100vh;
overflow:hidden;
}

.slide{
position:absolute;
width:100%;
height:100%;
display:flex;
align-items:center;
justify-content:space-between;
padding:0 10%;
opacity:0;
transition:1s ease;
background-size:cover;
background-position:center;
}

.slide::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(10,20,40,0.55);
z-index:1;
}

.slide.active{
opacity:1;
}

/* TEXTE AU DESSUS */
.slide-text{
z-index:2;
max-width:600px;
color:white;
}

.slide-text{
  max-width:600px;
  color:white;
}

/* TITRE */
.slide-text h1{
  font-size:45px;
  line-height:1.2;
}

/* PARAGRAPHE */
.slide-text p{
  margin-top:15px;
  font-size:16px;
  line-height:1.6;
}

.slide-text h1 span{
color:#4fa3ff;
}

.slide-text a{
display:inline-block;
margin-top:25px;
background:#1e66ff;
color:white;
padding:14px 26px;
border-radius:12px;
text-decoration:none;
font-weight:600;
}

/* IMAGE OFF (car background now full) */
.slide img{
display:none;
}


@media(max-width:900px){

  .slide{
    padding:0 15px;
    text-align:center;
  }

  .slide h1,
  .slide p{
    
    word-wrap:break-word;
    overflow-wrap:break-word;
  }

  .slide h1{
    font-size:26px;
  }

  .slide p{
    font-size:14px;
    margin-left: -20px;
  }

  .slide-text p{
    font-size:14px;
    padding:0 10px;
    text-align:center;
  }

}


@media(max-width:900px){

  .slide-text p{
    font-size:14px;
    padding:0 10px;
    text-align:center;
  }

}


/* DOTS */
.dots{
position:absolute;
bottom:25px;
width:100%;
text-align:center;
z-index:3;
}

.dot{
height:10px;
width:10px;
margin:5px;
display:inline-block;
border-radius:50%;
background:rgba(255,255,255,0.4);
cursor:pointer;
transition:0.3s;
}

.dot.active{
background:#1e66ff;
transform:scale(1.3);
}

/* STATS */
.stats{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
padding:60px 8%;
text-align:center;
background:#f5f9ff;
}

.stat h2{
color:#1e66ff;
font-size:28px;
}

/* SECTIONS */
.section{
padding:80px 8%;
text-align:center;
}

.section h2{
font-size:32px;
margin-bottom:20px;
}

/* FEATURES */
.features{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
margin-top:40px;
}

.feature{
padding:25px;
border-radius:15px;
background:white;
box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

/* MOBILE APP */
.mobile{
display:flex;
align-items:center;
justify-content:space-between;
padding:80px 8%;
background:#f5f9ff;
}

.mobile img{
width:40%;
border-radius:20px;
}

.mobile-text{
max-width:50%;
}

/* CTA */
.cta{
background:#1e66ff;
color:white;
padding:60px 8%;
text-align:center;
border-radius:20px;
margin:80px 8%;
}

/* FOOTER */
footer{
text-align:center;
padding:30px;
color:#777;
border-top:1px solid #eee;
}




@media(max-width:900px){

.slide-text h1{
font-size:34px;
}

.slide-text p{
font-size:16px;
}

.slider{
height:100vh;
}

.slide-text{
text-align:center;
}

}


/* NEW ADVANCED SECTIONS */
.badge{
display:inline-block;
background:#e8f1ff;
color:#1e66ff;
padding:6px 12px;
border-radius:20px;
font-size:12px;
margin-bottom:15px;
font-weight:600;
}

.grid2{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:30px;
align-items:center;
}

.problem{
background:#0a1a2f;
color:white;
padding:80px 8%;
}

.problem h2{
color:white;
}

.card-dark{
background:#111c33;
padding:25px;
border-radius:15px;
color:white;
}

.compare{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
margin-top:40px;
}

.compare div{
padding:25px;
border-radius:15px;
}

.bad{
background:#ffe5e5;
}

.good{
background:#e8fff1;
}

.faq{
max-width:800px;
margin:auto;
text-align:left;
}

.faq-item{
background:white;
margin-bottom:15px;
padding:20px;
border-radius:12px;
box-shadow:0 5px 15px rgba(0,0,0,0.05);
cursor:pointer;
}

.faq-answer{
display:none;
margin-top:10px;
color:#555;
}

.testimonials2{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
}

.testimonials2 .t{
padding:20px;
background:#f5f9ff;
border-radius:15px;
}

.cta-big{
background:linear-gradient(135deg,#1e66ff,#4f8cff);
color:white;
padding:80px 8%;
text-align:center;
border-radius:25px;
margin:80px 8%;
}

.cta-big h2{
font-size:36px;
}


/* ================= MOBILE MENU ================= */
.menu-btn{
display:none;
font-size:28px;
cursor:pointer;
}

@media(max-width:900px){

nav ul{
display:none;
position:absolute;
top:70px;
left:0;
width:100%;
background:white;
flex-direction:column;
padding:20px;
box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

nav ul.show{
display:flex;
}

.menu-btn{
display:block;
}

.menu-btns{
font-size: 15px;
  }

}

/* ================= GLOBAL MOBILE FIX ================= */
@media(max-width:900px){

.hero-text, .slide-text{
text-align:center;
}

.slide-text h1{
font-size:32px !important;
}

.section h2{
font-size:24px;
}

.stats{
padding:30px 5%;
}

.features, .testimonials2, .compare, .grid2{
grid-template-columns:1fr !important;
}

.mobile{
padding:40px 5%;
}

}

/* ================= ANIMATION SCROLL ================= */
.hidden{
opacity:0;
transform:translateY(40px);
transition:all 0.8s ease;
}

.show{
opacity:1;
transform:translateY(0);
}

/* ================= BUTTON EFFECT ================= */
a, .btn{
transition:0.3s;
}

a:hover, .btn:hover{
transform:scale(1.05);
}

/* ================= CARDS HOVER ================= */
.feature, .card-dark, .t{
transition:0.3s;
}

.feature:hover, .card-dark:hover, .t:hover{
transform:translateY(-5px);
}

/* ================= SLIDER DOTS ================= */
.dots{
text-align:center;
position:absolute;
bottom:20px;
width:100%;
}

.dot{
height:10px;
width:10px;
margin:5px;
display:inline-block;
border-radius:50%;
background:#ccc;
cursor:pointer;
}

.dot.active{
background:#1e66ff;
}



/* SECTION */
.section{
  padding:40px;
}

/* TITLE */
.title{
  font-size:17px;
  font-weight:bold;
  margin-bottom:20px;
  color:#fff;
}

/* HORIZONTAL SCROLL */
.country-scroll{
  display:flex;
  gap:15px;
  overflow-x:auto;
  padding-bottom:10px;
  scroll-snap-type:x mandatory;
}

/* CARD */
.country{
  min-width:140px;
  background: linear-gradient(145deg,#1e293b,#0b1220);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:18px;
  padding:15px;
  text-align:center;
  scroll-snap-align:start;
  transition:0.3s;
  box-shadow:0 10px 25px rgba(0,0,0,0.3);
}

.country img{
  height: 20px;
}
.country:hover{
  transform:translateY(-5px) scale(1.05);
  border-color:#38bdf8;
  box-shadow:0 15px 30px rgba(56,189,248,0.3);
}

/* FLAG */
.flag{
  font-size:35px;
  margin-bottom:8px;
}

/* NAME */
.name{
  font-size:14px;
  font-weight:600;
}

/* SCROLLBAR */
.country-scroll::-webkit-scrollbar{
  height:6px;
}
.country-scroll::-webkit-scrollbar-thumb{
  background:#38bdf8;
  border-radius:10px;
}


.btns{
  background: linear-gradient(270deg, #1e66ff, #4fa3ff, #ffffff, #1e66ff);
  background-size: 600% 600%;
  color: white;
  padding: 10px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  /* glow */
  box-shadow: 0 0 15px rgba(30, 102, 255, 0.6);
  animation: glowMove 4s ease infinite;
  transition: 0.3s;
}
/* animation couleur fluide */
@keyframes glowMove{
  0%{
    background-position: 0% 50%;
    box-shadow: 0 0 10px rgba(30,102,255,0.5);
  }
  50%{
    background-position: 100% 50%;
    box-shadow: 0 0 25px rgba(79,163,255,0.9);
  }
  100%{
    background-position: 0% 50%;
    box-shadow: 0 0 10px rgba(30,102,255,0.5);
  }
}

.btns:hover{
  transform: scale(1.05);
  box-shadow: 0 0 35px rgba(30,102,255,1);
}
.hero{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 60px 8%;
}
/* gauche */
.hero-text{
  flex: 1;
  min-width: 300px;
}
/* droite */
.hero-img{
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-img img{
  width: 100%;
  max-width: 450px;
  height: auto;
  object-fit: contain;
}
@media(max-width:900px){

.hero{
margin-left : -40px;
  align-items: center;   /* 👈 CENTRE LES BLOCS */
  text-align: center;
}

.hero-text{
  display: flex;
  flex-direction: column;
  align-items: center;   /* 👈 centre tout le contenu texte */
  justify-content: center;
}

.hero-text p{
  text-align: center;
}

.features{
  justify-content: center;
}

.feature{
  text-align: center;
}

.hero-img{
  margin-top: 10px;
  display: flex;
  justify-content: center;
  width: 100%;
}
.hero-img img{
  max-width: 100%;
}
}
/* visa */
.services{
  text-align:center;
  padding:80px 8%;
  background:#f7f9ff;
}

.services h2{
  font-size:32px;
  font-weight:800;
}

.subtitle{
  color:#666;
  margin-bottom:40px;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
  margin-top:40px;
}

/* BOX */
.service-box{
  background:white;
  padding:30px;
  border-radius:18px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  transition:0.3s;
  text-align:center;
}

.service-box:hover{
  transform:translateY(-8px);
}

/* ICON */
.icon{
  font-size:40px;
  margin-bottom:15px;
}

/* TITLE */
.service-box h3{
  margin-bottom:10px;
  font-size:18px;
  font-weight:700;
}

/* TEXT */
.service-box p{
  font-size:14px;
  color:#555;
  line-height:1.5;
}

/* MOBILE */
@media(max-width:900px){
  .services-grid{
    grid-template-columns:1fr;
  }
}



.pricing{
  text-align:center;
  padding:90px 8%;
  background:linear-gradient(135deg,#0a1a2f,#1e66ff);
  color:white;
}

.pricing h2{
  font-size:34px;
  font-weight:800;
}

.subtitle{
  color:#dbe7ff;
  margin-bottom:50px;
}

/* GRID */
.pricing-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

/* BOX */
.price-box{
  background:white;
  color:#0a1a2f;
  padding:35px;
  border-radius:20px;
  box-shadow:0 15px 40px rgba(0,0,0,0.2);
  transition:0.3s;
  position:relative;
}

.price-box:hover{
  transform:translateY(-10px);
}

/* PRIX */
.price{
  font-size:26px;
  font-weight:800;
  margin:15px 0;
  color:#1e66ff;
}

/* LISTE */
.price-box ul{
  list-style:none;
  padding:0;
  margin:20px 0;
}

.price-box ul li{
  margin-bottom:10px;
  font-size:14px;
}

/* BUTTON */
.btn-small{
  display:inline-block;
  background:#1e66ff;
  color:white;
  padding:10px 20px;
  border-radius:10px;
  text-decoration:none;
  font-weight:600;
}

/* PLAN RECOMMANDÉ */
.recommended{
  border:3px solid #ffd700;
  transform:scale(1.05);
  background:linear-gradient(145deg,#ffffff,#f0f6ff);
}

.badge-plan{
  position:absolute;
  top:-12px;
  left:50%;
  transform:translateX(-50%);
  background:#ffd700;
  color:#000;
  padding:6px 12px;
  border-radius:20px;
  font-size:12px;
  font-weight:700;
}

/* COULEURS SPECIFIQUES */
.basic{
  border-top:5px solid #ccc;
}

.pro{
  border-top:5px solid #1e66ff;
}

.premium{
  border-top:5px solid #00c2ff;
}

/* MOBILE */
@media(max-width:900px){
  .pricing-grid{
    grid-template-columns:1fr;
  }

  .recommended{
    transform:scale(1);
  }
}
