:root {
  --gold-main: #d4af37;
  --gold-light: #f1d87a;
  --gold-dark: #9f7c1f;

  --bg-main: #0f0f0f;
  --bg-dark: #000000;
  --bg-card: #0f172a;

  --text-main: #ffffff;
  --text-muted: #e5e7eb;

  --text-dark: #111827;
  --text-gray: #4b5563;
  --text-gray-light: #7c7c7c;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  padding-top: 80px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(212, 175, 55, 0.12),
      transparent 35%
    ),
    radial-gradient(circle at 85% 70%, rgba(212, 175, 55, 0.1), transparent 40%);
  z-index: -1;
  pointer-events: none;
}

/* suppression background bleu au clic de lien */
a, button {
  -webkit-tap-highlight-color: transparent;
  outline: none;
}
/* =========================
   NAVBAR
========================= */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 85px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 80px;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  transition: all 0.4s ease;
  z-index: 1000;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 25px;
}
.navbar a {
  position: relative;
  text-decoration: none;
  color: var(--text-main);
  padding-bottom: 6px;
  transition: color 0.3s ease;
}

.navbar a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold-dark));
  transition: all 0.35s ease;
  transform: translateX(-50%);
}

.cta-nav::after {
  display: none;
}
.navbar a:hover {
  color: var(--gold-light);
}

.navbar a:hover::after {
  width: 100%;
}

.cta-nav {
  padding: 8px 15px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  border-radius: 20px;
  color: #1a1a1a;
  font-weight: 600;
}
/* Bouton burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.burger span {
  width: 35px;
  height: 4px;
  background: var(--text-main);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.burger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.open span:nth-child(2) {
  opacity: 0;
}

.burger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 1200px) {
  .burger {
    display: flex;
  }

  .navbar ul {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 300px;
    height: auto;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-left: 3px solid rgba(212, 175, 55, 0.5);
    border-bottom: 3px solid rgba(212, 175, 55, 0.5);
    border-radius: 0 0 0 20px;
    flex-direction: column;
    gap: 20px;
    padding: 30px;
    transition: right 0.5s ease;
  }

  .navbar ul.active {
    right: 0;
  }

  .navbar li {
    text-align: left;
  }

  .cta-nav {
    display: block;
  }
}

/* =========================
   HERO
========================= */
.hero {
  position: relative;
  height: 100vh;
  background: url("images/imagebanniere12.webp") center 50% / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 80px;
  overflow: hidden;
}
.hero-content {
  animation: fadeUp 1s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-badge {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;

  /* pas de “forme de bouton” */
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;

  color: rgba(229, 231, 235, 0.9);
  font-size: 0.95rem;
  letter-spacing: 0.2px;
}

.hero-badge::before {
  content: "✓";
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 999px;

  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--gold-light);
  font-weight: 800;
  flex: 0 0 22px;
}

@media (max-width: 600px) {
  .hero-badge {
    justify-content: center;
    margin-top: 16px;
  }
  .hero p {
    font-size: 0.9rem;
  }
}

@media (min-width: 1000px) {
  .hero {
    background-attachment: fixed;
  }
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at right, rgba(212, 175, 55, 0.15), transparent 50%),
    linear-gradient(to right, rgba(5, 10, 25, 0.55), rgba(5, 10, 25, 0.6));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  padding: 40px;
  border-radius: 20px;
  background: rgba(10, 15, 31, 0.5);
  backdrop-filter: blur(6px);
  text-align: center;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 2.5rem);
  margin-bottom: 40px;
  line-height: 1.2;
  text-shadow: 0 0 25px rgba(212, 175, 55, 0.25);
}

