/* Global Settings */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}
.footer {
  background-color: #111;
  color: #ddd;
  padding: 60px 20px 30px;
  font-family: 'Montserrat', sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.footer-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
}

.footer-col h3 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #fff;
}

.footer-col p,
.footer-col a {
  font-size: 0.95rem;
  color: #bbb;
  text-decoration: none;
  line-height: 1.8;
}

.footer-col a:hover {
  color: #fff;
}

.social-icons a {
  color: #bbb;
  font-size: 1.2rem;
  margin-right: 15px;
  transition: 0.3s ease;
}

.social-icons a:hover {
  color: #007bff;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #333;
  padding-top: 20px;
  font-size: 0.85rem;
}

.footer-bottom a {
  color: #888;
  margin: 0 10px;
}

.footer-bottom a:hover {
  color: #fff;
}



/* Body */
body {
  background-color: var(--light-bg);
  color: var(--text-color);
}

/* === TON CODE D'ORIGINE - NE PAS TOUCHER === */
/* HEADER ULTRA PREMIUM */
.premium-header {
background: linear-gradient(145deg, #0d0d0d 0%, #1a1a1a 100%);
padding: 20px 0;
box-shadow: 0 4px 20px rgba(255, 215, 0, 0.15);
position: sticky;
top: 0;
z-index: 999;
backdrop-filter: blur(8px);
border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

/* CONTAINER */
.container {
width: 90%;
max-width: 1400px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
}

/* LOGO */
.logo img {
height: 80px;
object-fit: contain;
transition: transform 0.3s ease;
}

.logo img:hover {
transform: scale(1.05);
}

/* NAVBAR PREMIUM VISIBILITÉ MAXIMUM */
.navbar ul {
list-style: none;
display: flex;
gap: 40px;
margin: 0;
padding: 0;
}

.navbar ul li {
position: relative;
}

.navbar ul li a {
color: #ffffff;
text-decoration: none;
font-weight: 700;
font-size: 18px;
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
transition: all 0.3s ease;
letter-spacing: 0.7px;
padding: 10px 15px;
border-radius: 10px;
}

.navbar ul li a span {
font-size: 24px;
margin-bottom: 6px;
color: #FFD700;
transition: transform 0.3s ease, color 0.3s ease;
}

.navbar ul li a:hover {
background: rgba(255, 255, 255, 0.08);
color: #FFD700;
box-shadow: 0 6px 18px rgba(255, 215, 0, 0.4);
transform: translateY(-3px);
}

.navbar ul li a:hover span {
transform: scale(1.3);
color: #ffffff;
}

.navbar ul li a::after {
content: '';
position: absolute;
left: 50%;
transform: translateX(-50%);
bottom: -6px;
width: 0;
height: 2px;
background: #FFD700;
transition: width 0.3s ease;
}

.navbar ul li a:hover::after {
width: 50%;
}



/* ==== RESPONSIVE ULTRA PREMIUM ++++ ==== */
@media (max-width: 992px) {
.container {
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.navbar {
  width: 100%;
  display: none;
  flex-direction: column;
  background: #111;
  padding: 20px;
  border-radius: 15px;
  margin-top: 10px;
  box-shadow: 0 8px 24px rgba(255, 215, 0, 0.1);
}

.navbar ul {
  flex-direction: column;
  gap: 15px;
  width: 100%;
}

.navbar ul li a {
  justify-content: flex-start;
  font-size: 16px;
}

.navbar ul li a span {
  font-size: 20px;
}



/* Hamburger Icon */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}

.hamburger div {
  width: 28px;
  height: 3px;
  background: #FFD700;
  border-radius: 3px;
  transition: 0.3s;
}

.hamburger.active div:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active div:nth-child(2) {
  opacity: 0;
}

.hamburger.active div:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.navbar.show {
  display: flex;
}
}

@media (max-width: 500px) {
.logo img {
  height: 55px;
}


}
/* SECTION HERO ULTRA PREMIUM */
.hero {
  position: relative;
  background: url('../../img/hero-contact.jpeg') no-repeat center center/cover;
  height: 85vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Overlay noir pour lisibilité */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 30px;
  animation: fadeInUp 1s ease-out forwards;
  opacity: 0;
}

.hero h1 {
  font-size: 3.8rem;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.2;
}

.hero h1 .gold {
  color: #FFD700; /* Mot clé doré */
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 40px;
  line-height: 1.6;
  color: #f0f0f0;
}

/* Animation d'entrée douce */
@keyframes fadeInUp {
  0% {
      transform: translateY(30px);
      opacity: 0;
  }
  100% {
      transform: translateY(0);
      opacity: 1;
  }
}

/* ✅ ULTRA RESPONSIVE PREMIUM+++ MOBILE */
@media (max-width: 768px) {
  .hero {
      height: auto;
      padding: 60px 6% 100px;
  }

  .hero-content {
      padding: 20px;
      max-width: 90%;
  }

  .hero h1 {
      font-size: 2.5rem;
      line-height: 1.4;
      margin-bottom: 15px;
  }

  .hero p {
      font-size: 1.1rem;
      margin-bottom: 25px;
      line-height: 1.5;
  }
}


/* SECTION CONTACT FORM */
.contact-form {
  background: #f0f0f0;
  padding: 60px 10%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.1);
}

/* Header */
.contact-header {
  text-align: center;
  margin-bottom: 50px;
}

.contact-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.contact-header h2 span.gold {
  color: #b8860b;
}

.contact-header p {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.6;
}

/* Form Container */
.contact-container {
  width: 100%;
  max-width: 800px;
  background: white;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* Form Group */
.form-group {
  margin-bottom: 30px;
}

.form-group label {
  font-size: 1.1rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 10px;
  display: block;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  font-size: 1rem;
  color: #333;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fafafa;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #b8860b;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  outline: none;
}

/* Button Submit */
.btn-submit {
  width: 100%;
  padding: 15px;
  background: #b8860b;
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background: #e6c200;
  transform: translateY(-3px);
}

.btn-submit:active {
  background: #c9a300;
  transform: translateY(1px);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-form {
      padding: 50px 5%;
  }

  .contact-container {
      padding: 30px;
  }

  .contact-header h2 {
      font-size: 2rem;
  }

  .form-group input,
  .form-group textarea {
      font-size: 1rem;
  }


}


/* === SECTION CONTACT ULTRA PREMIUM === */
.contact-redirect {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8f9fb, #e0e4f2);
  position: relative;
  overflow: hidden;
}

.contact-redirect-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #111;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #555;
  max-width: 750px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.cta-contact {
  display: inline-flex;
  align-items: center;
  padding: 16px 28px;
  border-radius: 50px;
  background: linear-gradient(135deg, #ffca3a, #b8860b);
  color: white;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.1rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transition: background 0.3s ease, transform 0.3s ease;
}

.cta-contact i.arrow {
  margin-left: 12px;
  font-style: normal;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.cta-contact:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #ffd23f, #b8860b);
}

.cta-contact:hover .arrow {
  transform: translateX(5px);
}

/* === CONTACT BUBBLES === */
.contact-cards-premium {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 60px;
}

.contact-bubble {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  border-radius: 30px;
  padding: 40px 30px;
  width: 260px;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}

.contact-bubble:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
}

.contact-bubble img {
  width: 55px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.contact-bubble h4 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}

.contact-bubble p {
  font-size: 1.05rem;
  color: #333;
  word-break: break-word;
}

/* === BACKGROUND DÉCOR OPTIONNEL === */
.contact-redirect::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #ffdd8b 0%, transparent 70%);
  top: -100px;
  left: -100px;
  z-index: 1;
  opacity: 0.3;
}

.contact-redirect::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #ffc6c6 0%, transparent 70%);
  bottom: -100px;
  right: -100px;
  z-index: 1;
  opacity: 0.3;
}

