@charset "UTF-8";

/* Variables CSS */
:root {
  --bs-blue: #0d6efd;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-primary: #0d6efd;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
}

/* Reset de base */
*, ::after, ::before {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
      overflow-x: hidden;
    max-width: 100vw;
}

/* Typographie */
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
  font-family: Montserrat;
  color: #144443;
}

h1 { font-size: calc(1.375rem + 1.5vw); }
h2 { font-size: calc(1.325rem + 0.9vw); }
h3 { font-size: calc(1.3rem + 0.6vw); }

@media (min-width: 1200px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.75rem; }
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 13px;
  font-weight: 400;
  color: #144443;
  line-height: 28px;
  font-family: Poppins;
}

/* Liens */
a {
color:#fff;
  text-decoration: none;
}

a:hover {
color:#fff;
  text-decoration: none;
}

/* Layout - Grid System */
.container {
  width: 100%;
  padding-right: calc(var(--bs-gutter-x, 1.5rem) * 0.5);
  padding-left: calc(var(--bs-gutter-x, 1.5rem) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) { .container { max-width: 540px; } }
@media (min-width: 768px) { .container { max-width: 720px; padding: 3%; } }
@media (min-width: 992px) { .container { max-width: 960px; } }
@media (min-width: 1200px) { .container { max-width: 1140px; } }
@media (min-width: 1400px) { .container { max-width: 1320px; } }

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) * -0.5);
  margin-left: calc(var(--bs-gutter-x) * -0.5);
}

.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

/* Classes de colonnes */
.col-md-6 { flex: 0 0 auto; width: 50%; }
.col-lg-6 { flex: 0 0 auto; width: 50%; }
.col-xl-5 { flex: 0 0 auto; width: 41.66666667%; }
.col-xl-6 { flex: 0 0 auto; width: 50%; }
.col-sm-6 { flex: 0 0 auto; width: 50%; }
.col-sm-12 { flex: 0 0 auto; width: 100%; }

@media (max-width: 991.98px) {
  .col-md-6, .col-lg-6 { width: 100%; }
}

/* Formulaires */
input[type="text"], input[type="email"], input[type="tel"], input[type="date"], textarea, select {
  height: 38px;
  border-radius: 13px;
  color: #144443;
  width: 100%;
  border: 1px solid #dedede;
  padding: 0.375rem 0.75rem;
  font-size: 14px;
  line-height: 1.5;
  background-color: #fff;
}

input[type="date"] {
  padding-left: 37px;
  padding-right: 36px;
}

input::placeholder, textarea::placeholder {
  color: #999;
  font-size: 11px;
}

textarea {
  height: 100px;
  resize: vertical;
  padding-top: 10px;
}

select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  padding-right: 2.25rem;
}

/* Boutons */
.btn {
  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  transition: all 0.15s ease-in-out;
}

button.mt-20 {
  background: #144443 !important;
  padding: 15px !important;
  color: #fff !important;
  margin: auto !important;
  width: 50% !important;
  display: block !important;
  margin-top: 3% !important;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-family:poppins
}

/* Header - Navigation */
.mn1-header {
  background: #fff;
  padding: 10px 20px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10000;
  box-shadow: 5px 1px 4px rgba(51, 51, 51, 0.55);
}

.mn1-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.mn1-logo a img {
  max-width: 240px;
  height: auto;
}

.mn1-checkbox {
  display: none;
}

.mn1-nav {
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  background: #fff;
  display: none;
  flex-direction: column;
  padding: 10px 0;
}

.mn1-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.mn1-list li {
  padding: 15px 0;
  position: relative;
}

.mn1-list li a {
  text-decoration: none;
  color: #144443;
  display: block;
  font-family: Poppins, sans-serif;
  font-size: 13px;
  padding-left: 10px;
}

.mn1-submenu {
  margin-top: 10%;
}

.mn1-submenu li {
  padding: 5px 10px;
}

/* Section Choose */
.choose-section {
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0 50px;
  gap: 40px;
  width: 80%;
  margin: auto;
  margin-top: 2%;
  font-family: Poppins;
  margin-bottom:4%
}

.text-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: Poppins;
}

.image-col {
  position: relative;
  flex: 1;
}

.image-col img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.section-label {
  color: #144443;
  font-weight: 400;
  text-transform: none;
  font-size: 13px;
  margin-bottom: 2%;
      margin-top: 5%;
}

.text-col h1 {
  font-size: 36px;
  margin: 10px 0;
  line-height: 1.3;
  font-family: Forum;
  margin-bottom: 5%;
  color: #144443;
}

.subtitle {
  margin-bottom: 30px;
  color: #144443;
}

.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
  font-size: 13px;
  color: #144443;
}

.check {
  color: #144443;
  font-size: 18px;
}

