 :root {
 --bg-primary: #000000;
 --bg-secondary: #1a1a1a;
 --bg-card: #1e1e1e;
 --text-primary: #ffffff;
 --text-secondary: #a1a1a1;
 --text-muted: #6b6b6b;
 --accent: #8bb0ff;

 --accent-hover: #4338ca;
 --border: #2a2a2a;
 --gradient: linear-gradient(135deg, #667eea 0%, #a4b5ff 100%);
 --shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
 --radius: 16px;
 --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
 }

 * {
 margin: 0;
 padding: 0;
 box-sizing: border-box;
 }

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Police Heavitas uniquement sur les titres */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Alte Haas Grotesk', sans-serif;
    font-size: 1.6rem !important; /* tu peux changer cette valeur selon tes besoins */
    transition: transform 0.3s ease;
}



/* Petits textes en Inter - version compacte et blanche */
body, p, .section-subtitle, .footer-brand-text, 
.footer-link-list a, .testimonial-quote, .testimonial-author, 
.price-label, .service-card p, .contact-details p, .nav-button, 
.form-group label, .faq-answer, .profile-card p, .profile-card li, .profile-btn {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 0.85rem; /* un peu plus petit */
    line-height: 1.2; /* texte plus compact */
    color: #ffffff; /* texte en blanc */
}



/* Container */
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem ;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo image */
.logo-main {
  height: 65px; /* 50px +30% */
  width: auto;
}

/* Menu */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 1.6rem !important; /* 1.2rem +30% */
}

.nav-menu a {
  color: #ffffff;
  text-decoration: none; /* suppression underline */
  font-weight: 700;

  font-size: 0.87rem; /* 0.9rem +30% */
  text-transform: uppercase;
  transition: color 0.3s ease, text-shadow 0.3s ease;
  position: relative;
  text-shadow: 1.04px 1.04px 1.95px rgba(0,0,0,0.3); /* +30% */
}

.nav-menu a:hover {
  color: var(--accent);
  text-shadow: 1.3px 1.3px 2.6px rgba(0,0,0,0.5); /* +30% */
}

/* Supprime complètement l'underline */
.nav-menu a::after {
  content: none !important;
}

/* Logo image dans le lien */
.logo img {
  height: 65px; /* 50px +30% */
  width: auto;
  display: block;
}

/* Optionnel : supprime les styles du lien texte */
.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}
.nav-button {
  position: relative;
  padding: 0.6rem 1.8rem;
  background: var(--bg-secondary);
  color: var(--text-primary);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  cursor: pointer;
  overflow: hidden;
  transition: var(--transition);
}

/* Texte toujours au-dessus */
.nav-button span {
  position: relative;
  z-index: 2;
  display: inline-block;
}

/* Couche de remplissage */
.nav-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%; /* commence vide */
  height: 100%;
  background: var(--accent); /* couleur de remplissage */
  border-radius: var(--accent); /* garde les coins arrondis */
  z-index: 1;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1); /* fluide */
}

/* Remplissage complet au survol */
.nav-button:hover::before {
  width: 100%;
}

/* Hover texte et bordure */
.nav-button:hover {
  color: var(--text-primary);
  border-color: var(--accent);
  box-shadow: 0 6px 20px rgba(139,176,255,0.5);
}


@keyframes wave {
  0% { transform: translateX(-100%) translateY(0) rotate(45deg); }
  50% { transform: translateX(0%) translateY(10%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(0) rotate(45deg); }
}

/* Animation d’apparition en descente */
@keyframes slideDown {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Appliquer l’animation à la navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 91px;
  z-index: 1000;
  display: flex;
  align-items: center;

  .nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;

  /* Flou transparent compatible iOS */
  background: rgba(0, 0, 0, 0.4);        /* fond semi-transparent */
  -webkit-backdrop-filter: blur(15px);   /* Safari/iOS */
  backdrop-filter: blur(15px);           /* Chrome, Firefox, Edge */
  border-radius: 16px;                   /* optionnel, pour arrondir */
  border: 1px solid rgba(255, 255, 255, 0.1);
}


  /* Animation */
  animation: slideDown 0.7s ease-out forwards;
}


/* Désactiver la navbar sur mobile */
@media (max-width: 768px) {
  .navbar {
    display: none !important;
  }
}


 /* Hero Section */
 .hero {
 min-height: 100vh;
 display: flex;
 margin-bottom: 0 !important;
 min-height: unset !important;
 padding-bottom: 1rem !important;
 margin-top: 5rem;
 align-items: center;
 justify-content: center;
 text-align: center;
 padding: 0 2rem;
 background: radial-gradient(ellipse at center, rgba(79, 70, 229, 0.1) 0%, transparent 70%);
 }

 .hero-content {
 max-width: 800px;
 }

 .hero-badge {
 display: inline-flex;
 align-items: center;
 gap: 0.5rem;
 background: var(--bg-card);
 border: 1px solid var(--border);
 padding: 0.5rem 1rem;
 border-radius: 50px;
 font-size: 0.9rem;
 color: var(--text-secondary);
 margin-bottom: 2rem;
 }

.hero-title {
  font-size: 1.7rem !important;
  font-weight: 700;
  margin-top: -9.0rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--accent) 0%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  cursor: pointer;
  background-size: 200% 200%;
  background-position: 0% 50%;
  transition: background-position 0.5s ease;
}

.hero-title .highlight.animate {
  background-position: 100% 50%;
}






 

 .hero-subtitle {
 font-size: 1.00rem;
 color: var(--text-secondary);
 margin-bottom: 3rem;
 font-weight: 400;
 max-width: 600px;
 margin-left: auto;
 margin-right: auto;
 }

 


 /* Container */
 .container {
 max-width: 1200px;
 margin: 0 auto;
 padding: 0 2rem;
 }

 /* Section */
 .section {
 padding: 8rem 0;
 }

 


 .section-header {
 text-align: center;
 margin-bottom: 4rem;
 }

 .section-title {

 font-weight: 700;
 margin-bottom: 1rem;
 color: var(--text-primary);
 }

 .section-subtitle {
 font-size: 1.1rem;
 color: var(--text-secondary);
 max-width: 600px;
 margin: 0 auto;
 }

 
/* Police globale pour les cartes et boutons */
.service-card,
.service-card h3,
.service-includes li,
.option-buttons,
.option-btn,
.option-text {
  font-family: 'Inter', Arial, sans-serif;
}

/* Cards */
.service-card {
  background: rgba(10, 10, 10, 0.1);
  border: 2px solid var(--accent); /* couleur par défaut */
  border-radius: 18px;
  padding: 3rem 1.5rem;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  max-width: 350px;
  margin: 1.5rem auto;
  transition: border-color 0.3s ease; /* transition fluide */
}



