/* CSS COMUN ALL PAGE  */
/* ========== RESET / BASE ========== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  color: #ffffff;
  overflow-x: hidden;
  background-color: #222222;
  padding-top: 60px;
  flex-direction: column;
  display: flex;
  min-height: 100vh;

}
main {
  flex: 1;
}

.nav-header-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 10px 10px;
}
/* ========== ID  ========== */
/* ===== Bouton Accueil Custom ===== */
#Accueil-btn {
  margin-right: 70%;
  display: inline-block;
  padding: 10px 20px;
  background-color: #3ABEF9;
  color: #1c1c1c;
  font-weight: bold;
  text-decoration: none;
  border-radius: 10px;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(58, 190, 249, 0.3);
}

#Accueil-btn:hover {
  background-color: #FFD277;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 210, 119, 0.4);
}

/* ========== HEADER ========== */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  position: fixed;
  top: 0;
  width: 100%;
  background: linear-gradient(to right, #1f1f1f, #2a2a2a);
  z-index: 1100;
  border-bottom: 2px solid #3ABEF9;
}

.logo a {
  color: #FFD277;
  text-decoration: none;
  font-size: 1.4em;
}

/* ========== MENU BURGER ========== */
.burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1101;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.burger span {
  width: 30px;
  height: 3px;
  background: #FFD277;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

#menu-toggle:checked + .burger span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
#menu-toggle:checked + .burger span:nth-child(2) {
  opacity: 0;
}
#menu-toggle:checked + .burger span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ========== NAV MOBILE ========== */
.nav-mobile {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  height: 100vh;
  background: #282828;
  transition: left 0.3s ease;
  padding-top: 70px;
  overflow-y: auto;
  z-index: 1050;
}

#menu-toggle:checked ~ .nav-mobile {
  left: 0;
}

.nav-mobile::before {
  content: "Scopum Web";
  display: block;
  text-align: center;
  font-size: 2em;
  font-weight: bold;
  color: #FFD277;
  padding: 20px 10px 10px;
}

@media (min-width: 768px) {
  .nav-mobile::before {
    display: none;
  }
}

.nav-mobile ul {
  list-style: none;
}

.nav-mobile li {
  margin-bottom: 5px;
}

.nav-mobile li a,
.submenu-toggle {
  display: block;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.2em;
  padding: 10px;
  border-radius: 10px;
  background-color: #333333;
  text-align: center;
  margin: 0 20px;
}

.nav-mobile li a:hover,
.submenu-toggle:hover {
  background-color: #3ABEF9;
  color: #ffffff;
}

.submenu {
  display: none !important;
  padding-left: 0;
}

#extra-toggle:checked + .submenu-toggle + .submenu {
  display: block !important;
}

.submenu li {
  opacity: 0;
  transform: translateX(-10px);
  animation: submenuFade 0.3s ease forwards;
}

.submenu li:nth-child(1) { animation-delay: 0.05s; }
.submenu li:nth-child(2) { animation-delay: 0.1s; }
.submenu li:nth-child(3) { animation-delay: 0.15s; }
.submenu li:nth-child(4) { animation-delay: 0.2s; }
.submenu li:nth-child(5) { animation-delay: 0.25s; }

@keyframes submenuFade {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.submenu li a {
  background-color: #383838;
  font-size: 1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  color: #FFD277;
}

.submenu li a:hover {
  background-color: #3ABEF9;
  color: #ffffff;
}

.overlay {
  display: none;
}

#menu-toggle:checked ~ .overlay {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1040;
}