/* CTA Containers */
.cta-container1 {
  border: 1px solid #144443;
  padding: 8px 60px;
  border-radius: 15px;
  max-width: 256px;
  text-align: center;
  background: #144443;
  color: #fff;
  transition: all 0.3s ease;
  cursor: pointer;
  margin: auto;
}

.cta-container1:hover {
  border: 1px solid #ed8567;
  background: #ed8567;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(237, 133, 103, 0.3);
}

.cta-container1 a {
  font-size: 13px;
  font-family: 'Poppins';
  color: #fff;
  text-decoration: none;
  display: block;
  transition: color 0.3s ease;
  font-weight: 500;
}

.cta-container {
  margin-top: 30px;
  border: 1px solid #144443;
  padding: 6px;
  border-radius: 15px;
  max-width: 150px;
  text-align: center;
  background: #144443;
  color: #fff;
  transition: all 0.3s ease;
  cursor: pointer;
}

.cta-container a {
  font-size: 13px;
  font-family: 'Poppins';
  color: #fff;
  text-decoration: none;
  display: block;
}

/* Jobboard Carousel */
.jobboard {
  position: relative;
  width: 65%;
  margin: auto;
  display: flex;
  align-items: center;
  margin-bottom: 8%;
  margin-top: 2%;
}

.banniere_jobboard {
  overflow: hidden;
  flex: 1;
}

.job-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
}

.job-item {
  min-width: calc(100% / 6);
  text-align: center;
}

.job-item img {
  width: 50%;
  margin: auto;
  display: block;
}

.slide-btn {
  background: #fff;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  z-index: 2;
  padding: 5px 10px;
  color: #144443;
}

.slide-btn.left0 {
  margin-right: 10px;
}

.slide-btn.right {
  margin-left: 10px;
}

@media (max-width: 1024px) {
  .job-item { min-width: calc(100% / 4); }
}

@media (max-width: 768px) {
  .job-item { min-width: calc(100% / 3); }
}

@media (max-width: 480px) {
  .job-item { min-width: calc(100% / 2); }
}

/* Section Green - Accordion */
.green {
background:#d0e9e3;
margin-top:2%
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 50px 10%;
  max-width: 80% !important;
}

.left {
  flex: 1;
  max-width: 50%;
}

.left h2 {
  font-family: Forum;
  margin-bottom: 5%;
  color: #144443;
}

.text {
  font-size: 13px;
  line-height: 23px;
  margin-bottom: 30px;
  color: #144443;
  font-family: Poppins;
}

.accordion {
  flex: 1;
  max-width: 40%;
}

.accordion-item {
  border-bottom: 1px solid #3e6658;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 15px 0;
  font-weight: 500;
  font-size: 15px;
  color: #144443;
  font-family: Poppins;
}

.accordion-header span {
  font-size: 20px;
  font-weight: 700;
  color: #144443;
}

.accordion-content {
  display: none;
  padding: 10px 0 20px;
  font-size: 15px;
  color: #144443;
}

.accordion-content p {
  padding: 10px;
  background: #fbfbfb;
  border-radius: 18px;
  margin-top: -5%;
  color: #144443;
}

.accordion-item.active .accordion-content {
  display: block;
}

.accordion-item.active .accordion-header span {
  transform: rotate(45deg);
}

.tags-full {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 1%;
  padding: 4px 10%;
  font-family: Poppins;
  font-size: 13px;
  margin-bottom: 5%;
}

.tag {
  display: flex;
  align-items: center;
  background: #144443;
  border-radius: 25px;
  padding: 8px 18px;
  font-size: 12px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 4%;
}

.tag::before {
  content: "✓";
  margin-right: 8px;
  font-size: 14px;
  color: #fff;
}

/* Section Intro */
.section-intro {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin: 5rem auto;
  width: 75%;
}

.section-intro .bloc-image {
  flex: 1;
  background: url(https://www.manuel-baranger.fr/assets/img/garantie.jpg) center/cover;
  height: 350px;
  border-radius: 8px;
  background-size: cover;
}

.section-intro .bloc-texte {
  flex: 1;
}

.bloc-texte h2 {
  color: #144443;
}

.bloc-texte p {
  color: #144443;
}

/* Section Services */
.section-services {
  width: 90%;
  max-width: 1200px;
  margin: 7rem auto;
  text-align: center;
  display: block;
}

.section-services h2 {
    margin-bottom: 2%;
    display: inline-block;
    font-family: 'Forum';
}

.section-services p {
  color: #144443;
}

.grille-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.carte-service, .carte-cta {
  border: 1px solid #ddd;
  padding: 1rem;
  border-radius: 8px;
  background: #fff;
  text-align: left;
  font-size: 20px;
  font-family: Poppins;
  font-weight: 600;
  height: 220px;
}

.carte-service p {
  color: #fff;
  font-size: 13px;
  text-align: center;
  margin-top: 7%;
  font-weight: 400;
  letter-spacing: 0.8px;
  background: rgba(0, 0, 0, 0.31);
}

.carte-cta {
  background: #144443;
  color: #fff;
}

.carte-cta h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  color: #fff;
}