/* Contour Autonome */
.service-card.autonome {
  border-color: var(--accent); /* bleu premium */
}

/* Contour Tranquillité */
.service-card.tranquilite {
  border-color: var(--noir-nuit); /* orange pastel */
}

/* Emoji */
.service-icon {
  font-size: 3rem; /* taille de l'emoji */
  display: block;
  margin: 0 auto 1rem;
  transition: transform 0.3s ease;
}

.service-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.service-price {
  font-size: 2.5rem; /* taille fixe */
  font-weight: 900;
  color: var(--accent); 
  margin-bottom: 2rem;
  display: inline-block;
  transition: color 0.3s ease;
}

/* Prix Autonome */
.service-price.autonome {
  color: var(--accent);
}

/* Prix Tranquillité */
.service-price.tranquilite {
  color: var(--noir-nuit);
}

.service-subtext {
  display: block;
  font-size: 1rem;       /* petit */
  color: rgba(255, 255, 255, 0.6); /* blanc foncé, légèrement transparent */
  margin-top: -0.3rem;      /* rapproche du titre */
  margin-bottom: 0.6rem;    /* espace avant le prix */
  font-weight: 300;
  text-transform: none;
}


.service-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  text-align: left;
  max-width: 320px;
  margin-left: 1.3rem;
  margin-right: auto;
}

.service-includes li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
  font-size: 1rem;
}

.service-includes li {
  color: #ffffff; /* texte par défaut */
  cursor: pointer;
}

.service-includes li::before {
  content: "✔";              /* check mark */
  margin-right: 0.5rem;      /* espace avec le texte */
  font-weight: bold;          /* gras */
  color: #ffffff;            /* couleur du check */
  
  /* Transition pour l’effet de couleur */
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease; /* Safari / iOS */
  
  display: inline-block;      /* assure un rendu correct */
  vertical-align: middle;     /* aligne bien le check avec le texte */
}


/* Quand le li est cliqué */
.service-includes li.checked {
  color: var(--accent); /* texte cliqué */
}

.service-includes li.checked::before {
  color: var(--accent); /* ✔ devient aussi bleu */
}







/* Option buttons */
.option-buttons {
  position: relative;
  display: flex;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--blanc-doux);
  padding: 2px;
  width: fit-content;
  margin: 1.5rem auto;
  margin-top: 0rem;
}




.option-btn {
  position: relative;
  z-index: 2;
  padding: 0.4rem 1.5rem;
  border: none;
  background: transparent;
  color: var(--bg-secondary);
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  border-radius: var(--radius);
  font-size: 0.95rem;
}

.option-btn:hover {
  color: var(--bg-primary);
}

.option-btn.active {
  color: var(--bg-primary);
}

/* Slider lumineux épuré */
.option-slider {
  position: absolute;
  top: 2px;
  left: 0;
  width: 50%;
  height: calc(100% - 4px);
  border-radius: var(--radius);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  background: var(--accent); /* couleur par défaut */
}

/* Quand l’option Tranquillité est active → orange pastel */
.option-slider.tranquilite {
  background: var(--noir-nuit);
}

/* Conteneur du texte */
.option-content {
  margin: 1.5rem auto;
  max-width: 300px;
  line-height: 1.6;
  text-align: center;
  font-family: 'Inter', Arial, sans-serif;
}






.option-text {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: -2.5rem !important;
  margin-top: 2rem !important;
}

.option-text strong {
  font-size: 1.05rem;
  display: block;
  margin-bottom: 0.5rem;
}

.option-text em {
  display: block;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 0.5rem;
  font-style: italic;
  line-height: 1.4;
}

.option-content p {
  border: 1px solid var(--border);
  padding: 1rem;
  border-radius: var(--radius);
  transition: var(--transition);
  background: #111;
  margin-bottom: 1rem;
}


/* Cartes avec une vraie différence visuelle */

/* TRANSFÈRE (Autonome) → bleu clair lumineux */
#transfere-1, 
#transfere-2 { 
  background: rgba(139, 176, 255, 0.2);   /* bleu clair affirmé */
  border: 1px solid var(--accent); /* contour net */
  color: #ffffff; /* texte blanc pour lisibilité */
}

/* GÉRÉ (Tranquillité) → bleu foncé/violet doux */
#gere-1, 
#gere-2 { 
  background: rgba(79, 126, 255, 0.2);  /* bleu-violet plus foncé */
  border: 1px solid rgba(79, 126, 255, 0.95); /* contour fort */
  color: #ffffff; /* texte blanc pour lisibilité */
}


.option-content p.active {
  border-color: var(--accent);
  box-shadow: 0 8px 20px rgba(139,176,255,0.2);
  transform: translateY(-3px);
}

/* Séparateur léger entre site et options */
.service-options {
  border-top: 1px solid rgba(255, 255, 255, 0.1); /* trait très léger */
  padding-top: 1.5rem; /* espace au-dessus du trait */
  margin-top: 1.5rem; /* espace entre le site et le trait */
}