@media (min-width: 768px) {
  .burger,
  .overlay {
    display: none;
  }

  .nav-mobile {
    position: static;
    height: auto;
    width: auto;
    background: transparent;
    padding-top: 0;
    overflow: visible;
    display: block !important;
  }

  .nav-mobile ul {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    margin-right: 20px;
  }

  .nav-mobile li a,
  .submenu-toggle {
    background: transparent;
    color: #FFD277;
    padding: 0;
    margin: 0;
  }

  .nav-mobile li a:hover,
  .submenu-toggle:hover {
    color: #3ABEF9;
    background-color: transparent;
  }

  .dropdown {
    position: relative;
  }

  .submenu {
    position: absolute;
    top: 100%;
    right: 50%;
    transform: translateX(50%) translateY(10px);
    background: rgba(40, 40, 40, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5);
    min-width: 220px;
    padding: 12px 0;
    display: none !important;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .dropdown:hover .submenu {
    display: block !important;
    opacity: 0.95;
    visibility: visible;
    transform: translateX(50%) translateY(0);
  }

  .submenu li a {
    padding: 12px 20px;
    margin: 0;
    transition: background-color 0.3s ease, color 0.3s ease;
    color: #FFD277;
  }

  .submenu li a:hover {
    background-color: #3ABEF9;
    color: #ffffff;
  }

  .nav-mobile li a:hover,
  .submenu-toggle:hover {
    background-color: transparent;
  }
}

@media (max-width: 767px) {
  .submenu {
    margin-top: 10px;
  }

  .submenu li a {
    padding: 12px 5px;
    margin: 5px 30px;
  }

  .submenu-toggle {
    margin-bottom: 5px;
  }
}

/* ========== FOOTER ========== */
.footer {
  background-color: #111111;
  color: #cccccc;
  padding: 60px 20px 30px;
  font-size: 0.95em;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
}

.footer h3, .footer h4 {
  color: #FFD277;
  margin-bottom: 15px;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer ul li a:hover {
  color: #3ABEF9;
}

.footer-bottom {
  border-top: 1px solid #2a2a2a;
  padding-top: 20px;
  text-align: center;
  font-size: 0.85em;
  color: #777777;
}

.footer-bottom a {
  color: #FFD277;
  text-decoration: none;
  margin: 0 5px;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.footer-bottom a:hover {
  color: #3ABEF9;
  text-shadow: 0 0 5px #3ABEF9aa;
}

/* ========== FOOTER SOCIALS ========== */
.footer .socials {
  margin-top: 10px;
  display: flex;
  gap: 15px;
}

.footer .socials a {
  font-size: 1.4em;
  color: #ccc;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer .socials a:hover {
  color: #3ABEF9;
  transform: scale(1.2);
}
/* 
====================
==================== 
====================
====================
PAGE PAR PAGE
====================
====================
PAGE ACCUEIL 
====================
====================*/
/* ========== HERO SECTION ========== */
.hero {
  min-height: 100vh;
  padding: 100px 20px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  background: radial-gradient(circle at center, #181818 0%, #1a1a1a 100%);
  overflow: hidden;
  z-index: 1;
}

/* ========== HALO ANIMÉ AU CENTRE ========== */
.hero::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 850px;
  height: 850px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(58, 190, 249, 0.4) 0%, transparent 65%);
  animation: heroHalo 6s ease-in-out infinite alternate;
  filter: blur(65px);
  opacity: 0.4;
  z-index: 0;
}

@keyframes heroHalo {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 0.45;
  }
}

/* ========== RAYURES LUMINEUSES ANIMÉES ========== */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    120deg,
    rgba(58, 190, 249, 0.04),
    rgba(58, 190, 249, 0.04) 2px,
    transparent 2px,
    transparent 40px
  );
  background-size: 300% 300%;
  animation: heroStripes 30s linear infinite;
  mix-blend-mode: lighten;
  opacity: 0.1;
  z-index: 0;
}

@keyframes heroStripes {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 250% 100%;
  }
}

/* ========== CONTENU CENTRAL ========== */
.hero-content {
  position: relative;
  z-index: 2;
}

/* ========== TEXTE PRINCIPAL ========== */
.hero-text {
  font-size: 2.8em;
  font-weight: 700;
  color: #FFD277;
  margin-bottom: 25px;
}