.hero-title {
  font-size: clamp(2.4rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 18px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  font-style: italic;
}

.hero-buttons a {
  margin-right: 15px;
}

.hero p {
  margin-top: 20px;
  margin-bottom: 40px;
}
.highlight {
  display: inline-block;
  font-weight: 700;
  color: #f7cb3b;

  /* Masqué depuis le centre */
  clip-path: inset(0 50% 0 50%);

  animation: revealCenter 1.6s ease-out forwards;
}

/* Centre -> extérieur */
@keyframes revealCenter {
  from {
    clip-path: inset(0 50% 0 50%);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}

#pseudovideo {
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;

  height: 150px;
  overflow: hidden;
}
video {
  width: 60%;
  max-width: 400px;
  height: 100%;
  object-fit: cover;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo img {
  max-height: 50px;
  width: auto;
  display: block;
  transition:
    transform 0.25s ease,
    filter 0.25s ease;
}

.logo:hover img {
  transform: scale(1.06);
}

@media (max-width: 768px) {
  .logo img {
    max-height: 40px;
  }
}
/* =========================
   AVANTAGES
========================= */

/* Conteneur principal */

.avantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
  max-width: 1200px;
  margin: auto;
  align-items: start;
  padding: 0 20px;
}

/* Texte descriptif de gauche */
.avantages-text {
  max-width: 600px;
  color: #374151;
  font-size: 1.1rem;
  line-height: 1.7;
  transition: all 1s ease-out;
}

/* Animation entrée */
.avantages-text,
.avantage-item {
  opacity: 0;
  transform: translateX(-50px);
  transition:
    opacity 1s ease-out,
    transform 1s ease-out;
}

.avantages-text.visible,
.avantage-item.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Liste des avantages */
.avantages-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* Carte d’avantage individuel */
.avantage-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  border-radius: 15px;
  background: rgba(212, 175, 55, 0.05);
  backdrop-filter: blur(4px);
  transition: all 0.4s ease;
}

.avantage-item:hover {
  transform: translateY(-5px);
  background: rgba(212, 175, 55, 0.12);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
}

/* Icône */
.avantage-item .icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.2),
    rgba(212, 175, 55, 0.1)
  );
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.avantage-item:hover .icon {
  transform: scale(1.15);
}

/* Titre et texte */
.avantage-item h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
  color: black;
}

.avantage-item p {
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .presentation-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .presentation-image::after {
    display: none;
  }

  .presentation-content h3 {
    text-align: center;
  }
  .features-premium {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  #inclus {
    padding: 0px 10px;
  }

  .feature-premium {
    padding: 10px;
  }

  .feature-premium h3 {
    font-size: 1rem;
    line-height: 1.1rem;
  }

  .feature-premium p {
    font-size: 0.9rem;
  }
  .realisations-grid {
    grid-template-columns: 1fr;
  }


  .contact-right::before {
    display: none;
  }
  .avantages-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .avantage-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .avantage-item .icon {
    margin-bottom: 10px;
  }
}

/* =========================
   PRESENTATION
========================= */

.presentation-split {
  padding: 100px 20px;
  background-image: url("images/texture14.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.presentation-split::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 120px;

  background: linear-gradient(
    to bottom,
    #000000 0%,
    #000000 25%,
    rgba(0, 0, 0, 0.9) 45%,
    rgba(0, 0, 0, 0.6) 65%,
    rgba(0, 0, 0, 0.3) 80%,
    rgba(0, 0, 0, 0) 100%
  );

  z-index: 1;
  pointer-events: none;
}

/* wrapper au dessus de l'overlay */
.presentation-wrapper {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: center;
}

/* IMAGE */
.presentation-image {
  position: relative;
}

.presentation-image img {
  width: 100%;
  border-radius: 20px;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

/* cadre doré décalé */
.presentation-image::after {
  content: "";
  position: absolute;
  bottom: -25px;
  left: 25px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--gold-main);
  border-radius: 20px;
  z-index: 1;
}

/* CONTENU */

.presentation-content h2 {
  font-size: clamp(1.2rem, 3vw, 2rem);
  margin-bottom: 20px;
  color: var(--gold-light);
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.presentation-intro {
  font-size: 1.05rem;
  margin-bottom: 30px;
  color: var(--text-muted);
}

.presentation-content h3 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-main);
}

.presentation-content p {
  color: #ffffff;
  line-height: 1.8;
  font-size: 0.95rem;
}

/* Bloc citation */
.presentation-quote {
  margin: 0px 0px 30px 0px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.04);
  border-left: 4px solid var(--gold-main);
  border-radius: 15px;
  backdrop-filter: blur(6px);
}