/* Témoignage */
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3rem;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.testimonial-quote {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.testimonial-author {
  color: var(--text-secondary);
  font-weight: 500;
}

.quote-icon {
  position: absolute;
  top: 1rem;
  left: 2rem;
  font-size: 3rem;
  color: var(--accent);
  opacity: 0.3;
}


 /* Contact Form */
 .contact-form {
 max-width: 600px;
 margin: 0 auto;
 display: grid;
 gap: 1.5rem;
 }

 .form-group {
 display: grid;
 gap: 0.5rem;
 }

 .form-group label {
 color: var(--text-secondary);
 font-weight: 500;
 font-size: 0.9rem;
 }

 .form-group input,
 .form-group textarea {
 background: var(--bg-card);
 border: 1px solid var(--border);
 border-radius: var(--radius);
 padding: 1rem;
 color: var(--text-primary);
 font-size: 1rem;
 transition: var(--transition);
 resize: vertical;
 }

 .form-group input:focus,
 .form-group textarea:focus {
 outline: none;
 border-color: var(--accent);
 box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
 }

 .form-group input::placeholder,
 .form-group textarea::placeholder {
 color: var(--text-muted);
 }

 .submit-btn {
 background: var(--accent);
 color: white;
 border: none;
 padding: 1rem 2rem;
 border-radius: var(--radius);
 font-weight: 600;
 font-size: 1rem;
 cursor: pointer;
 transition: var(--transition);
 }

 .submit-btn:hover {
 background: var(--accent-hover);
 transform: translateY(-2px);
 }

 .submit-btn:disabled {
 opacity: 0.6;
 cursor: not-allowed;
 transform: none;
 }

 /* Contact Info */
 .contact-info {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
 gap: 2rem;
 margin-top: 4rem;
 }

 .contact-item {
 display: flex;
 align-items: center;
 gap: 1rem;
 padding: 1.5rem;
 background: var(--bg-card);
 border: 1px solid var(--border);
 border-radius: var(--radius);
 transition: var(--transition);
 }

 .contact-item:hover {
 border-color: var(--accent);
 }

 .contact-icon {
 width: 50px;
 height: 50px;
 background: var(--gradient);
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 font-size: 1.2rem;
 flex-shrink: 0;
 }

 .contact-details h4 {
 color: var(--text-primary);
 font-weight: 600;
 margin-bottom: 0.25rem;
 }

 .contact-details p {
 color: var(--text-secondary);
 font-size: 0.9rem;
 }

 /* Mobile Menu */
 .mobile-menu {
 display: none;
 flex-direction: column;
 gap: 4px;
 cursor: pointer;
 padding: 4px;
 }

 .mobile-menu span {
 width: 25px;
 height: 2px;
 background: var(--text-primary);
 transition: var(--transition);
 }

 /* Responsive */
 @media (max-width: 768px) {
 .nav-menu {
 display: none;
 }
 
 .mobile-menu {
 display: flex;
 }

 .nav-container {
 padding: 1rem;
 }

 .section {
 padding: 4rem 0;
 }

 .container {
 padding: 0 1rem;
 }

 .hero-title {
 font-size: 2.1rem;
 }


 .services-grid {
 grid-template-columns: 1fr;
 }

 .about-content {
 grid-template-columns: 1fr;
 gap: 2rem;
 }

 .about-stats {
 grid-template-columns: 1fr;
 }

 .contact-info {
 grid-template-columns: 1fr;
 }
 }

 /* Animations */
 @keyframes fadeInUp {
 from {
 opacity: 0;
 transform: translateY(30px);
 }
 to {
 opacity: 1;
 transform: translateY(0);
 }
 }

 .animate-on-scroll {
 opacity: 0;
 transform: translateY(30px);
 transition: all 0.6s ease-out;
 }

 .animate-on-scroll.visible {
 opacity: 1;
 transform: translateY(0);
 }

 /* Smooth scrolling */
 html {
 scroll-behavior: smooth;
 }

 /* 🎨 Typo et couleurs */
:root {
 --violet-clair: hwb(194 0% 0%);
 --violet-rose: #81a9ff;
 --noir-nuit: #1786ff;
 --blanc-doux: #F9F9FB;
 --gris-foncé:  rgb(15, 15, 15);
 --rayon: 18px;
 --ombre-douce: 0 8px 24px rgba(198, 180, 242, 0.2);
}



 /* Créer un logo centré tout en haut */
 .mobile-logo {
 display: block;
 text-align: center;
 font-size: 1.5rem;
 font-weight: bold;
 padding: 1rem 0;
 background: white;
 position: fixed;
 top: 0;
 width: 100%;
 z-index: 999;
 }

 /* Pour que le reste du contenu ne soit pas caché par le logo fixé */
 body {
 padding-top: 0px;
 }




.hero-title .blue-pastel {
 color: #A3BFFA;
}



.logo-header {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
  margin-bottom: 12.0rem;
}

.logo-header img {
 height: 90px; /* Taille du logo */
 transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Effet au clic */
.logo-header:active img {
 transform: scale(0.9) rotate(-2deg);
 opacity: 0.8;
}



.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-main {
  height: 100px; /* taille du logo normal */
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease, height 0.3s ease;
}

/* Quand c'est le logo texte */
.logo-main.text-mode {
  height: 400px !important; /* logo texte plus grand */
}



/* Quand on ajoute la classe "clicked" */
.logo-main.clicked {
  animation: logoClick 3s forwards;
}

/* Animation : état actif 0% à 90%, puis retour normal à 100% */
@keyframes logoClick {
  0% {
    transform: scale(0.9) rotate(-2deg);
    opacity: 0.8;
  }
  90% {
    transform: scale(0.9) rotate(-2deg);
    opacity: 0.8;
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}


/* Conteneur complètement indépendant */
.logo-fixed {
  position: fixed; /* reste toujours au même endroit, ne bouge rien autour */
  top: 0px; /* ajuste la position verticale */
  left: 50%; /* centre horizontalement */
  transform: translateX(-50%);
  pointer-events: none; /* l’image ne bloque pas les clics sur le reste */
  z-index: 9999; /* toujours au-dessus */
}

.logo-fixed img {
  display: block;
  margin: 0 auto;
}

.logo-main {
  height: 100px;
}

.logo-text {
  height: 300px !important;
  margin-top: -139px; /* ajuste l’écart entre les 2 */
}



.marquee-wrapper {
  position: relative; /* conteneur parent de la barre et de l'image */
}

.marquee-bar {
  width: 100%;
  overflow: hidden; /* garde le scroll uniquement pour le texte */
  background: #A3BFFA;
  padding: 1.5rem 0;
  margin-top: 9rem;
  position: relative;
  z-index: 1;
}

.floating-image {
  position: absolute;
  bottom: 56%; /* juste au-dessus de la barre */
  left: 42%;
  transform: translateX(-50%);
  width: 150px;
  height: auto;
  pointer-events: none;
  z-index: 0; /* au-dessus de la barre */
}

.floating-image img {
  width: 130%;
  height: auto;
  display: block;
  border-radius: 10px;
}


.marquee-track {
  display: inline-flex;
  gap: 3rem;
  white-space: nowrap;
  animation: scroll-marquee 90s linear infinite; /* durée doublée pour ralentir */
}

.marquee-track span {
  font-family: 'Segoe UI', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1.1rem;
  color: #ffffff;
  opacity: 0.95;
  letter-spacing: 1px;
  transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
  touch-action: manipulation; /* pour que le tap déclenche l'effet sur mobile */
  cursor: pointer; /* montre que c'est cliquable */
}

.marquee-track span:hover,
.marquee-track span:active {
  transform: scale(1.05);
  color: #fff;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

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


.portfolio-carousel {
  position: relative;
  overflow: hidden;
  padding: 1rem 0;
  margin-top: -2.1rem;
}

.portfolio-track {
  display: flex;
  gap: 2rem;
  scroll-behavior: smooth;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  scroll-snap-type: x mandatory;
  padding: 0 2rem;
}

.portfolio-track::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.portfolio-item {
  flex: 0 0 400px; /* largeur fixe = rectangulaire */
  height: 250px;
  border-radius: 12px;
  overflow: hidden;
  scroll-snap-align: center;
  background: #000; /* ou #fff si tu préfères */
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  pointer-events: none;
  user-select: none;
}

/* Flèches grosses, pro avec relief */
.portfolio-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: none;
  color: #ffffff;
  font-size: 3rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
  padding: 0.5rem;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.4); /* relief */
  transition: color 0.2s, transform 0.2s;
}

.portfolio-btn.left {
  left: 1rem;
}

.portfolio-btn.right {
  right: 1rem;
}

.portfolio-btn:hover {
  color: #c6e8ff;
  transform: translateY(-50%) scale(1.2); /* léger effet zoom au survol */
  text-shadow: 3px 3px 8px rgba(0,0,0,0.5); /* relief plus prononcé au survol */
}



#portfolio {
  margin-bottom: -1rem; /* tu réduis ici la marge externe */
}





    .footer {
        background: rgba(0, 0, 0, 0.95);
        position: relative;
        overflow: hidden;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, #60a5fa, transparent);
        animation: shimmer 3s ease-in-out infinite;
    }

    @keyframes shimmer {
        0%, 100% { opacity: 0; }
        50% { opacity: 1; }
    }

    .footer-content {
        max-width: 1400px;
        margin: 0 auto;
        padding: 60px 20px 30px;
        position: relative;
        z-index: 2;
    }

    .footer-main {
        display: grid;
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
        align-items: center;
        margin-bottom: 0px;
    }

    .footer-left h2 {
        font-size: 1.4rem;
        font-family: 'Alte Haas Grotesk', sans-serif;
        background: linear-gradient(135deg, #ffffff 0%, var(--accent) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        line-height: 1.1;
        margin-bottom: 150px;
        letter-spacing: -0.02em;
    }

    .footer-left p {
        font-size: 1.2rem;
        color: #cbd5e1;
        line-height: 1.6;
        margin-bottom: 40px;
        display: none;
    }

    .bit2-image {
        position: absolute;
        bottom: 291px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1;
        pointer-events: none;
        width: 100px;
        height: auto;
    }

    .cta-button {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background-color: #ffffff;
        color: var(--bg-primary);
        padding: 12px 24px;
        border-radius: 26px;
        text-decoration: none;
        font-size: 1rem;
        font-weight: 700;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 12px 25px #9dbcff31;
        border: none;
        transform: rotate(-2deg);
        position: relative;
        overflow: hidden;
        letter-spacing: 0.5px;
        margin-top: 80px;
        z-index: 2;
    }

    .cta-button:hover {
        transform: translateY(-2px) rotate(-2deg);
        box-shadow: 0 18px 35px rgba(171, 193, 255, 0.158);
    }

    .cta-button::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, var(--accent), transparent);
        transition: left 0.5s ease;
    }

    .cta-button:hover::before {
        left: 100%;
    }

    .cta-button svg {
        transition: transform 0.3s ease;
    }

    .cta-button:hover svg {
        transform: translateX(4px);
    }

    .footer-contacts {
        text-align: center;
        font-size: 1rem;
        color: #cbd5e1;
    }

    .footer-contacts a {
        color: #ffffff;
        text-decoration: none;
        margin: 0 10px;
        transition: color 0.3s ease;
        font-weight: 500;
    }

    .footer-contacts a:hover {
        color: #6b93ff;
    }

    .footer-contacts .phone-link {
        display: block;
        margin-top: 5px;
    }

    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 30px;
        margin-bottom: 1px !important;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        text-align: center;
    }

  