/* ========== MOT VARIABLE EN BLEU ========== */
.hero-highlight {
  color: #3ABEF9;
  display: inline-block;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* ========== BOUTON CTA ========== */
.btn-cta {
  background: transparent;
  color: #3ABEF9;
  padding: 12px 28px;
  border: 2px solid #3ABEF9;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1.05em;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: 25px;
}

.btn-cta:hover {
  background: #3ABEF9;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(58, 190, 249, 0.25);
}


/* ========== SERVICES ========== */
.services {
  padding: 80px 20px;
  background-color: #1f1f1f;
  text-align: center;
}

.services h2 {
  font-size: 2em;
  margin-bottom: 40px;
  color: #FFD277;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service {
  background-color: #2a2a2a;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.service:hover {
  transform: translateY(-5px);
}

.service h3 {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: #3ABEF9;
}

.service p {
  font-size: 1em;
  color: #ddd;
}
/* ========== PORTFOLIO ========== */
.portfolio {
  padding: 80px 20px;
  background-color: #222;
  text-align: center;
}

.portfolio h2 {
  font-size: 2em;
  color: #FFD277;
  margin-bottom: 40px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.portfolio-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #2a2a2a;
  padding: 20px;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.portfolio-item img {
  max-width: 100px;
  height: auto;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 4px #00000060);
}

.portfolio-item span {
  color: #ffffff;
  font-weight: bold;
  font-size: 1em;
}
/* ========== POURQUOI SCOPUM WEB (RESTART CLEAN) ========== */
.why-scopum {
  padding: 80px 20px;
  background-color: #1c1c1c;
  text-align: center;
}

.why-scopum h2 {
  font-size: 2em;
  color: #FFD277;
  margin-bottom: 40px;
}

.orbite-zone {
  position: relative;
  width: 100%;
  max-width: 550px;
  height: 450px;
  margin: 0 auto;
  overflow: hidden;
  background-color: #1c1c1c;
}

/* Logo central */
.core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 120px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  overflow: hidden;
  z-index: 10;
}

.core img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Bulles */
.orbite {
  position: absolute;
  width: 110px;
  height: 110px;
  background: #2a2a2a;
  color: #FFD277;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  text-align: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
  z-index: 11;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.orbite.visible {
  opacity: 1;
  transform: scale(1);
}

.orbite:hover {
  background-color: #3ABEF9;
  color: white;
}

/* Positions */
.orb1 { top: 8%; left: 62%; }
.orb2 { top: 28%; left: 8%; }
.orb3 { top: 70%; left: 4%; }
.orb4 { top: 78%; left: 60%; }
.orb5 { top: 1%; left: 25%; }
.orb6 { top: 50%; left: 67%; }

/* SVG lines */
.orbite-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.orbite-lines line {
  stroke: #3ABEF9;
  stroke-width: 2;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  transition: stroke-dashoffset 1s ease;
}

.orbite-lines.visible line {
  stroke-dashoffset: 0;
}

/* Responsive */
@media (max-width: 700px) {
  .orbite-zone {
    width: 100%;
    height: 600px;
  }

  .orbite-lines {
    width: 100%;
  }
}

/* ========== QUI SOMME NOUS (PAGE) ========== */

.presentation {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}

.presentation h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #FFD277;
}

.presentation h2 {
  font-size: 2em;
  margin-top: 40px;
  color: #3ABEF9;
}

.presentation p {
  font-size: 1.1em;
  line-height: 1.6;
  margin-top: 15px;
  color: #ffffff;
}
.intro-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin: 60px 0;
  flex-wrap: wrap;
}

.intro-photo img {
  width: 300px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
}

.intro-photo img:hover {
  transform: scale(1.05);
}

.intro-texte {
  max-width: 500px;
  text-align: left;
}

.intro-texte h2 {
  color: #3ABEF9;
  font-size: 2em;
  margin-bottom: 20px;
}

.intro-texte p {
  color: #ffffff;
  font-size: 1.1em;
  line-height: 1.6;
}

/* Variante pour inverser l'image et le texte */
.intro-block.reverse {
  flex-direction: row-reverse;
}

/* Mobile version */
@media (max-width: 768px) {
  .intro-block {
    flex-direction: column;
  }
  .intro-block.reverse {
    flex-direction: column;
  }
  .intro-texte {
    text-align: center;
  }
}

.section-bloc {
  max-width: 900px;
  margin: 80px auto;
  padding: 0 20px;
  text-align: center;
}