.presentation-quote p {
  font-style: italic;
  color: #f3f4f6;
}


@media (max-width: 768px) {
 .presentation-split {
  padding: 20px 20px;
 }
}

/* =========================
   BOUTONS
========================= */
.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  padding: 12px 25px;
  border-radius: 30px;
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 600;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.45);
}

/* =========================
   BOUTON CONTACT
========================= */

.btn-secondary {
  position: relative;
  overflow: hidden;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  border: 2px solid gray;
  color: var(--gold-main);
  font-weight: bold;
  background: transparent;
  transition: all 0.4s ease;
}

/* Halo lumineux */
.btn-secondary::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 30px;
  padding: 2px;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(136, 225, 252, 0.6),
    transparent
  );
  background-size: 200% 200%;
  animation: borderMove 4s linear infinite;
  z-index: -1;
}

/* Animation lente*/
@keyframes borderMove {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

/* Hover */
.hero .btn-secondary:hover {
  background: rgba(212, 175, 55, 0.08);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
  transform: translateY(-2px);
}
/* =========================
   SECTIONS
========================= */
.section {
  padding: 100px 80px;
}

.section h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: rgb(211, 146, 26);
  line-height: 1.3em;
}

.section-intro {
  text-align: center;
  max-width: 700px;
  margin: auto;
  margin-bottom: 50px;
}

#avantages {
  background:
    linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.7)),
    url("images/texture13.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
}

/* =========================
   CARDS
========================= */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.card {
  background: var(--bg-card);
  padding: 30px;
  border-radius: 15px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* =========================
   INCLUS
========================= */

.inclus-premium {
  background:
    linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)),
    url("images/texture13.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: auto;
  margin-bottom: 70px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2rem);
  padding-top: 50px;
  margin-bottom: 20px;
  color: var(--gold-main);
}

.section-header p {
  color: rgb(0, 0, 0);
  font-size: 1rem;
  font-weight: bold;
}

.offer p {
  color: rgb(255, 255, 255);
  font-size: 1rem;
  font-weight: bold;
}

.features-premium {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1150px;
  margin: auto;
}

.feature-premium {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 10px 5px 20px rgba(0, 0, 0, 0.2);

  opacity: 0;
  transform: translateY(40px);
}

.feature-premium.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(212, 175, 55, 0.08),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-premium:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.feature-premium:hover::before {
  opacity: 1;
}

.feature-premium .feature-icon {
  font-size: 2.2rem;
}

.feature-premium .feature-icon img {
  width: 40%;
  height: 40%;
}

.feature-premium h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
  color: #d39c06;
}

.feature-premium span {
  display: block;
  font-size: 0.9rem;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 15px;
}

.feature-premium p {
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.6;
}

/* =========================
   MAINTENANCE
========================= */

.maintenance-section {
  background:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.85)),
    url("images/texture14.webp") center/cover no-repeat;
  color: white;
  position: relative;
  margin-bottom: 10px;
  padding-bottom: 100px;
}

.maintenance-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.maintenance-section h2 {
  color: var(--gold-main);
  margin-bottom: 15px;
}

.maintenance-intro {
  max-width: 700px;
  margin: auto;
  margin-bottom: 60px;
  color: var(--text-muted);
}

/* GRID */
.maintenance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* CARD */
.maintenance-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 20px;
  padding: 35px;
  text-align: left;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.maintenance-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.maintenance-card h3 {
  color: var(--gold-light);
  margin-bottom: 15px;
}

.maintenance-card .price {
  font-size: 1.8rem;
  font-weight: bold;
  color: white;
  margin-bottom: 15px;
}

.maintenance-card ul {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.maintenance-card li {
  margin-bottom: 10px;
  color: var(--text-muted);
}

.note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 15px;
}

/* CARD HIGHLIGHT */
.maintenance-card.highlight {
  border: 2px solid var(--gold-main);
  background: rgba(212, 175, 55, 0.08);
}

.realisations-carousel {
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: 40px auto 0;
}

.realisations-track {
  display: flex;
  gap: 30px;
  transition: transform 0.6s ease;
}

.realisations-card {
  min-width: 300px;
  flex-shrink: 0;
}

.realisations-card img {
  max-width: 200px;
}