#footer-placeholder {
  scroll-margin-top: 52px ; /* ajuste la valeur selon la hauteur de ton header */
}

    .copyright {
        color: #64748b;
        font-size: 0.9rem;
    }

    .legal-link {
        color: #94a3b8;
        text-decoration: none;
        font-size: 0.9rem;
        padding: 8px 16px;
        border-radius: 8px;
        transition: all 0.3s ease;
        border: 1px solid transparent;
    }

    .legal-link:hover {
        color: #f1f5f9;
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.1);
    }

    .floating-elements {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        overflow: hidden;
    }

    .floating-element {
        position: absolute;
        background: radial-gradient(circle, rgba(139, 176, 255, 0.1) 0%, transparent 70%);
        border-radius: 50%;
        animation: float 8s ease-in-out infinite;
    }

    .floating-element:nth-child(1) {
        width: 200px;
        height: 200px;
        top: 20%;
        right: 10%;
        animation-delay: -2s;
    }

    .floating-element:nth-child(2) {
        width: 150px;
        height: 150px;
        bottom: 30%;
        left: 5%;
        animation-delay: -4s;
    }

    @keyframes float {
        0%, 100% { transform: translateY(0px) rotate(0deg); }
        33% { transform: translateY(-20px) rotate(120deg); }
        66% { transform: translateY(10px) rotate(240deg); }
    }





.faq-section {
  max-width: 360px !important; /* largeur encore plus compacte */
  margin: auto;
  margin-top: -4rem;
  padding: 35px 15px; /* marges réduites */
  font-family: 'Inter', Arial, sans-serif;
}

.faq-title {
  text-align: center;
  font-size: 1.9rem; /* compact */
  margin-bottom: 25px;
  color: var(--text-primary);
  font-weight: 800;
  letter-spacing: 0.5px;
}

.faq-item {
  background: var(--gris-foncé); /* fond rouge avant clic */
  border-radius: 12px;
  margin-bottom: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.07);
  overflow: hidden;
  border: none; /* suppression du contour */
  transition: all 0.3s ease;
}


.faq-question {
  width: 100%;
  font-family: 'Inter', Arial, sans-serif;
  padding: 16px 18px; /* réduit */
  background: none;
  border: none;
  outline: none;
  font-size: 1rem; /* réduit */
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: left;
  cursor: pointer;
  color: var(--text-primary);
  transition: color 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 18px;
  line-height: 1.4;
  font-size: 0.9rem !important;
  color: #000;
  transition: max-height 0.4s ease, padding 0.4s ease, background 0.3s ease;
}

.faq-answer p {
  margin: px 0; /* réduit fortement l'espace entre les paragraphes et le titre */
  font-size: 0.85rem !important;
  color: #000 !important;
}



/* État ouvert */
.faq-item.active {
  background: #fff;
}

.faq-item.active .faq-question {
  color: var(--bg-primary); /* bleu */
}

