/* =========================================
   CONCEPT DU SOIR V3 - CSS OPTIMISÉ
   Brasserie Aux Deux Amis
   ========================================= */

/* =========================================
   BASE & TYPOGRAPHY
   ========================================= */

.concept-soir-page {
  padding-top: 80px; /* Compense le header fixe */
}

/* Utiliser Source Sans Pro pour les paragraphes */
.concept-soir-page p,
.concept-soir-page li,
.seo-text,
.faq-answer {
  font-family: 'Source Sans Pro', sans-serif;
}

/* =========================================
   HERO V3 - Split Layout avec Map
   ========================================= */

.hero-tapas-v3 {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

@media (max-width: 768px) {
  .hero-bg-image {
    background-size: cover;
    background-position: 30% center; /* Focus plus à gauche sur mobile */
  }
}

.hero-bg-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(29, 30, 27, 0.92) 0%,
    rgba(92, 108, 116, 0.88) 50%,
    rgba(29, 30, 27, 0.75) 100%
  );
}

.hero-split-layout {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* Partie gauche : Contenu */
.hero-left-content {
  color: white;
}

@media (max-width: 768px) {
  .hero-left-content {
    text-align: center;
  }
  
  .hero-info-line {
    justify-content: center;
  }
  
  .hero-cta-simple {
    justify-content: center;
  }
}

.hero-badge-simple {
  display: inline-block;
  background: rgba(210, 159, 2, 0.2);
  border: 1px solid #D29F02;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  font-family: 'Tanker', sans-serif;
}

.hero-badge-simple h1 {
   font-size: 16px;
    line-height: 16px;
    margin: 0px;
    font-weight: 400;
}

@media (max-width: 768px) {
  .hero-badge-simple {
     margin-top: 20px;
      margin-bottom: 0px;
  }
}

.hero-main-title {
  font-family: 'Tanker', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

@media (max-width: 768px) {
  .hero-main-title {
    margin-top: 2rem;
  }
}

.hero-description {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  margin-bottom: 2rem;
  opacity: 0.95;
  line-height: 1.6;
}

.hero-description strong {
    font-weight: bolder;
    color: #d29f1c;
}

.hero-info-line {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-family: 'Source Sans Pro', sans-serif;
}

.info-item i {
  color: #D29F02;
}

.hero-cta-simple {
  display: flex;
  gap: 1rem;
}

.btn-hero-main,
.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-family: 'Tanker', sans-serif;
  font-size: 1.125rem;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-hero-main {
  background: #D29F02;
  color: white;
  box-shadow: 0 10px 25px rgba(210, 159, 2, 0.3);
}

.btn-hero-main:hover {
  background: #B88802;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(210, 159, 2, 0.4);
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
}

.btn-hero-secondary:hover {
  background: #25D366;
  border-color: #25D366;
  transform: translateY(-3px);
}

/* Partie droite : Map */
.hero-right-visual {
  position: relative;
}

.hero-map-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border: 3px solid rgba(210, 159, 2, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-map-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
  border-color: #D29F02;
}

.map-info-compact {
  padding: 1.75rem;
  background: linear-gradient(135deg, rgba(210, 159, 2, 0.08) 0%, rgba(92, 108, 116, 0.05) 100%);
  border-bottom: 2px solid rgba(210, 159, 2, 0.2);
  text-align: center;
}

.map-info-compact h3 {
  font-family: 'Tanker', sans-serif;
  font-size: 1.5rem;
  color: #5C6C74;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.map-info-compact h3 i {
  color: #D29F02;
}

.map-address {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1rem;
  color: #1D1E1B;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.map-address strong {
  display: block;
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.map-proximity {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 0.938rem;
  color: #5C6C74;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-style: italic;
}

.map-proximity i {
  color: #D29F02;
  font-size: 0.875rem;
}

.btn-map-direction {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #5C6C74;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-family: 'Tanker', sans-serif;
  transition: all 0.25s ease;
}

.btn-map-direction:hover {
  background: #4A5860;
  transform: translateY(-2px);
}

.map-embed-compact {
  height: 300px;
}

@media (max-width: 968px) {
  .hero-split-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-cta-simple {
    flex-direction: column;
  }
  
  .btn-hero-main,
  .btn-hero-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .map-embed-compact {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .concept-soir-page {
    padding-top: 70px; /* Ajusté pour mobile */
  }
  
  .hero-split-layout {
    padding: 1.5rem 1rem;
  }
}

/* =========================================
   CONCEPT + GALERIE V3
   ========================================= */

.concept-gallery-v3 {
  padding: 4rem 0;
  background: white;
}

.section-intro {
  margin-bottom: 3rem;
}

.section-intro.centered {
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-label {
  display: inline-block;
  color: #D29F02;
  font-family: 'Tanker', sans-serif;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Tanker', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: #5C6C74;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.title-3reasons {
       font-family: 'Tanker', sans-serif;
    font-size: 24px;
    color: #d29f1c;
    line-height: 1.2;
    margin-bottom: 0px;
   text-align:center;
}

.section-description {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1.125rem;
  color: #1D1E1B;
  line-height: 1.7;
}

.concept-grid-v3 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Groupe vidéo + texte côte à côte sur desktop */
.video-text-group {
  grid-column: 1 / -1; /* Prend toute la largeur */
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 968px) {
  .video-text-group {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Vidéo story verticale 9:16 */
.concept-video-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  background: #000;
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
  min-height: 600px;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 177.78%; /* Ratio 9:16 */
  height: 0;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  color: white;
  padding: 2rem 1.5rem 1.5rem;
  font-family: 'Tanker', sans-serif;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.video-caption i {
  color: #D29F02;
  font-size: 2rem;
}

/* Texte amélioré - MAINTENANT À DROITE DE LA VIDÉO */
.concept-text-enhanced {
  /* SUPPRIMÉ : grid-column: span 2; pour que le texte reste à côté de la vidéo */
  background: #F9FAFB;
  padding: 2.5rem;
  border-radius: 16px;
  border: 2px solid rgba(92, 108, 116, 0.1);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.highlights-compact {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.highlight-compact {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: white;
  border-radius: 12px;
  border: 1px solid rgba(210, 159, 2, 0.15);
  transition: all 0.25s ease;
}

.highlight-compact:hover {
  border-color: #D29F02;
  box-shadow: 0 4px 12px rgba(210, 159, 2, 0.1);
  transform: translateX(5px);
}

.highlight-compact i {
  font-size: 1.75rem;
  color: #D29F02;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.highlight-compact strong {
  display: block;
  font-family: 'Tanker', sans-serif;
  font-size: 1.125rem;
  color: #5C6C74;
  margin-bottom: 0.25rem;
}

.highlight-compact p {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 0.938rem;
  color: #1D1E1B;
margin: 6px 0;
   line-height: 1.5;
}

.highlight-compact li {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 0.938rem;
    color: #1D1E1B;
    margin: 3px 0;
    line-height: 1.5;
}

.highlight-compact ul {
    list-style-type: disclosure-closed;
   padding-left: 20px;
}

.highlight-compact ul li::marker{
    color:#d29f1c;
}


.chef-advice-v3 {
  position: relative;
  background: linear-gradient(135deg, rgba(210, 159, 2, 0.08) 0%, rgba(92, 108, 116, 0.05) 100%);
  border-left: 4px solid #D29F02;
  padding: 2rem;
  border-radius: 0 12px 12px 0;
  margin: 0;
}

.quote-icon {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 2rem;
  color: #D29F02;
  opacity: 0.3;
}

.chef-advice-v3 p {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1.125rem;
  color: #1D1E1B;
  margin: 1rem 0 1rem 0;
  line-height: 1.8;
  font-style: italic;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.advice-line {
  display: block;
  position: relative;
  padding-left: 1.5rem;
}

.advice-line::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #D29F02;
  font-weight: bold;
  font-style: normal;
}

.chef-advice-v3 cite {
  font-family: 'Tanker', sans-serif;
  font-size: 1rem;
  color: #5C6C74;
  font-style: normal;
  display: block;
  text-align: right;
}

/* Photos produits - toutes de même taille */
.concept-photo-v3 {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 280px;
}

.concept-photo-v3:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.concept-photo-v3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
  transition: transform 0.3s ease;
}

.concept-photo-v3:hover img {
  transform: scale(1.05);
}

.photo-tag {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(210, 159, 2, 0.95);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-family: 'Tanker', sans-serif;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .concept-grid-v3 {
    grid-template-columns: 1fr;
  }
  
  .concept-text-enhanced {
    padding: 0.75rem;
  }
  
  .highlight-compact {
    padding: 0.875rem;
  }
  
  .highlight-compact i {
    font-size: 1.5rem;
  }
  
  .chef-advice-v3 {
    padding: 1.5rem;
  }
  
  .chef-advice-v3 p {
    font-size: 1rem;
  }
}

/* =========================================
   MENU V3 - Icônes SVG
   ========================================= */

.menu-section-v3 {
  padding: 4rem 0;
  background: #F9FAFB;
}

.menu-subtitle {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1.125rem;
  color: #5C6C74;
  opacity: 0.8;
}

.menu-grid-v3 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.menu-column-v3 {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.menu-category-v3 {
  background: white;
  border-radius: 16px;
  padding: 1.75rem;
  border: 2px solid rgba(92, 108, 116, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.category-title-v3 {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: 'Tanker', sans-serif;
  font-size: 1.5rem;
  color: #5C6C74;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #D29F02;
}

.category-title-menu {
    display: block;
    text-align: center;
    font-family: 'Tanker', sans-serif;
    font-size: 1.5rem;
    color: #5C6C74;
    padding-bottom: 1rem;
    border-bottom: 2px solid #D29F02;
}


.category-icon-fa {
  font-size: 1.25rem;
  color: #D29F02;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(210, 159, 2, 0.1);
  border-radius: 50%;
  border: 2px solid rgba(210, 159, 2, 0.3);
  /* CORRECTION FLEXBOX POUR CENTRER L'ICÔNE */
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-icon-fa::before {
  display: block;
   margin-left:11px;
   margin-top:11px;
}

.menu-items-v3 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.menu-items-menu {
  display: flex;
  flex-direction: column;
  gap: 0px;
   text-align:center;
}

.menu-item-v3 {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.875rem;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.menu-item-subtitle {
    position: relative;
    padding: 0.875rem;
    border-radius: 8px;
    transition: background 0.2s 
ease;
}
.menu-item-v3:hover {
  background: rgba(92, 108, 116, 0.03);
}

.menu-item-v3.banger {
  background: rgba(210, 159, 2, 0.08);
  border: 1px solid rgba(210, 159, 2, 0.2);
}

.item-content {
  flex: 1;
}

.item-content h4 {
  font-family: 'Tanker', sans-serif;
  font-size: 1.063rem;
  color: #1D1E1B;
  margin: 0 0 0.25rem 0;
}

.item-content h5 {
  font-family: 'Tanker', sans-serif;
  font-size: 1rem;
  color: #1D1E1B;
  margin: 1rem 0 0.25rem 0;
}

.item-content p {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 0.875rem;
  color: #5C6C74;
  opacity: 0.85;
  margin: 0;
  line-height: 1.4;
}

.item-price-v3 {
  font-family: 'Tanker', sans-serif;
  font-size: 1.125rem;
  color: #D29F02;
  font-weight: bold;
  flex-shrink: 0;
}

.banger-badge {
  position: absolute;
  top: -18px;
  left: 40%;
  background: linear-gradient(135deg, #D29F02 0%, #B88802 100%);
  color: white;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  font-family: 'Tanker', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(210, 159, 2, 0.4);
  z-index: 10;
}

.menu-footer-v3 {
  text-align: center;
  margin-top: 2rem;
}

.btn-menu-pdf {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: #5C6C74;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-family: 'Tanker', sans-serif;
  font-size: 1.063rem;
  transition: all 0.25s ease;
}

.btn-menu-pdf:hover {
  background: #4A5860;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(92, 108, 116, 0.3);
}

@media (max-width: 968px) {
  .menu-grid-v3 {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   CTA RÉSERVATION V3
   ========================================= */

.cta-reservation-v3 {
  padding: 0;
  background: white;
}

.cta-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1400px;
  margin: 0 auto;
  align-items: center;
}

.cta-visual {
  height: 100%;
  min-height: 400px;
}

.cta-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-content {
  padding: 3rem;
  background: linear-gradient(135deg, #5C6C74 0%, #1D1E1B 100%);
  color: white;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-content h2 {
  font-family: 'Tanker', sans-serif;
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.cta-content > p {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.btn-cta-large {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
}

.btn-cta-large:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #D29F02;
  transform: translateX(5px);
}

.btn-cta-large i {
  font-size: 2rem;
  flex-shrink: 0;
}

.btn-cta-large.primary i {
  color: #D29F02;
}

.btn-cta-large.whatsapp i {
  color: #25D366;
}

.btn-cta-large > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.btn-small-text {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 0.875rem;
  opacity: 0.8;
  margin-bottom: 0.25rem;
}

.btn-cta-large strong {
  font-family: 'Tanker', sans-serif;
  font-size: 1.375rem;
}

.cta-hours-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 0.938rem;
  opacity: 0.9;
  margin-bottom: 0.75rem;
}

.cta-address-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 0.938rem;
  opacity: 0.9;
}

@media (max-width: 968px) {
  .cta-wrapper {
    grid-template-columns: 1fr;
  }
  
  .cta-visual {
    min-height: 250px;
  }
  
  .cta-content {
    padding: 2rem 1.5rem;
  }
}

/* =========================================
   TÉMOIGNAGES V3 avec Avatars
   ========================================= */

.testimonials-v3 {
  padding: 4rem 0;
  background: white;
}

.testimonials-grid-v3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card-v3 {
  background: #F9FAFB;
  padding: 2rem;
  border-radius: 16px;
  border: 2px solid rgba(92, 108, 116, 0.1);
  transition: all 0.3s ease;
}

.testimonial-card-v3:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: #D29F02;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #D29F02;
  flex-shrink: 0;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-author {
  flex: 1;
}

.testimonial-author strong {
  display: block;
  font-family: 'Tanker', sans-serif;
  font-size: 1.125rem;
  color: #5C6C74;
  margin-bottom: 0.25rem;
}

.testimonial-stars {
  color: #D29F02;
  font-size: 1rem;
  letter-spacing: 1px;
}

.testimonial-text {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #1D1E1B;
  margin-bottom: 1rem;
}

.testimonial-source {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 0.875rem;
  color: #5C6C74;
  opacity: 0.7;
}

/* =========================================
   BLOC SEO
   ========================================= */

.seo-section {
  padding: 4rem 0;
  background: #F9FAFB;
}

.seo-content {
  max-width: 900px;
  margin: 0 auto 3rem;
}

.seo-content h2 {
  font-family: 'Tanker', sans-serif;
  font-size: 2.5rem;
  color: #5C6C74;
  margin-bottom: 2rem;
}

.seo-text h3 {
  font-family: 'Tanker', sans-serif;
  font-size: 1.75rem;
  color: #5C6C74;
  margin: 2rem 0 1rem;
}

.seo-text p,
.seo-text li {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1.063rem;
  line-height: 1.8;
  color: #1D1E1B;
  margin-bottom: 1.25rem;
}

.lead-text {
  font-size: 1.125rem !important;
  font-weight: 600;
}

.seo-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.seo-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
}

.seo-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #D29F02;
  font-size: 1.25rem;
  font-weight: bold;
}

/* FAQ SEO */
.seo-faq {
  max-width: 900px;
  margin: 0 auto 3rem;
}

.seo-faq h3 {
  font-family: 'Tanker', sans-serif;
  font-size: 2rem;
  color: #5C6C74;
  margin-bottom: 1.5rem;
}

.faq-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 1rem;
  border: 1px solid rgba(92, 108, 116, 0.1);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: 'Tanker', sans-serif;
  font-size: 1.125rem;
  color: #5C6C74;
  text-align: left;
  transition: all 0.25s ease;
}

.faq-question:hover {
  background: rgba(210, 159, 2, 0.05);
}

.faq-question i {
  color: #D29F02;
  transition: transform 0.25s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 1.5rem 1.25rem;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #1D1E1B;
  margin: 0;
}

.faq-answer a {
   color:#d19e05;
   text-decoration:none;
}

.faq-answer a:hover {
   color:#5c6d73;
}

/* Mots-clés SEO */
.seo-keywords {
  max-width: 900px;
  margin: 0 auto;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  border: 1px solid rgba(92, 108, 116, 0.1);
}

.seo-keywords p {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 0.938rem;
  color: #5C6C74;
  margin: 0;
  line-height: 1.6;
}

.seo-keywords strong {
  color: #1D1E1B;
}

/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 768px) {
  .seo-content h2 {
    font-size: 2rem;
  }
  
  .seo-text h3 {
    font-size: 1.5rem;
  }
  
  .seo-text p,
  .seo-text li {
    font-size: 1rem;
  }
  
  .lead-text {
    font-size: 1.125rem !important;
  }
}