/* Boutons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 2;
  border-radius: 10px;
  transition: background 0.3s ease;
}

.carousel-btn:hover {
  background: var(--gold-main);
  color: #111;
}

.prev {
  left: 10px;
}
.next {
  right: 10px;
}

/* =========================
   PRIX
========================= */
.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.price-card {
  background: var(--bg-card);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.featured {
  border: 2px solid var(--gold-main);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
  transform: scale(1.05);
}

.price-card ul {
  list-style: none;
  margin-top: 20px;
}

.price-card li {
  margin-bottom: 10px;
}

/* =========================
   RÉALISATIONS
========================= */
.realisations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  margin-top: 40px;
}

.realisations-card {
  background: var(--bg-card);
  color: var(--text-main);
  padding: 25px;
  border-radius: 20px;
  text-align: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.realisations-card img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 15px;
  object-fit: cover;
}

.realisations-card h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: var(--gold-main);
}

.realisations-card a {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  border-radius: 25px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #111;
  text-decoration: none;
  font-weight: 600;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.realisations-card a:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.35);
}

/* =========================
   OFFRES
========================= */

.note-alert {
  margin-top: 20px;
  padding: 18px 20px;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.15),
    rgba(0, 0, 0, 0.2)
  );
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: #fff;
  font-weight: 500;
  position: relative;
}

.note-alert strong {
  color: var(--gold-light);
}
.offres-premium .section-header {
  position: relative;
  z-index: 1;
}

#offres {
  padding-top: 10px;
}
.offres-premium {
  position: relative;
  background-color: #0f0f0f;
  overflow: hidden;
  z-index: 0;
  
}

.offres-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/imagebanniere6.webp") center/cover no-repeat;
  filter: blur(10px) brightness(0.35);
  z-index: 0;
}

.pricing-premium {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1300px;
  margin: 60px auto 0;
}

.price-card-premium {
  position: relative;
  background: white;
  color: #111827;
  padding: 45px 35px;
  border-radius: 25px;
  text-align: center;
  border: 1px solid rgba(212, 175, 55, 0.15);
  z-index: 1;
}

.price-card-premium:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.4);
}

/* Bandeau titre pleine largeur */
.price-card-premium h3 {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #ffffff;
  padding: 20px;
  margin: -50px -35px 30px -35px;
  border-radius: 30px 30px 0 0;
  font-size: 1.4rem;
  font-weight: 600;
}

hr {
  border: none;
  height: 1px;
  margin: 20px 0 25px 0;
  background: linear-gradient(
    to right,
    transparent,
    rgba(212, 175, 55, 0.7),
    transparent
  );
}

.price {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 2.2rem;
  font-weight: 500;
  margin: 20px 0 10px 0;
  color: black;
}

.price-sub {
  font-size: 0.95rem;
  color: #7c7c7c;
  margin-bottom: 30px;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.features-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 15px;
}

.btn-offer {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 30px;
  background: transparent;
  border: 2px solid var(--gold-main);
  color: var(--gold-main);
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-offer:hover {
  background: var(--gold-main);
  color: #111;
}

/* Carte mise en avant */
.featured-premium {
  border: 2px solid var(--gold-main);
  box-shadow: 0 0 50px rgba(212, 175, 55, 0.25);
}

.badge-popular {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #111;
  padding: 6px 15px;
  font-size: 0.8rem;
  border-radius: 20px;
  font-weight: 600;
}

.payment-badge {
  display: inline-block;
  margin-top: 8px;
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 20px;
  background: rgba(212, 175, 55, 0.12);
  color: #b8860b;
  border: 1px solid rgba(212, 175, 55, 0.4);
  letter-spacing: 0.3px;
}

.old-price {
  font-size: 1.7rem;
  color: #000000;
  text-decoration: line-through;
  font-weight: bold;
}

.discount {
  margin-left: 10px;
  font-size: 1rem;
  background: #ef4444;
  color: white;
  padding: 3px 8px;
  border-radius: 12px;
  font-weight: bold;
  vertical-align: middle;
}

.new-price {
  display: block;
  font-size: 2.4rem;
  color: #000;
  margin-top: 5px;
}
/* =========================
   PROCESS
========================= */

#process {
  background:
    linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.7)),
    url("images/texture.webp");
  background-size: cover;
  background-position: center;
}
.process-stripes {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1000px;
  margin: 50px auto 0;
}