/* État ouvert */
.faq-item.active .faq-answer {
  max-height: 500px; /* ouverture animée */
  padding: 2px 18px 18px 18px !important;
  background: #ffffff;
  color: #000000 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.6);
}

.arrow {
  font-size: 1.2rem;
  transition: transform 0.3s ease, color 0.3s ease;
  color: var(--accent); /* couleur par défaut */
}

.faq-item.active .arrow {
  transform: rotate(45deg);
  color: var(--bg-primary); /* couleur quand ouvert */
}

#FAQ {
  scroll-margin-top: 100px; /* ajuste la valeur selon la hauteur de ton header */
}



/* Responsive mobile */
@media (max-width: 600px) {
  .faq-title {
    font-size: 1.54rem;
  }
  .faq-question {
    font-size: 0.82rem;
    padding: 14px 16px;
  }
  .faq-answer {
    font-size: 0.8rem;
  }
}


.profile-card {
  background: #070707;
  border-radius: 20px;
  padding: 40px 30px;
  width: 280px;
  text-align: center;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.1);
  border: 2px solid hsl(0, 0%, 18%); /* contour bleu */
  margin: 50px auto;  /* centre horizontalement */
  margin-bottom: 1rem;
  margin-top: 2rem;
  cursor: pointer;
  /* supprime la transition sur le hover */
}

/* supprime l'effet survol */
.profile-card:hover {
  transform: none;
}

/* Photo carrée avec coins arrondis */
.profile-img {
  width: 150px;           
  height: 150px;          
  border-radius: 20px;
  object-fit: contain;
  margin-bottom: 18px;
  background: #000;   
  /* supprime le hover */
  transition: none;
}

.profile-img:hover {
  transform: none;
}

/* Texte */
.profile-name {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 8px;
  color: #ffffff;
}

.profile-role {
  font-size: 1.2rem;
  color: #cccccc;
  margin-bottom: 25px;
}

/* Bouton moderne */
.profile-btn {
  background: linear-gradient(135deg, #011927, #1269ff);
  border: none;
  color: white;
  padding: 12px 20px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-bottom: 20px;
}

.profile-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Icônes réseaux */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 22px;
}

.social-icons a {
  font-size: 1.7rem;
  color: #dddddd;
  transition: color 0.2s ease, transform 0.2s ease;
}

.social-icons a:hover {
  transform: scale(1.15);
}

.icon.insta:hover {
  color: #e1306c;
}

.icon.tiktok:hover {
  color: #2181ff;
}

/* Modal sombre */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0,0,0,0.7);
  animation: fadeIn 0.3s ease;
}

/* Contenu modal */
.modal-content {
  background: #111111;
  margin: 30% auto;
  padding: 30px 40px;
  border-radius: 20px;
  width: 80%;
  max-width: 350px; /* réduit la largeur */
  text-align: center;
  animation: zoomIn 0.3s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.5);
  position: relative;
  color: #ffffff; 
}


/* Image modal */
.modal-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

/* Texte modal */
.modal-content h2 {
  font-size: 1.8rem;
  margin-bottom: 5px;
  color: #ffffff;
}

.modal-content .role {
  font-size: 1.2rem;
  color: #8fd6ff;
  margin-bottom: 20px;
}

.modal-content .desc {
  font-size: 0.92rem;
  color: #dddddd;
  line-height: 1.6;
}

/* Croix fermer */
.close {
  position: absolute;
  right: 25px;
  top: 20px;
  font-size: 2rem;
  color: #ffffff;
  cursor: pointer;
  transition: color 0.2s ease;
}

.close:hover {
  color: #e74c3c;
}

/* Animations */
@keyframes zoomIn {
  from { transform: scale(0.7); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}








/* Version Ordi ! */










@media (min-width: 768px) and (max-width: 1920px) {
  /* ton CSS ici */


  /* === TYPOGRAPHIE === */
  html, body {
    font-size: 1.3rem;
    line-height: 1.7;
    scroll-behavior: smooth;
  }

  /* === LAYOUT === */
  .container {
    max-width: 1400px;
    padding: 0 3rem;
  }

  /* === NAVIGATION === */
  .navbar {
    padding: 0 3rem;
  }

  .nav-menu {
    gap: 2.6rem;
    font-size: 1.15rem;
  }

  .nav-menu a {
    position: relative;
    transition: all 0.3s ease;
  }

  .nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
    transform: translateX(-50%);
  }

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

  .logo-header {
    display: none;
  }

  /* === HERO === */
  .hero {
    padding: 0 3rem;
    margin-top: 7rem;
  }

  /* Apparition du titre */
  .hero-title {
    margin-top: 30px;
    font-size: 2.4rem !important;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
    color: var(--text-primary);
    opacity: 0;
    transform: translateY(50px);
    animation: heroTitleAppear 1s ease-out forwards;
    animation-delay: 0.5s;
  }

  @keyframes heroTitleAppear {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .hero-title .highlight {
    color: var(--accent);
    display: inline-block;
    position: relative;
  }

  .hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent);
    animation: highlightExpand 1s ease-out forwards;
    animation-delay: 1.2s;
  }

  @keyframes highlightExpand {
    to { width: 100%; }
  }

  /* Apparition du sous-titre */
  .hero-subtitle {
    font-size: 1rem;
    max-width: 800px;
    margin: 1.5rem auto 3.5rem auto;
    margin-bottom: 4.5rem !important;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: subtitleAppear 0.8s ease-out forwards;
    animation-delay: 1.2s; /* apparaît juste après le titre */
  }

  @keyframes subtitleAppear {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* === SECTIONS === */
  .section {
    padding: 9rem 0;
  }

  .section-title {
    font-size: 2.2rem;
    margin-bottom: -1.5rem !important;
  }

  .section-subtitle {
    font-size: 1.25rem;
    max-width: 800px;
  }

  /* === LOGO === */
  .logo-main {
    height: 140px;
  }






.floating-image {
  position: absolute;
  bottom: 76%; /* juste au-dessus de la barre */
  left: 42%;
  transform: translateX(-50%);
  width: 180px;
  height: auto;
  pointer-events: none;
  z-index: 0; /* au-dessus de la barre */
}

.marquee-bar {
  width: 100%;
  overflow: hidden; /* garde le scroll uniquement pour le texte */
  background: #A3BFFA;
  padding: 1.5rem 0;
  margin-top: 9rem;
  position: relative;
  z-index: 1;
}

/* ==========================================
   Cartes services : taille augmentée de 20%
   ========================================== */

/* Conteneur */
.services-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 3.6rem !important;      /* 20% plus rapproché */
  flex-wrap: nowrap;
  margin: 0 auto !important;
  padding: 0 !important;
  max-width: fit-content;
}