.section-bloc h2 {
  color: #FFD277;
  font-size: 2em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.section-bloc p, .section-bloc li {
  color: #ffffff;
  font-size: 1.1em;
  line-height: 1.6;
}

.valeurs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.valeurs-grid div {
  background: #2a2a2a;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  font-size: 1.1em;
  color: #3ABEF9;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 0.3s ease;
}

.valeurs-grid div:hover {
  transform: scale(1.05);
}

.outils ul {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.outils li {
  margin: 10px 0;
  text-align: left;
}
/* ========== OFFRES & TARIFS (PAGE) ========== */
/* ========== OFFRES & TARIFS ========== */
.offres-section {
  padding: 60px 20px;
  max-width: 1400px;
  margin: auto;
  text-align: center;
}

.titre-section {
  font-size: 2.5rem;
  color: #FFD277;
  margin-bottom: 40px;
}

.carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.carousel-btn {
  font-size: 2.5rem;
  color: #3ABEF9;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s;
}
.carousel-btn:hover {
  color: #FFD277;
}
.card .title {
  font-size: 1.6rem;
  font-weight: bold;
  color: #3ABEF9;
  display: block;
  margin-bottom: 5px;
}

.card .badge {
  font-size: 1rem;
  color: #aaa;
  display: block;
  margin-bottom: 15px;
}

.card .price {
  font-size: 2rem;
  color: #FFD277;
  font-weight: bold;
  margin-bottom: 20px;
}

.cards-track {
  position: relative;
  width: 320px;
  height: 460px;
  perspective: 1600px;
  overflow: visible;
}

.card {
  position: absolute;
  top: 0;
  left: 0;
  width: 320px;
  height: 460px;
  background: #1c1c1c;
  border: 2px solid #3ABEF9;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.4);
  transition: transform 0.6s ease, opacity 0.6s ease;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: scale(0.8);
  z-index: 0;
}

.card.active {
  transform: translateX(0) scale(1);
  opacity: 1;
  z-index: 3;
}
.card.left {
  transform: translateX(-130%) scale(0.8) rotateY(25deg);
  opacity: 0.4;
  z-index: 1;
}
.card.right {
  transform: translateX(130%) scale(0.8) rotateY(-25deg);
  opacity: 0.4;
  z-index: 1;
}
.card.hidden{
  opacity:0;
  visibility:hidden;          
  pointer-events:none;
  transform:translateX(0) scale(.8) rotateY(0); /* position neutre */
  transition:opacity .4s ease, transform .6s ease;
}

.grid-5.double-ligne {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  margin-top: 40px;
}

.grid-5.double-ligne .ligne-haut,
.grid-5.double-ligne .ligne-bas {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.grid-5.double-ligne .bloc {
  background: #2a2a2a;
  color: #fff;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  min-width: 240px;
  text-align: center;
  font-size: 1em;
  font-weight: 500;
  transition: background-color 0.3s, transform 0.3s;
}

.grid-5.double-ligne .bloc:hover {
  transform: translateY(-4px);
  background-color: #3a3a3a;
}


/* --------- contenu interne --------- */
.header { margin-bottom: 15px; }
.title  { font-size: 1.5rem; font-weight: bold; color: #3ABEF9; }
.price  { font-size: 2rem; font-weight: bold; color: #FFD277; }
.desc   { color: #aaa; margin: 10px 0 20px; }
.list   { list-style: none; padding: 0; margin: 0 0 20px; }
.list li { margin: 6px 0; }

.cta {
  margin-top: auto;
  background: #3ABEF9;
  color: #1c1c1c;
  font-weight: bold;
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s;
}
.cta:hover {
  background: #FFD277;
}

/* ========== RESPONSIVE MOBILE ========== */
@media screen and (max-width: 640px) {
  .cards-track {
    width: 90vw;
    height: auto;
  }
  .card {
    position: relative;
    transform: none !important;
    opacity: 1 !important;
    width: 100%;
    min-height: 540px;
    height: auto;
    rotate: none;
    display: none;
  }
  .card.active {
    display: block;
  }
  .carousel {
    gap: 10px;
  }
  .carousel-btn {
    font-size: 2rem;
  }
}


/* === Section Avantages === */
.avantages {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.avantages h2 {
  font-size: 2em;
  color: #FFD277;
  margin-bottom: 20px;
}

.avantages ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.avantages li {
  background: #2a2a2a;
  padding: 15px 20px;
  border-radius: 10px;
  color: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* === Section Comparatif === */
.comparatif {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.comparatif h2 {
  font-size: 2em;
  color: #FFD277;
  margin-bottom: 20px;
}

.comparatif table {
  width: 100%;
  border-collapse: collapse;
  background: #1f1f1f;
  color: #fff;
  border-radius: 12px;
  overflow: hidden;
}

.comparatif th,
.comparatif td {
  padding: 15px;
  border-bottom: 1px solid #333;
}

.comparatif th {
  background: #3ABEF9;
  color: #000;
  font-weight: bold;
}

.comparatif tr:last-child td {
  border-bottom: none;
}

/* === Section Inclus === */
.inclus {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.inclus h2 {
  font-size: 2em;
  color: #FFD277;
  margin-bottom: 20px;
}

.inclus ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.inclus li {
  background: #2a2a2a;
  padding: 10px 20px;
  border-radius: 8px;
  color: #fff;
  box-shadow: 0 1px 6px rgba(0,0,0,0.2);
}

/* === Section Appel à l'action === */
.cta-final {
  background-color: #3ABEF9;
  color: #000;
  padding: 40px 20px;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 60px;
  border-radius: 12px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-final h2 {
  font-size: 2em;
  margin-bottom: 10px;
}

.cta-final p {
  font-size: 1.1em;
  margin-bottom: 20px;
}

.cta-final .btn-envoyer {
  background-color: #FFD277;
  color: #000;
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.cta-final .btn-envoyer:hover {
  background-color: #e6b74f;
}
/* ========== CONTACT ========== */
.input-style {
  width: 100%;
  padding: 12px 15px;
  border-radius: 10px;
  border: 2px solid transparent;
  background-color: #2a2a2a;
  color: #fff;
  font-size: 1em;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.input-style:focus {
  border-color: #3ABEF9;
  box-shadow: 0 0 0 2px #3ABEF950;
  outline: none;
}

.btn-envoyer {
  background-color: #3ABEF9;
  color: #000;
  font-weight: bold;
  border: none;
  padding: 12px 25px;
  border-radius: 10px;
  font-size: 1.1em;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-envoyer:hover {
  background-color: #FFD277;
  transform: translateY(-2px);
}
.configurateur-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

@media (min-width: 700px) {
  .configurateur-container {
    grid-template-columns: 1fr 1fr;
  }
}

.option {
  background: #2a2a2a;
  color: #fff;
  padding: 15px 20px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