.stripe {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px 30px;
  border-radius: 15px;
  background: linear-gradient(135deg, #f9f6f2, #ffffff);
  position: relative;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.stripe:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.stripe-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-main);
  min-width: 50px;
  text-align: center;
}

.stripe-content h3 {
  margin-bottom: 5px;
  font-size: 1.2rem;
  color: #111827;
}

.stripe-content p {
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.5;
}

.stripe-icon {
  font-size: 2rem;
  margin-left: auto;
}

/* Alternance légère des couleurs de fond */
.stripe:nth-child(even) {
  background: linear-gradient(135deg, #fff9f0, #fdf7f2);
}

@media (max-width: 768px) {
  .stripe {
    flex-direction: column;
    align-items: flex-start;
  }

  .stripe-icon {
    margin-left: 0;
    margin-top: 10px;
  }
}

/* =========================
   PROCESS
========================= */

.process-project {
  background:
    linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.7)),
    url("images/texture13.webp");
  padding: 50px 20px;
  position: relative;
  overflow: hidden;
}

.process-container {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.process-project h2 {
  font-size: clamp(1.2rem, 3vw, 2rem);
  margin-bottom: 20px;
  color: rgb(211, 146, 26);
}

.process-subtitle {
  color: #555555;
  margin-bottom: 80px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* Ligne verticale dorée */
.timeline::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, #ffd700, #b8860b); /* doré */
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  text-align: left;
  position: relative;

  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

.timeline-item.show {
  opacity: 1;
  transform: translateY(0);
}

.timeline-number {
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd700, #b8860b);
  color: #ffffff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  position: relative;
  z-index: 2;
}

.timeline-content h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
  color: #111111;
}

.timeline-content p {
  color: #555555;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 700px) {
  .timeline::before {
    display: none;
  }

  .timeline {
    gap: 25px;
  }

  .timeline-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    background: none;
    border: none;
  }

  .timeline-number {
    display: none;
  }

  .timeline-content h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 600;
  }

  .timeline-content h3::before {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffd700, #b8860b);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
  }

  .timeline-item:nth-child(1) .timeline-content h3::before {
    content: "01";
  }
  .timeline-item:nth-child(2) .timeline-content h3::before {
    content: "02";
  }
  .timeline-item:nth-child(3) .timeline-content h3::before {
    content: "03";
  }
  .timeline-item:nth-child(4) .timeline-content h3::before {
    content: "04";
  }
  .timeline-item:nth-child(5) .timeline-content h3::before {
    content: "05";
  }
  .timeline-item:nth-child(6) .timeline-content h3::before {
    content: "06";
  }

  .timeline-content p {
    font-size: 0.9rem;
    margin-top: 6px;
    color: #555555;
  }

  .process-project {
    padding: 80px 20px;
  }

  .process-subtitle {
    margin-bottom: 35px;
    font-size: 0.95rem;
  }
}

a:focus {
  outline: none;
  outline-offset: 3px;
}

/* =========================
   CONTACT
========================= */

.contact-section {
  background-image: url("images/texture14.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
}

.contact-container {
  max-width: 1200px;
  margin: auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;

  align-items: stretch;

  padding: 50px;
  border-radius: 25px;

  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.15);
  backdrop-filter: blur(6px);
}

.contact-left {
  position: relative;
}

.contact-left::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 25px;
  background: radial-gradient(
    circle at top right,
    rgba(212, 175, 55, 0.08),
    transparent 60%
  );
  pointer-events: none;
}

.contact-left h2 {
  margin-bottom: 15px;
}

.contact-infos {
  margin-top: 30px;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateX(5px);
  background: rgba(212, 175, 55, 0.08);
}

.contact-icon img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.contact-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-item strong {
  display: block;
  color: white;
  font-size: 0.95rem;
}

.contact-item span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

#email a {
  color: white;
  text-decoration: none;
}
/* =========================
   CONTACT FORMULAIRE DROITE
========================= */