/* Cartes */
.service-card {
  background: var(--gris-foncé);
  border: 1px solid var(--border);
  border-radius: var(--rayon);
  padding: 1.8rem 1.44rem;     /* 20% plus grand */
  text-align: center;
  box-shadow: var(--ombre-douce);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 312px;                /* 20% plus large */
  height: auto;
  margin: 1.2rem !important;   /* 20% plus rapproché */
}


.service-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  text-align: left;
  max-width: 320px;
  margin-left: 1.3rem !important; /* 20% plus grand */
  margin-right: auto;
}


/* Carte du milieu : contour neutre */
.service-card:nth-child(2) {
  border: 1px solid var(--border); /* supprime toute couleur spéciale */
}

/* Carte du milieu : contour neutre */
.service-card:nth-child(1) {
  border: 1px solid var(--border); /* supprime toute couleur spéciale */
}

/* Survol : contour bleu pour toutes les cartes */
.service-card:hover {
  border-color: var(--accent) !important; /* contour bleu au survol */
  transition: border-color 0.3s ease;
}







/* Titres */
.service-card h1,
.service-card h2,
.service-card h3,
.service-card h4,
.service-card h5,
.service-card h6 {
  font-size: 0.78rem !important; /* +20% */
  margin-bottom: 0.3rem !important;
  font-weight: 700;
  text-align: center;
}

/* Prix */
.service-price {
  font-size: 1.08rem; /* +20% */
  margin-bottom: 0.48rem;
}

/* Icônes */
.service-icon img {
  width: 79.6px !important;   /* +20% */
  margin-top: -0.3rem !important;
  margin-bottom: -0.3rem !important;
}

/* Réduction de l'image pour la carte 2 uniquement */
.service-card:nth-child(2) .service-icon img {
  width: 55px !important;   /* plus petit que les autres */
  margin: 0 auto;
  display: block;
}

.service-icon {
  font-size: 1.2rem;          /* +20% */
  margin-bottom: 0.36rem;
}

/* Augmente l’espace sous l’image de la carte 2 uniquement */
.service-card:nth-child(2) .service-icon img {
  margin-bottom: 0.6rem !important; /* ajuste la valeur comme tu veux */
}

.service-subtext {
  display: block;
  font-size: 0.65rem;       /* petit */
  color: rgba(255, 255, 255, 0.6); /* blanc foncé, légèrement transparent */
  margin-top: -0.3rem;      /* rapproche du titre */
  margin-bottom: -0.2rem;    /* espace avant le prix */
  font-weight: 300;
  text-transform: none;
}


/* Contenu */
.service-includes {
  max-width: 592px !important;            /* +20% */
  margin-left: 0.24rem;
}
.service-includes li {
  font-size: 0.624rem;         /* +20% */
  margin-bottom: 0.384rem;
  padding-left: 0.66rem;
}

/* Bloc texte interne */
.bloc-tout,
.bloc-tout h4,
.bloc-tout p,
.bloc-tout em {
  font-size: 0.624rem !important; /* +20% */
  margin-bottom: 0.144rem !important;
  line-height: 1.38;             /* +20% */
  text-align: center;
}

.option-buttons {
  padding: 2.4px;
  margin-top: 0rem;  /* réduit l’espace au-dessus du bouton */
  display: flex;         /* assure que le bouton reste visible */
  justify-content: center;
  gap: 0.5rem;           /* espace entre les boutons si plusieurs */
}

.option-btn {
  font-size: 0.624rem;           /* +20% */
  padding: 0.216rem 0.72rem;
  min-height: 12px;
  border-radius: 7.2px;
}

/* Bloc "ON S’OCCUPE DE TOUT !" */
.option-content {
  margin-top: 0.1rem !important;   /* réduit encore l’espace au-dessus */
  margin-bottom: 0 !important;     /* pas d’espace en dessous */
  max-width: 276px;                 /* largeur du bloc */
  line-height: 1.62;                /* hauteur de ligne */
  text-align: center;
  padding: 0 !important;
}

/* Texte à l’intérieur */
.option-text,
.option-content p {
  font-size: 0.624rem;             /* +20% */
  margin: 0 !important;            /* supprime marges par défaut */
  padding: 0.216rem 0 !important;  /* petit padding vertical seulement */
}

/* Titre fort dans les blocs */
.option-content p.option-text strong,
.option-text#transfere-2 strong,
.option-text#gere-1 strong,
.option-text#gere-2 strong {
  font-size: 0.78rem !important;   
  line-height: 1.56 !important;
  margin: 0 0 0.36rem 0 !important; /* marge haute supprimée, marge basse conservée */
  display: block;
  text-align: center;
}


.option-text em,
.bloc-tout em {
  font-size: 0.62rem !important;  /* +20% */
  line-height: 1.3 !important;    /* lisibilité améliorée */
  text-align: center !important;
  margin-bottom: 0.2rem !important;
}

/* Contour bleu au survol de la carte */
.service-card:hover {
  border-color: var(--accent) !important;  /* contour devient bleu */
  transition: border-color 0.3s ease;
}

/* Supprimer les couleurs de fond et garder le texte clair */
.option-content,
.option-content p,
.option-text,
.bloc-tout,
.bloc-tout p,
.bloc-tout em {
  background: none !important;   /* supprime tout fond */
  color: inherit !important;     /* prend la couleur du texte parent */
}

/* Centre le texte et les parenthèses */
.option-text em,
.bloc-tout em {
  display: block;
  text-align: center !important;
  margin-bottom: 0.2rem !important;
  font-size: 0.62rem !important;  /* +20% par rapport à la base */
  line-height: 1.3 !important;
}




/* Réduire l’espace au-dessus des blocs "ON S’OCCUPE DE TOUT !" */
.option-content {
  margin-top: 0 !important;     /* plus d’espace au-dessus */
  margin-bottom: 0.4rem !important;  /* petit espace en dessous */
  max-width: 276px;              
  line-height: 1.62;             
  text-align: center;
}









/* Ligne de séparation élégante */
.separator {
  width: 100%;                  /* prend toute la largeur du conteneur */
  max-width: 600px;         /* largeur max pour rester élégante */
  margin-top: -2rem !important;    
  margin-bottom: 6rem !important;
  height: 2px;                  /* épaisseur fine */
  margin: 2rem auto;            /* espace vertical avant et après */
  background: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(121, 112, 255, 0.5), rgba(0,0,0,0));
  border: none;
  border-radius: 1px;           /* coins légèrement arrondis */
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); /* léger relief */
}









