body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #333;
  background-color: #fff;
}

/* HEADER */
.transparent-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 8%;
  background: #fff;
  border-bottom: 1px solid #ddd;
}

.transparent-header .logo img { height: 55px; }

.transparent-header nav {
  display: flex;
  gap: 50px;
}

.transparent-header nav a {
  text-decoration: none;
  color: #333;
  font-weight: 400;
}

.transparent-header nav a:hover { color: #b46d3c; }

.header-icons img {
  width: 28px;
  height: 28px;
  margin-left: 8px;
}

/* ===================
   HEADER RESPONSIVE
=================== */
@media (max-width: 768px) {
  .transparent-header {
    flex-direction: column;     /* ✅ Passe en colonne */
    align-items: center;
    gap: 12px;
    padding: 16px 5%;
  }

  .transparent-header nav {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .transparent-header nav a {
    font-size: 14px;
  }

  .transparent-header .header-icons {
    justify-content: center;
    gap: 14px;
  }

  .transparent-header .header-icons img {
    width: 36px;
    height: 36px;
  }
}


/* INTRO SECTION */
.section-intro {
  text-align: center;
  padding: 80px 10% 40px;
  max-width: 900px;
  margin: auto;
}

.section-intro h2 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 15px;
}

.section-intro p {
  color: #555;
  font-size: 15px;
  line-height: 1.8;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 860px;
  margin: 0 auto;
}

/* BENEFICES */
.benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 40px 10%;
}

.benefit {
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: #f7f7f7;
  border-radius: 20px;
  padding: 18px 22px;
  flex: 1 1 40%;
  max-width: 460px;
  gap: 15px;
}

.benefit img {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}

.benefit h3 {
  font-size: 13px;
  color: #222;
  font-weight: 600;
  margin: 0 0 4px;
}

.benefit p {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

.tinyjpg img{
  width: 80px;
  height: 80px;
  object-fit: contain;
}

/* ===== CONTACT ===== */
.contact-section {
  padding: 80px 10%;
  background-color: #fff;
}

.contact-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-text {
  flex: 1 1 480px;
}

.contact-text h2 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

.contact-text p {
  font-size: 15px;
  color: #555;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* Alignement des icônes à droite du texte */
.contact-icons {
  display: flex;
  justify-content: flex-start;
  gap: 18px;
}

.contact-icons img {
  width: 45px;
  height: 45px;
  transition: transform 0.2s ease;
}

.contact-icons img:hover {
  transform: scale(1.1);
}

.contact-image {
  flex: 1 1 300px;
  display: flex;
  justify-content: center;
}

.contact-image img {
  width: 230px;
  max-width: 100%;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .contact-content {
    flex-direction: column;
    text-align: center;
  }

  .contact-text {
    flex: unset;
  }

  .contact-icons {
    justify-content: center;
    margin-bottom: 20px;
  }

  .contact-image img {
    width: 180px;
  }
}


/* CTA BUTTONS */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 50px 0;
}

.btn {
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: white;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #b46d3c;
}

.btn-secondary {
  background: linear-gradient(135deg, #b46d3c, #53416a);
}

/* ===== BOUTON BLANC "Comparer mes options" ===== */
.btn-outline {
  position: relative;
  background-color: #fff;
  color: #000;
  border: 1px solid #000;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background-color: #f7f7f7;
  border-color: #333;
  color: #000;
  transform: translateY(-1px);
}

/* ===== Animation de surbrillance subtile ===== */
.btn-outline::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  transition: all 0.5s ease;
  opacity: 0;
}

.btn-outline:hover::after {
  left: 130%;
  opacity: 1;
  transition: all 0.7s ease;
}


.btn:hover { opacity: 0.85; }

/* FOOTER (repris du site principal) */
footer {
  background-color: #fff;
  border-top: 1px solid #ddd;
  padding: 40px 10%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  color: #333;
}

.footer-logo {
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo img { width: 80px; margin-bottom: 10px; }

.footer-logo p { 
  font-size: 14px;
  padding-right: 10px;
  align-items: center;
  text-align: center;
}


.footer-col h4 {
  font-size: 16px;
  font-weight: 600;
  color: #b46d3c;
  margin-bottom: 10px;
}

.footer-links {
  display: flex;
  gap: 80px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-col a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  margin: 5px 0;
}

.footer-col a:hover { color: #b46d3c; }

.footer-bottom {
  width: 100%;
  text-align: center;
  padding-top: 25px;
  border-top: 1px solid #e2e2e2;
  font-size: 13px;
  color: #777;
  margin-top: 30px;
}

@media (max-width: 768px) {
  .section-intro { padding: 40px 6% 20px; }
  .section-intro h2 { font-size: 17px; }
  .section-intro p { font-size: 14px; }

  .benefits {
    flex-direction: column;
    align-items: center;
    padding: 24px 6%;
    gap: 14px;
  }
  .benefit {
    width: 100%;
    max-width: 340px;
    border-radius: 16px;
  }

  footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 6%;
    gap: 8px;
  }
  .footer-logo {
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .footer-logo p { margin: 4px 0 0; }
  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 4px;
  }
  .footer-col { align-items: center; }
  .footer-logo { margin-bottom: 0; }
  .footer-links { gap: 12px; }
}

/* Animation d’apparition */
@keyframes fadeInLeft {
  0% { opacity: 0; transform: translateX(-40px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  0% { opacity: 0; transform: translateX(40px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes zoomIn {
  0% { opacity: 0; transform: scale(0.8); }
  100% { opacity: 1; transform: scale(1); }
}

/* Application des animations */
.animate-left {
  opacity: 0;
  animation: fadeInLeft 1s ease-out forwards;
}

.animate-right {
  opacity: 0;
  animation: fadeInRight 1s ease-out forwards;
}

.icon-animate {
  opacity: 0;
  animation: zoomIn 0.8s ease-out forwards;
  animation-delay: 0.3s;
}

/* Activation quand visible à l’écran */
@media (prefers-reduced-motion: no-preference) {
  .contact-section {
    scroll-behavior: smooth;
  }

  .contact-section .animate-left,
  .contact-section .animate-right,
  .contact-section .icon-animate {
    opacity: 0;
  }

  .contact-section.visible .animate-left {
    animation-delay: 0.1s;
    opacity: 1;
    animation: fadeInLeft 0.8s ease-out forwards;
  }

  .contact-section.visible .animate-right {
    animation-delay: 0.2s;
    opacity: 1;
    animation: fadeInRight 0.8s ease-out forwards;
  }

  .contact-section.visible .icon-animate {
    animation-delay: 0.4s;
    opacity: 1;
    animation: zoomIn 0.7s ease-out forwards;
  }
}