/* Métiers backgrounds */
.metier1 { background: url(https://www.manuel-baranger.fr/assets/img/vigne.jpg) center/cover; }
.metier2 { background: url(https://www.manuel-baranger.fr/assets/img/commercial.jpg) center/cover; }
.metier3 { background: url(https://www.manuel-baranger.fr/assets/img/sante.jpg) center/cover; }
.metier4 { background: url(https://www.manuel-baranger.fr/assets/img/supplychain.webp) center/cover; }
.metier5 { background: url(https://www.manuel-baranger.fr/assets/img/it.jpg) center/cover; }
.metier6 { background: url(https://www.manuel-baranger.fr/assets/img/mecanique.jfif) center/cover; }
.metier7 { background: url(https://www.manuel-baranger.fr/assets/img/tourisme.webp) center/cover; }

/* Section BTP Process */

.sec {
  height: auto;
  min-height: 50vh; 
  padding-bottom: 2rem;
}

.bloc0 {
  width: 25%;
}

.bloc0 h2 {
  font-size: 25px;
  color: #144443;
  padding: 10px;
}

.bloc0 img {
  width: 40%;
  margin: auto;
  display: block;
}

.tp-section-title0 {
  font-weight: 500;
  font-size: 35px;
  letter-spacing: 0.08px;
  color: #144443;
  line-height: 1.2;
  margin-bottom: 5%;
  text-transform: none;
  font-family: Forum;
}

.tp-section-title-pre {
  font-family: Poppins;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  background: #144443;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  margin-bottom: 10px;
}

.section {
  display: flex;
  gap: 0.5rem;
  padding: 2rem 0;
}

.bloc1, .bloc2, .bloc3, .bloc5, .bloc6, .bloc7, .bloc8 {
  position: relative;
  color: #fff;
  width: 12%;
  padding: 2.5rem 1rem 1.5rem 1rem;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

/* BTP Backgrounds */
.bloc1 { background: linear-gradient(rgba(131, 61, 41, 0.5), rgba(100, 61, 49, 0.83)), url(https://www.manuel-baranger.fr/assets/img/macon.jpg) center/cover; }
.bloc2 { background: linear-gradient(rgba(131, 61, 41, 0.5), rgba(100, 61, 49, 0.83)), url(https://www.manuel-baranger.fr/assets/img/peintre.avif) center/cover; }
.bloc3 { background: linear-gradient(rgba(131, 61, 41, 0.5), rgba(100, 61, 49, 0.83)), url(https://www.manuel-baranger.fr/assets/img/carreleur1.jpg) center/cover; }
.bloc5 { background: linear-gradient(rgba(131, 61, 41, 0.5), rgba(100, 61, 49, 0.83)), url(https://www.manuel-baranger.fr/assets/img/menuiserie.jpg) center/cover; }
.bloc6 { background: linear-gradient(rgba(131, 61, 41, 0.5), rgba(100, 61, 49, 0.83)), url(https://www.manuel-baranger.fr/assets/img/couvreur.jfif) center/cover; }
.bloc7 { background: linear-gradient(rgba(131, 61, 41, 0.5), rgba(100, 61, 49, 0.83)), url(https://www.manuel-baranger.fr/assets/img/electricien) center/cover; }
.bloc8 { background: linear-gradient(rgba(131, 61, 41, 0.5), rgba(100, 61, 49, 0.83)), url(https://www.manuel-baranger.fr/assets/img/plombier.webp) center/cover; }
.bloc8 { background: linear-gradient(rgba(131, 61, 41, 0.5), rgba(100, 61, 49, 0.83)), url(https://www.manuel-baranger.fr/assets/img/plombier.webp) center/cover; }
.bloc8 { background: linear-gradient(rgba(131, 61, 41, 0.5), rgba(100, 61, 49, 0.83)), url(https://www.manuel-baranger.fr/assets/img/plombier.webp) center/cover; }
.bloc8 { background: linear-gradient(rgba(131, 61, 41, 0.5), rgba(100, 61, 49, 0.83)), url(https://www.manuel-baranger.fr/assets/img/plombier.webp) center/cover; }

.etiquette {
  background: rgba(0, 0, 0, 0.18);
  border: 1.5px solid orange;
  border-radius: 28px;
  padding: 0.3rem 1.1rem;
  margin-bottom: 0.8rem;
  font-size: 12px;
  letter-spacing: 0.05em;
  font-weight: 300;
  display: inline-block;
  color: #feffff;
  font-family: Poppins;
}

.titre a {
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  line-height: 1.2;
  transition: color 0.2s;
  font-family: Poppins;
}

.titre a:hover {
  color: gold;
}

/* Contact Section */
.contact-section-3 {
  width: 95%;
  max-width: 1100px;
  margin: auto;
  font-family: Poppins;
}

.contact-box-style-3 h3 {
  font-family: 'Forum';
  color: #144443;
}

.contact-box-style-3 p {
  margin-bottom: 6%;
  color: #144443;
}

.formpons {
  padding: 10px;
}

.g5 {
  --bs-gutter-y: 0.5rem !important;
}

.col-sm-12 {
  margin-top: 2% !important;
}

.mi {
  width: 50% !important;
}

.choixdate h5 {
  font-size: 12px;
  color: #144443;
  margin-top: 3%;
  padding-left: 5px;
  font-family: 'Poppins';
}

/* Footer */
.bg-grey {
  background: #144443 !important;
}

.container-fluid {
  padding: 0 0;
  overflow: hidden;
}

footer {
  color: grey;
}

footer p, footer a {
  font-size: 12px;
  font-family: Poppins, sans-serif;
  color:#fff
}

footer h6 {
  font-family: Poppins, serif;
  margin-bottom: 40px;
  position: relative;
  color: #fff;font-size: 12px;
}

footer h6:after {
  position: absolute;
  content: "";
  background: grey;
  width: 12%;
  height: 1px;
  left: 0;
  bottom: -20px;
}

footer ul {
  padding-left: 0;
      max-width: 400px;
}

footer ul li {
  list-style: none;
  display: block;
  width:350px;
margin-bottom: 10px;
    margin-top: 10px;
}

footer ul li a {
  text-decoration: none;
  color: #fff;
  
}

.logo-footer {
  margin-bottom: 0;
}

.logo-footer p {
  margin-bottom: 40px;
}

.logo-part {
  border-right: 1px solid grey;
  height: 100%;
}

.logo-part span {
  width: 100%;
  display: block;
  padding: 10px;
  font-family: Poppins;
  font-weight: 200;
  text-align: left;
  color:#fff
}

img.w-50.logo-footer {
    max-width: 90px;
    margin: auto;
    display: block;
}

.btn-footer {

  text-decoration: none;
  border: 1px solid;
  border-radius: 43px;
  font-size: 13px;
  padding: 7px 30px;
  line-height: 47px;
}

.containerv2 {
    font-size: 12px;
    font-family: Poppins;
    text-align: center;
    padding-bottom: 30px;
    color: #fff;
}

.stx01 {
  margin-top: 3vh;
  margin-bottom: 3vh;
}

.px-014 {
  margin-top: 3vh;
  margin-bottom: 3vh;
}

/* Social Buttons */
#social-buttons2 {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0;
  z-index: 1000;
}

.social-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: #144443;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  transition: background 0.3s, transform 0.2s;
}

.social-btn:hover {
  background-color: #144443;
  transform: scale(1.1);
}

.social-btn i {
  font-size: 18px;
  color: #fff !important;
}

.fb, .linkedin, .twitter, .whatsapp, .fb1 {
  background-color: #144443;
}

/* Back to top */
.back-to-top-wrapper {
  position: fixed;
  right: 50px;
  bottom: 0;
  height: 44px;
  width: 44px;
  cursor: pointer;
  display: block;
  border-radius: 50%;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-out;
}

.back-to-top-btn {
  display: inline-block;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  background: #144443;
  box-shadow: 0 8px 16px rgba(3, 4, 28, 0.3);
  color: #fff;
  border-radius: 0;
  transition: all 0.3s ease-out;
}

/* Modal */
#confirmation-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: 700;
  cursor: pointer;
}

/* Utility classes */
.d-flex { display: flex !important; }
.d-block { display: block !important; }
.d-none { display: none !important; }
.justify-content-between { justify-content: space-between !important; }
.align-items-center { align-items: center !important; }
.text-center { text-align: center !important; }
.mb-70 { margin-bottom: 70px; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-50 { margin-bottom: 50px; }
.mt-4 { height: 100px; }
.py-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
.g-4 { --bs-gutter-x: 1.5rem; --bs-gutter-y: 1.5rem; }

/* Responsive Design */
@media (max-width: 1400px) {
  .choose-section {
    display: block !important;
    width: 95% !important;
    margin: auto;
    font-family: Poppins;
  }
  
  .container {
    flex-direction: column;
  }
  
  .accordion, .left {
    max-width: 100% !important;
    width: 100% !important;
  }
  
  .cta-container1 {
    margin-top: 30px;
    padding: 17px;
    max-width: 100%;
    margin-bottom: 3%;
  }
  
  .cta-container1 a {
    font-size: 17px;
  }
  
  .jobboard {
    width: 95% !important;
  }
  
  .mi {
    width: 100% !important;
  }
}

@media (min-width: 700px) and (max-width: 1399px) {
  .choose-section {
    display: block !important;
    width: 80% !important;
    margin: auto;
    font-family: Poppins;
  }
}

@media (max-width: 992px) {
  .section-intro, .choose-section {
    flex-direction: column;
    text-align: center;
  }
  
  .section-intro .bloc-texte, .text-col {
    text-align: center;
  }
  
  .features {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .col-lg-06 {
    width: 100%;
    padding: 15px;
  }
}

@media (min-width: 992px) {
  .col-lg-06 {
    flex: 0 0 auto;
    width: 25%;
    padding: 15px;
  }
}

@media (max-width: 790px) {
  .marge {
    height: 80px;
    display: block !important;
  }
  
  #social-buttons2 {
    position: fixed;
    top: auto;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    display: flex;
    flex-direction: row;
    gap: 0;
  }
  
  .social-btn {
    width: 65px;
    height: 50px;
  }
  
  .choose-section {
    margin-top: 15% !important;
  }
  
  .px-014 {
    margin-top: 5vh !important;
    margin-bottom: 15vh !important;
    width: 35%;
    margin: auto;
  }
  
  .logo-part span {
    text-align: center;
  }
  
  img.w-50.logo-footer {
    margin: auto;
  }
}

@media (max-width: 639px) {
  .section-services {
    width: 100%;
    padding: 10px;
    margin: 7rem auto;
    text-align: center;
    display: inline-block;
  }
  
  .bloc1, .bloc2, .bloc3, .bloc5, .bloc6, .bloc7, .bloc8 {
    width: 98% !important;
    margin-left: 5px;
    margin-bottom: 5px;
  }
  
  .bloc0 {
    width: 100% !important;
  }
  
  .section {
    display: block;
    gap: 0.5rem;
    padding: 2rem 0;
  }
  
  .bloc0 img {
    width: 11% !important;
    margin: auto;
    display: block;
    margin-bottom: 4% !important;
  }
  
  .sec {
    margin-bottom: 8%;
  }
}

@media (min-width: 640px) and (max-width: 989px) {
  .bloc1, .bloc2, .bloc3, .bloc5, .bloc6, .bloc7, .bloc8 {
    width: 49% !important;
    float: left;
    margin-left: 5px;
    margin-bottom: 5px;
  }
}

@media (min-width: 990px) and (max-width: 1700px) {
  .bloc1, .bloc2, .bloc3, .bloc5, .bloc6, .bloc7, .bloc8 {
    width: 32% !important;
    float: left;
    margin-left: 5px;
    margin-bottom: 5px;
  }
}

@media (max-width: 575px) {
  .back-to-top-wrapper {
    right: 20px;
    bottom: 20px;
  }
  
  .container {
    padding: 20px;
  }
  
  .choose-section {
    margin-top: 25%;
    padding-left: 5%;
    padding-right: 5%;
  }
  
  .col-xxl-5.col-lg-6 {
    display: none;
  }
  
  p {
    font-size: 14px;
  }
  
  .mi {
    width: 100% !important;
  }
}

@media (max-width: 500px) {
  .px-014 {
    width: 80%;
    display: block;
    margin: auto;
  }
  
  .stx01 {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  
  .stx01 .stxcontact, .stx01 .stxcontact2 {
    margin: 10px 0;
  }
  
  .stx01 .btn-footer {
    width: 100%;
    max-width: 200px;
    text-align: center;
  }
}

@media (min-width: 500px) and (max-width: 790px) {
  .stx01 {
    display: flex !important;
    justify-content: center !important;
    flex-wrap: nowrap;
    width: 100% !important;
  }
  
  .stx01 h6 {
    display: none;
  }
  
  .stx01 .stxcontact, .stx01 .stxcontact2 {
    margin: 0 10px;
    flex: 0 1 auto;
  }
  
  .stx01 .btn-footer {
    display: inline-block !important;
    width: auto;
  }
}

/* VPB Section */
.vc_row.wpb_row.vc_row-fluid.vc_custom_1736858955103 {
  background-size: cover;
  background-position: center center;
  background-image: url(https://www.manuel-baranger.fr/assets/images/team3.png);
  background-attachment: scroll;
  width: 100%;
  left: 0;
  min-width: 100%;
}

.wpb_animate_when_almost_visible.wpb_fadeInUp.fadeInUp.wpb_column.vc_column_container.vc_col-sm-12 {
  background-size: cover;
  background-position: center center;
  background-image: url(https://www.manuel-baranger.fr/assets/images/team3.png);
  background-attachment: scroll;
  width: 100%;
  left: 0;
  min-width: 100%;
}

.wpb_wrapper {
  padding-top: 2% !important;
  padding-bottom: 4% !important;
}

.wpb_wrapper h2 {
  color: #fff;
  text-align: center;
  letter-spacing: 0.5px;
  font-weight: 200;
  font-size: 40px;
  font-family:poppins
}

.vc_btn3-container.vc_btn3-center.vc_do_btn {
  text-align: center;
  font-size: 16px;
}

.vc_btn3-container.vc_btn3-center.vc_do_btn:hover {
  color: #144443;
}

a.vc_general.vc_btn3.vc_btn3-size-sm.vc_btn3-shape-round.vc_btn3-style-outline-custom {
  border-color: #fff;
  color: #fff;
  background-color: transparent;
  border-radius: 25px;
  padding: 12px;
  margin-bottom: 15px;
  width: 80%;
  max-width: 200px;
}

@media screen and (max-width: 990px) {
  .wpb_wrapper h2 {
    font-size: 20px;
    letter-spacing: 1px;
    margin-top: 20px;
  }
}

/* Font Awesome Icons */
.fa, .fas, .fab {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.fab {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa-phone-alt:before { content: "\f879"; }
.fa-envelope:before { content: "\f0e0"; }
.fa-facebook-f:before { content: "\f39e"; }
.fa-linkedin-in:before { content: "\f0e1"; }
.fa-twitter:before { content: "\f099"; }
.fa-whatsapp:before { content: "\f232"; }
.fa-location-dot:before { content: "\f3c5"; }
.fa-phone:before { content: "\f095"; }

/* Offcanvas */
.offcanvas__area {
  position: fixed;
  left: 0;
  top: 0;
  width: 400px;
  height: 100%;
  transform: translateX(calc(-100% - 80px));
  background: #fff;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  overflow-y: scroll;
}

.offcanvas__wrapper {
  position: relative;
  padding: 40px;
  z-index: 999;
  min-height: 100%;
}

.offcanvas__close {
  position: absolute;
  top: 35px;
  right: 30px;
}

.offcanvas__close-btn {
  position: relative;
  display: inline-block;
  font-size: 16px;
  height: 44px;
  width: 44px;
  line-height: 40px;
  border-radius: 10px;
  background-color: #f5f5f5;
  color: #67687A;
}

.offcanvas__contact h4 {
  font-size: 24px;
  color: #1b1d21;
  font-weight: 700;
  margin-bottom: 10px;
}

.offcanvas__contact-content {
  margin-bottom: 10px;
  display: flex;
}

.offcanvas__contact-content-icon i {
  color: #6ec1e4;
  margin-right: 10px;
}

.offcanvas__contact-content-content a {
  font-size: 16px;
  font-family: Montserrat;
}

.body-overlay {
  background-color: #144443;
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 99;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-out;
}

/* Transitions */
.transition-3, a, button, input, li, p, select, textarea {
  transition: all 0.3s ease-out;
}

.marge {
  display: none;
}

.mn1-logo a img {
    max-width: 240px;
    height: auto;
    border: none;
}

.contactbg {
  clear: both;
  padding-top: 3rem;
}

input[type="text"], input[type="email"], input[type="tel"], input[type="date"], textarea, select {
  height: 38px;
  border-radius: 13px;
  color: #144443;
  width: 100%;
  border: 1px solid #dedede;
  padding: 0.375rem 0.75rem;
  font-size: 14px;
  line-height: 1.5;
  background-color: #fff;
  font-family: Poppins, sans-serif;
}

input[type="date"] {
  padding-left: 37px;
  padding-right: 20px;
}

input::placeholder, textarea::placeholder {
  color: #999;
  font-size: 11px;
  font-family: Poppins, sans-serif;
}

textarea {
  height: 100px;
  resize: vertical;
  padding-top: 10px;
  font-family: Poppins, sans-serif;
  margin-top: 10px;
}

select {
  background-image:none);
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  padding-right: 2.25rem;
  font-family: Poppins, sans-serif;
}

        /* Styles de base importés de votre CSS */
               .bord {
            padding: 2rem 0;
        }

        .sec {
            height: auto;
            min-height: 50vh; 
            padding-bottom: 2rem;
        }

        .bloc0 {
            width: 25%;
            text-align: center;
            flex-shrink: 0;
        }

        .bloc0 h2 {
            font-size: 25px;
            color: #144443;
            padding: 10px;
        }

        .bloc0 img {
            width: 40%;
            margin: auto;
            display: block;
        }

        .tp-section-title0 {
            font-weight: 500;
            font-size: 35px;
            letter-spacing: 0.08px;
            color: #144443;
            line-height: 1.2;
            margin-bottom: 5%;
            text-transform: none;
            font-family: Forum;
        }

        .tp-section-title-pre {
            font-family: Poppins;
            font-weight: 300;
            font-size: 10px;
            letter-spacing: 4px;
            text-transform: uppercase;
            background: #144443;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
            margin-bottom: 10px;
        }

        .mb-70 {
            margin-bottom: 70px;
        }

        .text-center {
            text-align: center;
        }
/* Protection overflow horizontal */
html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

/* Structure principale */
.section {
    display: flex;
    gap: 0.5rem;
    padding: 2rem 0;
    align-items: flex-start;
    overflow-x: hidden;
}

.metiers-carousel-wrapper {
    flex: 1;
    position: relative;
    overflow: hidden;
    max-width: 100%;
    touch-action: pan-y;
}

.metiers-carousel-container {
    overflow: hidden;
    width: 100%;
}

.metiers-carousel {
    display: flex;
    gap: 1rem;
    transition: transform 0.5s ease-in-out;
    touch-action: pan-x;
}

/* Contrôles de navigation */
.carousel-controls {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.carousel-btn {
    background: #144443;
    border: none;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(251, 60, 6, 0.3);
}

.carousel-btn:hover {
    background: #e0350a;
    transform: scale(1.1);
}

.carousel-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: scale(1);
}

/* Fiches métiers */
.metier-card {
    position: relative; 
    color: #fff;
    width: 300px;
    min-height: 400px;
    padding: 2rem 1rem 1.5rem 1rem;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    overflow: hidden; 
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

/* Backgrounds des métiers BTP */
.metier-macon { background: linear-gradient(rgba(131, 61, 41, 0.5), rgba(100, 61, 49, 0.83)), url(https://www.manuel-baranger.fr/assets/img/macon.jpg) center/cover; }
.metier-peintre { background: linear-gradient(rgba(131, 61, 41, 0.5), rgba(100, 61, 49, 0.83)), url(https://www.manuel-baranger.fr/assets/img/peintre.avif) center/cover; }
.metier-carreleur { background: linear-gradient(rgba(131, 61, 41, 0.5), rgba(100, 61, 49, 0.83)), url(https://www.manuel-baranger.fr/assets/img/carreleur1.jpg) center/cover; }
.metier-menuisier { background: linear-gradient(rgba(131, 61, 41, 0.5), rgba(100, 61, 49, 0.83)), url(https://www.manuel-baranger.fr/assets/img/menuiserie.jpg) center/cover; }
.metier-couvreur { background: linear-gradient(rgba(131, 61, 41, 0.5), rgba(100, 61, 49, 0.83)), url(https://www.manuel-baranger.fr/assets/img/couvreur.jfif) center/cover; }
.metier-electricien { background: linear-gradient(rgba(131, 61, 41, 0.5), rgba(100, 61, 49, 0.83)), url(https://www.manuel-baranger.fr/assets/img/electricien) center/cover; }
.metier-plombier { background: linear-gradient(rgba(131, 61, 41, 0.5), rgba(100, 61, 49, 0.83)), url(https://www.manuel-baranger.fr/assets/img/plombier.webp) center/cover; }
.metier-chauffagiste { background: linear-gradient(rgba(131, 61, 41, 0.5), rgba(100, 61, 49, 0.83)), url(https://www.manuel-baranger.fr/assets/img/chauffagiste.png) center/cover; }
.metier-terrassier { background: linear-gradient(rgba(131, 61, 41, 0.5), rgba(100, 61, 49, 0.83)), url(https://www.manuel-baranger.fr/assets/img/terrassier.jpg) center/cover; }
.metier-charpentier { background: linear-gradient(rgba(131, 61, 41, 0.5), rgba(100, 61, 49, 0.83)), url(https://www.manuel-baranger.fr/assets/img/charpentier.jpg) center/cover; }
.metier-serrurier { background: linear-gradient(rgba(131, 61, 41, 0.5), rgba(100, 61, 49, 0.83)), url(https://www.manuel-baranger.fr/assets/img/serrurier.jpg) center/cover; }
.metier-vitrier { background: linear-gradient(rgba(131, 61, 41, 0.5), rgba(100, 61, 49, 0.83)), url(https://www.manuel-baranger.fr/assets/img/vitrier.webp) center/cover; }
.metier-canalisateur { background: linear-gradient(rgba(131, 61, 41, 0.5), rgba(100, 61, 49, 0.83)), url(https://www.manuel-baranger.fr/assets/img/canalisateur.jpg) center/cover; }
.metier-plaquiste { background: linear-gradient(rgba(131, 61, 41, 0.5), rgba(100, 61, 49, 0.83)), url(https://www.manuel-baranger.fr/assets/img/plaquiste.jpg) center/cover; }
.metier-coffreur { background: linear-gradient(rgba(131, 61, 41, 0.5), rgba(100, 61, 49, 0.83)), url(https://www.manuel-baranger.fr/assets/img/coffreur.jpg) center/cover; }
.metier-sollier { background: linear-gradient(rgba(131, 61, 41, 0.5), rgba(100, 61, 49, 0.83)), url(https://www.manuel-baranger.fr/assets/img/sollier.jpg) center/cover; }
.metier-geometre { background: linear-gradient(rgba(131, 61, 41, 0.5), rgba(100, 61, 49, 0.83)), url(https://www.manuel-baranger.fr/assets/img/geometre.jpg) center/cover; }
.metier-taille-pierre { background: linear-gradient(rgba(131, 61, 41, 0.5), rgba(100, 61, 49, 0.83)), url(https://www.manuel-baranger.fr/assets/img/tailleur-pierre.jpg) center/cover; }
.metier-conducteur-travaux { background: linear-gradient(rgba(131, 61, 41, 0.5), rgba(100, 61, 49, 0.83)), url(https://www.manuel-baranger.fr/assets/img/conducteur-travaux.webp) center/cover; }
.metier-chef-chantier { background: linear-gradient(rgba(131, 61, 41, 0.5), rgba(100, 61, 49, 0.83)), url(https://www.manuel-baranger.fr/assets/img/chef-chantier.jpg) center/cover; }
.metier-etancheur { background: linear-gradient(rgba(131, 61, 41, 0.5), rgba(100, 61, 49, 0.83)), url(https://www.manuel-baranger.fr/assets/img/etancheur.jpeg) center/cover; }

.etiquette {
    background: rgba(0, 0, 0, 0.18);
    border: 1.5px solid #cf775e;
    border-radius: 28px;
    padding: 0.3rem 1.1rem;
    margin-bottom: 0.8rem;
    font-size: 12px;
    letter-spacing: 0.05em;
    font-weight: 300;
    display: inline-block;
    color: #feffff;
    font-family: Poppins;
}

.titre a {
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    line-height: 1.2;
    transition: color 0.2s;
    font-family: Poppins;
}

.titre a:hover {
    color: gold;
}

/* Indicateurs de scroll */
.scroll-indicator {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(251, 60, 6, 0.8);
    color: white;
    padding: 10px;
    border-radius: 5px;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.scroll-indicator.left4 {
    left: 10px;
}

.scroll-indicator.right4 {
    right: 10px;
}

.metiers-carousel-wrapper:hover .scroll-indicator {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .section {
        flex-direction: column;
    }
    
    .bloc0 {
        width: 100%;
        margin-bottom: 2rem;
    }
    
    .metier-card {
        width: 280px;
    }
    
    .metiers-carousel-wrapper {
        max-width: calc(100vw - 2rem);
    }
    
    .scroll-indicator {
        width: 105px;
    }
}

@media (max-width: 992px) {
    .metier-card {
        width: 250px;
        min-height: 180px;
    }
    
    .carousel-controls {
        bottom: -50px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

@media (max-width: 639px) {
    .section {
        padding: 1rem 0;
    }
    
    .bloc0 {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .metiers-carousel {
        gap: 0.5rem;
    }
    
    .metier-card {
        width: 220px;
        min-height: 160px;
        padding: 1.5rem 1rem 1rem 1rem;
    }
    
    .carousel-controls {
        bottom: -40px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .tp-section-title0 {
        font-size: 24px;
    }
    
    .bloc0 img {
        width: 30%;
    }
    
    .metiers-carousel-wrapper {
        max-width: calc(100vw - 1rem);
    }
}

@media (min-width: 500px) and (max-width: 790px) {
    .metier-card {
        width: 240px;
    }
}
        /* Section FAQ */
        .faq-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            position: relative;
        }

        .faq-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), #144443);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 50px 20px;
        }

        .section-title {
            font-family: 'Forum', serif;
            font-size: 2.5rem;
            color: #144443;
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: var(--primary-color);
            margin: 20px auto;
            border-radius: 2px;
        }

        .faq {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            background: white;
            border-radius: 12px;
           
            margin-bottom: 20px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid var(--border-light);
        }

        .faq-item:hover {
            
            transform: translateY(-2px);
        }

        .faq-question {
            width: 100%;
    background: none;
    border: none;
    padding: 15px 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #144443;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
        }

        .faq-question::after {
            content: '+';
            font-size: 1.5rem;
            color: var(--primary-color);
            font-weight: 300;
            transition: all 0.3s ease;
            flex-shrink: 0;
            margin-left: 15px;
        }

        

        .faq-item.active .faq-question::after {
            content: '−';
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            background: rgba(248, 249, 250, 0.5);
			   
        }

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

        .faq-answer-content {
            padding: 0 30px 25px;
        }
		
		.faq-answer-content li{
			font-size: 13px;
		line-height: 23px;
		margin-left: 3%;}

        .faq-answer p {
            color: var(--text-light);
           font-size: 13px;
    line-height: 23px;
            margin: 0;
			padding: 15px;
        }

        .faq-answer strong {
            color: #144443;
        }

        /* Animation d'apparition */
        .faq-item {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.6s ease forwards;
        }

        .faq-item:nth-child(1) { animation-delay: 0.1s; }
        .faq-item:nth-child(2) { animation-delay: 0.2s; }
        .faq-item:nth-child(3) { animation-delay: 0.3s; }
        .faq-item:nth-child(4) { animation-delay: 0.4s; }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .faq-section {
                padding: 60px 0;
            }

            .section-title {
                font-size: 2rem;
                margin-bottom: 40px;
            }

            .faq-question {
                padding: 20px 20px;
                font-size: 12px;
            }

            .faq-answer-content {
                padding: 0 20px 20px;
            }

            .faq-answer p {
                font-size: 12px;
            }
        }