/* Portfolio centrée - Version moderne */
.portfolio-carousel {
  --spacing: clamp(1rem, 4vw, 2rem);
  --item-size: min(32vw, 600px);
  margin-bottom: -10rem !important;
  padding: var(--spacing) 0;
  margin-block: -5rem 4.5rem;
  width: 90%;          /* largeur limitée */
  max-width: 1200px;   /* largeur max centrée */
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  position: relative;
}

.portfolio-track {
  display: flex;
  gap: clamp(1.5rem, 3vw, 2.6rem);
  padding-inline: 0;
  width: 100%;          /* prend toute la largeur du conteneur */
  scroll-snap-type: x mandatory;
  overflow-x: auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

.portfolio-track::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.portfolio-item {
  flex: 0 0 var(--item-size);
  aspect-ratio: 1;
  block-size: var(--item-size);
  max-inline-size: 600px;
  max-block-size: 600px;
  font-size: clamp(1rem, 2vw, 1.3rem);
  scroll-snap-align: start;
  border-radius: clamp(0.5rem, 1.5vw, 1rem);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.portfolio-item:hover {
  transform: scale(1.02);
}



/* Réduction de mouvement pour l'accessibilité */
@media (prefers-reduced-motion: reduce) {
  .portfolio-item {
    transition: none;
  }
  
  .portfolio-item:hover {
    transform: none;
  }
  
  .portfolio-btn {
    transition: none;
  }
  
  .portfolio-btn:hover {
    transform: none;
  }
}


  /* Témoignages, FAQ, Footer, etc. */
  .testimonial-card {
    max-width: 700px;
    padding: 2.5rem;
    font-size: 1.15rem;
  }

  .testimonial-quote {
    font-size: 1.3rem;
    margin-bottom: 1.7rem;
  }

  .testimonial-author {
    font-size: 1.05rem;
  }

  .faq-section {
    max-width: 700px !important;          /* largeur augmentée */
    padding: 40px 20px;
    font-size: 1.05rem;
    margin-top: -0.30rem;
  }

  .faq-title {
    font-size: 1.5rem;
    margin-bottom: 22px;
  }

  .faq-question {
    font-size: 1.08rem;
    padding: 18px 32px;        /* padding horizontal augmenté */
  }

  .faq-answer {
    font-size: 1rem !important;
    padding: 0 32px;           /* padding horizontal augmenté */
  }

  /* Container FAQ + Carte */
.faq-card-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin: 60px auto;
  max-width: 1200px;
}


/* Carte profil sombre avec interaction */
.profile-card {
  background: #070707;
  border-radius: 20px;
  padding: 40px 30px;
  width: 280px;
  text-align: center;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.1);
  margin-top: 50px;     
  margin-right: 120px !important;   
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.profile-card:hover {
  transform: translateY(-5px) scale(1.02);  /* léger relief */
}


/* Pour écrans larges (PC) */
@media (min-width: 1300px) {
  .profile-card {
    margin-right: 300px;     /* plus besoin de marge droite énorme */
  }
}

/* Photo carrée avec coins arrondis */
.profile-img {
  width: 150px;           
  height: 150px;          
  border-radius: 20px;
  object-fit: contain;
  margin-bottom: 18px;
  background: #000;   
  transition: transform 0.3s ease;
}

.profile-img:hover {
  transform: scale(1.05);
}

/* Texte */
.profile-name {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 8px;
  color: #ffffff;
}

.profile-role {
  font-size: 1.2rem;
  color: #cccccc;
  margin-bottom: 25px;
}

/* Bouton moderne */
.profile-btn {
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  border: none;
  color: white;
  padding: 12px 20px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-bottom: 20px;
}

.profile-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Icônes réseaux */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 22px;
}

.social-icons a {
  font-size: 1.7rem;
  color: #dddddd;
  transition: color 0.2s ease, transform 0.2s ease;
}

.social-icons a:hover {
  transform: scale(1.15);
}

.icon.insta:hover {
  color: #e1306c;
}

.icon.tiktok:hover {
  color: #2181ff;
}

/* Modal sombre */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0,0,0,0.7);
  animation: fadeIn 0.3s ease;
}

/* Contenu modal */
.modal-content {
  background: #111111;
  margin: 10% auto;
  padding: 30px 40px;
  border-radius: 20px;
  width: 90%;
  max-width: 450px;
  text-align: center;
  animation: zoomIn 0.3s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.5);
  position: relative;
  color: #ffffff; /* texte blanc sur fond sombre */
}

/* Image modal */
.modal-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

/* Texte modal */
.modal-content h2 {
  font-size: 1.8rem;
  margin-bottom: 5px;
  color: #ffffff;
}

.modal-content .role {
  font-size: 1.2rem;
  color: #9ec0ff;
  margin-bottom: 20px;
}

.modal-content .desc {
  font-size: 1rem;
  color: #dddddd;
  line-height: 1.6;
}

/* Croix fermer */
.close {
  position: absolute;
  right: 25px;
  top: 20px;
  font-size: 2rem;
  color: #ffffff;
  cursor: pointer;
  transition: color 0.2s ease;
}

.close:hover {
  color: #e74c3c;
}

/* Animations */
@keyframes zoomIn {
  from { transform: scale(0.7); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}



  

  .footer-content {
    max-width: 1400px;
    padding: 80px 40px 30px;
  }

  .footer-main {
    gap: 50px;
  }

  .footer-left h2 {
    font-size: 1.4rem;
    margin-bottom: 45px !important;
  }

  .footer-left p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    display: block;
  }

  .bit2-image {
    width: 120px;
    bottom: 390px;
  }

  .cta-button {
    font-size: 1.15rem;
    padding: 16px 32px;
    margin-top: 210px;
  }

  .footer-contacts {
    font-size: 1.1rem;
  }

  .footer-bottom {
    padding-top: 30px;
    gap: 20px;
  }

  .copyright,
  .legal-link {
    font-size: 1rem;
  }
}

/* Supprime la carte dupliquée sur tous les écrans plus petits que tablette */
@media (max-width: 1023px) {
  .duplicate-desktop {
    display: none !important;
  }
}





/* i pad vertical */