.contact-right {
  position: relative;
}

.contact-right::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 0;
  height: 100%;
  width: 1px;

  background: linear-gradient(
    to bottom,
    transparent,
    rgba(212, 175, 55, 0.7),
    transparent
  );
}

/* Formulaire */
.contact-right form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

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

.form-group input,
.form-group textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.35);
  color: white;
  font-size: 0.95rem;
  transition: all 0.25s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-main);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.35);
}

/* Placeholder */
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.877);
}



@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  20%,
  60% {
    transform: translateX(-5px);
  }
  40%,
  80% {
    transform: translateX(5px);
  }
}


/* Checkbox RGPD */
.form-group.rgpd {
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.form-group.rgpd label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Bouton envoyer */
.contact-right button {
  align-self: center;
  width: fit-content;
  margin-top: 10px;
  padding: 20px 100px;
  border-radius: 30px;
  border: none;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;

  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #1a1a1a;

  transition: all 0.3s ease;
}

.contact-right button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

#form-message {
  margin-top: 15px;
  font-weight: 600;
}

.success {
  color: #2ecc71;
}



/* =========================
   FOOTER
========================= */

.footer {
  background-color: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
  padding: 60px 80px 30px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
}

.footer-brand img {
  max-height: 50px;
  margin-bottom: 15px;
}

.footer-links,
.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links h4,
.footer-legal h4 {
  color: var(--gold-main);
  margin-bottom: 10px;
}

.footer-links a,
.footer-legal a {
  text-decoration: none;
  color: rgb(255, 255, 255);
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-legal a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  text-align: center;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
}

.mentions-legales h1,
.politique-confidentialite h1 {
  text-align: center;
  color: #000;
  margin-bottom: 50px;
}

.mentions-legales h2,
.politique-confidentialite h2 {
  font-size: 1.2rem;
  text-align: left;
  color: #000;
  margin-top: 40px;
  margin-bottom: 15px;
}

.mentions-legales p,
.politique-confidentialite p {
  color: #585858;
  line-height: 1.8;
  margin-bottom: 25px;
  font-size: 1rem;
}

.mentions-legales .container,
.politique-confidentialite .container {
  max-width: 900px;
  margin: auto;
}

.mentions-legales,
.politique-confidentialite {
  background: #ffffff;
  padding: 100px 80px;
}

/* Banniere RGPD*/
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 900px;
  margin: auto;
  background: #111827;
  color: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: none;
  z-index: 9999;
  animation: slideUp 0.4s ease;
}

.cookie-banner.show {
  display: block;
}

.cookie-content p {
  font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 15px;
  color: #e5e7eb;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.cookie-btn {
  border: none;
  padding: 10px 14px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.2s;
}

.cookie-btn.accept {
  background: #d4af37;
  color: #111;
}

.cookie-btn.accept:hover {
  background: #c49b2c;
}

.cookie-btn.refuse {
  background: transparent;
  border: 1px solid #6b7280;
  color: #fff;
}

.cookie-btn.refuse:hover {
  background: #1f2937;
}

@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 1000px) {
  .hero {
    padding: 0 30px;
    height: 80vh;
    background-position: 80% center;
  }

  .hero-content {
    padding: 30px;
    backdrop-filter: blur(1px);
  }

  .navbar {
    padding: 15px 30px;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 1.3rem;
  }

  .hero {
    text-align: center;
  }

  .hero-buttons a {
    display: block;
    margin: 10px auto;
  }

  .section {
    padding: 70px 25px;
  }
}

@media (max-width: 768px) {
  .contact-container {
    display: grid;
    grid-template-columns: 1fr;
    padding-left: 0px;
    padding-right: 0px;
  }

  .contact-left {
    width: 100%;
    padding: 0 50px;
  }

  .contact-right {
    margin-top: 30px;
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 768px) {

  .footer {
    padding: 40px 20px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-links,
  .footer-legal {
    align-items: center;
  }
  .section {
  padding: 100px 5px;
}

}

@media (max-width: 1000px) {
  .presentation-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .presentation-image img {
    width: 50%;
  }
  .section h2 {
    font-size: 1.2rem;
  }
}