/* Start custom CSS for html, class: .elementor-element-910d028 *//* Bloc Titre Contact */
.bloc-titre {
    text-align: center;
    margin: 0px 0px 0;
    font-family: 'Montserrat', sans-serif;
}

.bloc-titre h1 {
    font-size: 2rem;
    font-weight: 800;
    color: #1a2a44; /* couleur accent similaire à ton branding */
    line-height: 1.2;
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
    text-align: center;

}

.bloc-titre h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f2a44; /* bleu foncé */
  margin-bottom: 25px;
  text-align: center;
}

@media (max-width: 768px) {
    .bloc-titre h1 {
        font-size: 1.6rem;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-19d6f51 */.seo-list {
  list-style: none;
  padding-left: 0;
  margin: 25px auto;
  max-width: 900px;
}

.seo-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  line-height: 1.6;
  font-size: 1rem;
  color: #1a1a1a;
}

/* Flèche orange */
.seo-list li::before {
  content: "➜";
  position: absolute;
  left: 0;
  top: 0;
  color: #d46a27; /* orange du site */
  font-weight: 700;
  font-size: 1.05rem;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-28f72f1 *//* ========================
   Sections SEO – Prestations
   ======================== */
.seo-section {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
}

/* Titres H2 SEO */
.seo-h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #0f2a44; /* Bleu foncé */
  margin-bottom: 25px;
  text-align: center;
}

/* Titres H3 SEO */
.seo-h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #d46a27; /* Orange */
  margin-bottom: 12px;
}

/* Paragraphes SEO */
.seo-paragraph {
  font-size: 1rem;
  line-height: 1.75;
  color: #1a1a1a;
  margin-bottom: 18px;
  text-align: justify;
}

/* Listes SEO */
.seo-list {
  list-style: none;
  padding: 0;
  margin: 30px auto 0;
  max-width: 900px;
}

/* Élément de liste */
.seo-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.6;
  color: #1a1a1a;
}

/* Flèche */
.seo-list li::before {
  content: "➜";
  position: absolute;
  left: 0;
  top: 2px;
  color: #d46a27; /* Orange */
  font-weight: 700;
}

/* Liens SEO */
.seo-list a {
  color: #0f2a44; /* Bleu foncé */
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(15,42,68,0.3);
  transition: all 0.25s ease;
}

/* Hover liens */
.seo-list a:hover {
  color: #d46a27; /* Orange */
  border-bottom-color: #d46a27;
}