@media (min-width: 600px) and (max-width: 900px) {

  html, body {
    font-size: 1.1rem; /* un peu plus petit */
    line-height: 1.5;
  }

  .container {
    padding: 0 2rem;
    max-width: 95%;
  }

  /* Navigation */
  .navbar {
    padding: 0 0rem;
  }

.nav-menu {
    gap: 1.5rem !important;
    font-size: 0.8rem !important;
}

    .nav-menu a {
        font-size: 0.77rem !important;
    }




  .hero {
    padding: 0 2rem;
    margin-top: 5rem;
  }

  .hero-title {
    font-size: 2.5rem !important;
    margin-top: 5rem;
    margin-bottom: 3rem !important;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    max-width: 70%;
    margin: 1rem auto 3rem auto;
    margin-bottom: 3rem !important;
  }

  /* Sections */
  .section {
    padding: 6rem 0;
  }

  .section-title {
    font-size: 1.8rem;
    margin-bottom: -1rem !important;
  }

  .section-subtitle {
    font-size: 1.1rem;
    max-width: 95%;
  }
  

.floating-image {
  position: absolute;
  bottom: 76%; /* juste au-dessus de la barre */
  left: 42%;
  transform: translateX(-50%);
  width: 130px;
  height: auto;
  pointer-events: none;
  z-index: 0; /* au-dessus de la barre */
}





/* footer */
  .bit2-image {
    width: 120px;
    bottom: 340px;
  }





  /* Portfolio */
  .portfolio-carousel {
    width: 95%;
    max-width: 95%;
  }

  .portfolio-item {
    --item-size: min(40vw, 280px);
    font-size: clamp(0.85rem, 1.8vw, 1rem);
  }

  /* Témoignages / FAQ */
  .testimonial-card {
    max-width: 90%;
    padding: 2rem;
    font-size: 1rem;
  }

  .testimonial-quote {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
  }

  .testimonial-author {
    font-size: 0.95rem;
  }

  .faq-section {
    max-width: 90% !important;
    padding: 30px 15px;
    font-size: 1rem;
  }

  .faq-title {
    font-size: 1.3rem;
    margin-bottom: 18px;
  }

  .faq-question {
    font-size: 1rem;
    padding: 14px 20px;
  }

  .faq-answer {
    font-size: 0.95rem !important;
    padding: 0 20px;
  }

  /* Portfolio et cartes profil */
  .profile-card {
    width: 220px;
    padding: 30px 20px;
    margin-top: 30px;
    margin-right: 20px !important;
  }

  .profile-img {
    width: 120px;
    height: 120px;
    margin-bottom: 12px;
  }

  .profile-name {
    font-size: 1.4rem;
  }

  .profile-role {
    font-size: 1rem;
  }

  .profile-btn {
    font-size: 0.9rem;
    padding: 10px 18px;
  }

  .social-icons a {
    font-size: 1.4rem;
    gap: 18px;
  }

}



/* Styles spécifiques iPad horizontal */





/* iPad horizontal */
@media (min-width: 968px) and (max-width: 1024px) {

  /* Typographie générale */
  html, body {
    font-size: 1.15rem;
    line-height: 1.6;
  }

  /* Container */
  .container {
    padding: 0 2rem;
    max-width: 95%;
  }

  /* Navigation */
  .navbar {
    padding: 0 1rem;
  }

  .nav-menu {
    gap: 1rem !important;          /* réduit l’espace entre boutons pour iPad */
    font-size: 0.75rem !important; /* texte un peu plus petit */
  }

  .nav-menu a {
    font-size: 0.93rem !important;      /* taille du texte dans les liens */
    padding: 0.35rem 0.6rem !important; /* réduit légèrement le padding */
  }

  /* Hero */
  .hero {
    padding: 0 2rem;
    margin-top: 5rem;
  }

  .hero-title {
    font-size: 2.6rem !important;
    margin-top: 3rem;
    margin-bottom: 3rem !important;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    max-width: 70%;
    margin: 1rem auto 3rem auto;
    margin-bottom: 3rem !important;
  }

  /* Sections */
  .section {
    padding: 6rem 0;
  }

  .floating-image {
  position: absolute;
  bottom: 76%; /* juste au-dessus de la barre */
  left: 42%;
  transform: translateX(-50%);
  width: 130px;
  height: auto;
  pointer-events: none;
  z-index: 0; /* au-dessus de la barre */
}

/* Contenu */
.service-includes {
  max-width: 592px !important;            /* +20% */
  margin-left: 0.24rem;
}
.service-includes li {
  font-size: 0.624rem;         /* +20% */
  margin-bottom: 0.384rem;
  padding-left: 1.7rem;
}


/* footer */
  .bit2-image {
    width: 120px;
    bottom: 350px;
  }



  /* Portfolio et cartes profil */
  .profile-card {
    width: 220px;
    padding: 30px 20px;
    margin-top: 80px;
    margin-right: 20px !important;
  }

  .profile-img {
    width: 120px;
    height: 120px;
    margin-bottom: 12px;
  }

  .profile-name {
    font-size: 1.4rem;
  }

  .profile-role {
    font-size: 1rem;
  }

  .profile-btn {
    font-size: 0.9rem;
    padding: 10px 18px;
  }

  .social-icons a {
    font-size: 1.4rem;
    gap: 18px;
  }


}





/* === RESPONSIVE iPhone SE et moins === */
@media (max-width: 375px) {

  /* Texte global */
  html, body {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  /* Navigation */
  .nav-menu {
    gap: 1.2rem;
    font-size: 0.85rem;
  }

  /* Hero */
  .hero {
    padding: 0 1rem;
    margin-top: 5rem;
  }

  .hero-title {
    font-size: 1.6rem !important;
  }

  .hero-subtitle {
    font-size: 0.85rem;
    margin-bottom: 2rem !important;
  }

  /* Logo flottant réduit */
  .floating-image {
    position: absolute;
    bottom: 76%;
    left: 42%;
    transform: translateX(-50%);
    width: 100px;  /* réduit encore plus pour iPhone SE */
    height: auto;
    pointer-events: none;
    z-index: 0;
  }

  .bit2-image {
    width: 80px;    /* réduit */
    bottom: 305px;  /* ajusté */
  }


  .portfolio-carousel {
    --spacing: 0.8rem;              /* moins d’espace */
    --item-size: 75vw;              /* items plus petits (75% de l’écran) */
    margin-bottom: -4rem !important;
    margin-top: -61px !important;
    margin-block: 0 3rem;           /* moins de marges */
    width: 100%;                    /* prend toute la largeur */
    max-width: 100%;                /* pas de limite */
    padding: var(--spacing) 0;
  }

  .portfolio-track {
    gap: 1rem;                      /* réduit l’espacement */
    padding-inline: 0.5rem;
  }

  .portfolio-item {
    flex: 0 0 var(--item-size);
    block-size: var(--item-size);
    font-size: 0.85rem;              /* texte plus petit */
    border-radius: 0.5rem;           /* coins adoucis mais compacts */
  }

}