/* === RESPONSIVE === */
@media screen and (max-width: 768px) {
  /* Adaptation des tailles pour les petits écrans */
  .contact-redirect {
    padding: 60px 15px;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .section-subtitle {
    font-size: 1rem;
    max-width: 90%;
    margin: 0 auto 30px;
  }

  .cta-contact {
    padding: 12px 24px;
    font-size: 1rem;
  }

  .contact-cards-premium {
    gap: 30px;
    margin-top: 40px;
  }

  .contact-bubble {
    width: 90%;
    max-width: 300px;
    padding: 30px 20px;
  }

  .contact-bubble h4 {
    font-size: 1.2rem;
  }

  .contact-bubble p {
    font-size: 1rem;
  }
}

@media screen and (max-width: 480px) {
  /* Adaptation pour les très petits écrans */
  .contact-redirect {
    padding: 50px 10px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .cta-contact {
    padding: 10px 20px;
    font-size: 0.95rem;
  }

  .contact-cards-premium {
    gap: 20px;
    margin-top: 30px;
  }

  .contact-bubble {
    width: 100%;
    max-width: 350px;
    padding: 25px 15px;
  }

  .contact-bubble h4 {
    font-size: 1.1rem;
  }

  .contact-bubble p {
    font-size: 0.95rem;
  }
}




/* SECTION FAQ ULTRA PREMIUM */
.faq-ultra-premium {
padding: 100px 5%;
background: #fff;
}

.faq-header {
text-align: center;
margin-bottom: 60px;
}

.faq-header h2 {
font-size: 3.5rem;
color: #111;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 2px;
}

.faq-header h2 .gold {
color: #d4af37;
font-style: italic;
}

.faq-header p {
font-size: 1.2rem;
color: #666;
margin-top: 15px;
line-height: 1.6;
max-width: 700px;
margin-left: auto;
margin-right: auto;
}

.faq-container {
max-width: 900px;
margin: 0 auto;
}

.faq-item {
border-bottom: 1px solid #e0e0e0;
padding: 20px 0;
cursor: pointer;
}

.faq-question {
font-size: 1.4rem;
font-weight: 600;
color: #222;
position: relative;
transition: all 0.3s ease;
}

.faq-question::after {
content: "+";
position: absolute;
right: 0;
font-size: 1.8rem;
transition: transform 0.3s ease;
}

.faq-answer {
max-height: 0;
overflow: hidden;
transition: max-height 0.5s ease, opacity 0.5s ease;
font-size: 1.1rem;
color: #555;
line-height: 1.6;
margin-top: 10px;
opacity: 0;
}

.faq-item.active .faq-answer {
max-height: 300px;
opacity: 1;
}

.faq-item.active .faq-question::after {
transform: rotate(45deg);
}

/* ✅ ULTRA RESPONSIVE PREMIUM+++ MOBILE */
@media (max-width: 768px) {}
.faq-ultra-premium {
    padding: 60px 6%;
}

.faq-header h2 {
    font-size: 2rem;
    letter-spacing: 1px;
}

.faq-header p {
    font-size: 1rem;
    max-width: 90%;
}

.faq-container {
    padding: 0 5px;
}

.faq-question {
    font-size: 1.1rem;
    padding-right: 30px;
}

.faq-question::after {
    font-size: 1.5rem;
}

.faq-answer {
    font-size: 0.95rem;
    line-height: 1.5;
}