/* Responsive */
@media (max-width: 768px) {
  .seo-h2 {
    font-size: 1.6rem;
  }

  .seo-paragraph,
  .seo-list li {
    font-size: 0.95rem;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-84d756e *//* ===========================
   Tarifs – Style général
   =========================== */

.tarifs-container {
  max-width: 1100px;
  margin: 50px auto;
  padding: 0 20px;
}

/* Titre */
.tarifs-container h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #0f2a44; /* bleu foncé */
  text-align: center;
  margin-bottom: 20px;
}

/* Texte d’introduction */
.tarifs-intro {
  max-width: 900px;
  margin: 0 auto 30px;
  font-size: 1rem;
  line-height: 1.7;
  color: #1a1a1a;
  text-align: center;
}

/* Tableau */
.tarifs-table {
  width: 100%;
  border-collapse: collapse;
  background: #f9f5f0; /* fond beige clair */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* En-tête */
.tarifs-table thead th {
  background: #0f2a44; /* bleu foncé */
  color: #ffffff;
  font-weight: 700;
  padding: 16px;
  text-align: left;
  font-size: 1rem;
}

/* Cellules */
.tarifs-table td {
  padding: 15px 16px;
  font-size: 1rem;
  color: #1a1a1a;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

/* Dernière ligne */
.tarifs-table tbody tr:last-child td {
  border-bottom: none;
}

/* Mise en valeur des prix */
.tarifs-table td strong {
  color: #d46a27; /* orange */
  font-weight: 700;
}

/* Ligne au survol */
.tarifs-table tbody tr:hover {
  background: rgba(212, 106, 39, 0.08);
}

/* Note sous le tableau */
.tarifs-note {
  max-width: 900px;
  margin: 20px auto 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333333;
  text-align: center;
}

/* ===========================
   Responsive
   =========================== */

@media (max-width: 768px) {
  .tarifs-container h2 {
    font-size: 1.6rem;
  }

  .tarifs-table thead {
    display: none;
  }

  .tarifs-table,
  .tarifs-table tbody,
  .tarifs-table tr,
  .tarifs-table td {
    display: block;
    width: 100%;
  }

  .tarifs-table tr {
    margin-bottom: 18px;
    background: #f9f5f0;
    border-radius: 10px;
    padding: 10px;
  }

  .tarifs-table td {
    border: none;
    padding: 8px 10px;
    font-size: 0.95rem;
  }

  .tarifs-table td::before {
    content: attr(data-label);
    font-weight: 700;
    color: #0f2a44;
    display: block;
    margin-bottom: 4px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-bab2f9a *//* ---- SECTION CTA CONTACT ---- */
#cta-contact {
  background: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
  font-family: "Inter", sans-serif;
  color: #1C1C1C;
}

.cta-container {
  max-width: 900px;
  margin: 0 auto;
}

#cta-contact h2 {
  color: #d46a27;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 20px;
}

#cta-contact p {
  font-size: 16px;
  margin-bottom: 30px;
  line-height: 1.7;
}

/* Boutons */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-cta {
  text-decoration: none;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  transition: transform 0.25s, box-shadow 0.25s;
}

/* Bouton d'appel */
.call-btn {
  background-color: #d46a27;
  color: #FFFFFF;
}

.call-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 12px rgba(255,139,0,0.35);
}

/* Bouton retour */
.return-btn {
  background-color: #F2F2F2;
  color: #1C1C1C;
  border: 1px solid #DDDDDD;
}

.return-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 12px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 600px) {
  .cta-buttons {
    flex-direction: column;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-8bfe8c7 *//* ===== Maillage départemental ===== */
.internal-links-bis {
  max-width: 1100px;
  margin: 50px auto;
  padding: 30px 25px;
  background: #f9f5f0;
  border-radius: 14px;
}

.internal-links-bis h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1f2f46; /* bleu foncé */
  margin-bottom: 15px;
}

.internal-links-bis p {
  color: #333;
  line-height: 1.6;
}

.internal-links-bis-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.internal-links-bis-list li {
  margin-bottom: 10px;
  font-weight: 500;
  position: relative;
}

.internal-links-bis-list a {
  color: #d46a27;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  width: 100%; /* rend toute la ligne cliquable */
}

.internal-links-bis-list a:hover {
  text-decoration: underline;
}

/* Accordéon Paris */
.accordion-item .accordion-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 6px 0;
}

.accordion-arrow {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding-left: 15px;
}

.accordion-item.active .accordion-arrow {
  transform: rotate(90deg);
}

.accordion-item.active .accordion-content {
  max-height: 800px; /* ajustable selon contenu */
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-56682cc *//*FAQ*/
/* ---- FAQ PARIS ---- */
#faq-paris {
  background: #FFFFFF;
  padding: 60px 20px;
  color: #1C1C1C;
  font-family: "Inter", sans-serif;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

#faq-paris h2 {
  color: #0f2a44;
  text-align: center;
  font-weight: 700;
  margin-bottom: 40px;
  font-family: "Montserrat", sans-serif;
}

/* FAQ Item */
.faq-item {
  margin-bottom: 15px;
  border-radius: 6px;
  overflow: hidden;
  background: #F8F8F8;
  border-left: 4px solid #0f2a44;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* Question Button */
.faq-question {
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  color: #1C1C1C;
  transition: background 0.25s;
}

.faq-question:hover {
  background: #FFF3E0;
}

/* Answer Panel */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 20px;
  background: #FFFFFF;
}

.faq-answer p {
  margin: 16px 0;
  line-height: 1.6;
}

/* Active FAQ */
.faq-item.active .faq-answer {
  max-height: 500px; /* ajustable selon le contenu */
  padding: 16px 20px;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-b8506ed *//* =========================
   CTA – Conversion SEO
   ========================= */

.cta-section {
  max-width: 1100px;
  margin: 0px auto;
  padding: 40px 25px;
  background: #fff; /* même fond que tableaux tarifs */
  border-radius: 16px;
  text-align: center;
}

.cta-section .seo-h2 {
  color: #0f2a44; /* bleu foncé */
  margin-bottom: 20px;
}

.cta-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #1a1a1a;
  max-width: 800px;
  margin: 0 auto 30px;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-top: 20px;
}

/* Bouton principal */
.cta-button {
  display: inline-block;
  padding: 14px 26px;
  background: #d46a27; /* orange */
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #b8581f;
  transform: translateY(-2px);
}

/* Liens secondaires */
.cta-link {
  display: inline-block;
  padding: 14px 22px;
  border: 2px solid #0f2a44;
  color: #0f2a44;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-link:hover {
  background: #0f2a44;
  color: #ffffff;
}/* End custom CSS */