:root {
  --primary-color: #e42213;
}

#header {
    transition: all 0.3s ease;
}

.generalPadding {
	padding: 60px 0px 60px 0px;
}

.flex-div {
  display: flex; 
  justify-content: space-between;
  gap: 20px;
}

.flex-div > div {
  flex: 1; 
}

@media (max-width: 767px) {
    .generalPadding {
        padding: 20px 0px 20px 0px;
    }

    .flex-div {
        flex-direction: column;
    }
}

.services-nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 10px 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  font-family: 'Helvetica Neue', sans-serif;
}
.services-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.services-nav li a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 20px;
  background: #f2f2f2;
  text-decoration: none;
  color: #333;
  font-size: 0.95rem;
  transition: all 0.2s ease-in-out;
}
.services-nav li a:hover {
  background: #c0392b;
  color: #fff;
}
.services-nav li a i {
  font-size: 1rem;
}
@media screen and (max-width: 600px) {
  .services-nav ul {
    gap: 10px;
  }
  .services-nav li a {
    font-size: 0.85rem;
    padding: 6px 10px;
  }
}

/* BUTTONS */

.btncom1 {
    background: var(--primary-color);
    color:white;
    padding: 0px 30px !important;
    line-height: 30px;
    height: 43px;
    margin: 10px 0px;
    font-size: 20px;
    text-transform: capitalize;
    box-shadow: 0 3px 6px 0px #73181747;
    border: 1px solid var(--primary-color);
}

.btncom1:hover {
	border: 1px solid var(--primary-color);
}

/* END BUTTONS */

/* Local Data & Climate Alert */

.local-data h2 {
  text-align: center;
  font-size: 1.75rem;
  margin-bottom: 40px;
  color: #1a1a1a;
  font-weight: 700;
}

.local-data .row {
  display: grid;
	grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.local-data-item {
  background: #ffffff;
	text-align: center;
  border-radius: 12px;
  padding: 20px 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.local-data-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.local-data-item i {
 color: var(--primary-color); 
	margin-bottom: 10px;
}

.local-data-item p {
  margin: 0;
  font-size: 0.95rem;
  color: #444;
}

.local-data-item p strong {
  display: block;
  font-size: 1.3rem;
  color: #000;
  margin-bottom: 4px;
}

/* === Responsive === */
@media (max-width: 991px) {
  .local-data-item {
    flex: 1 1 calc(50% - 1rem);
    max-width: calc(50% - 1rem);
  }
}


@media (max-width: 767px){

    .climate-alert {
        margin-bottom: 2rem ;
    }
    
    .climate-alert ul {
        columns: 2;
    }

    .local-data .container, .climate-alert .container {
        max-width: 1200px;
        margin: auto;
    }

    .climate-alert ul {
        columns: 1;
    }
}

@media (max-width: 575px) {
  .local-data-item {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .local-data h3 {
    font-size: 1.5rem;
  }
  
  .local-data-item i {
    font-size: 1.5rem;
  }
}

/* ---------- END LOCAL DATA -------------- */

/* FAQ */

.faq-container {
  max-width: 800px;
  margin: 30px auto;
  padding: 20px;
  background: #ffffff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.faq-header {
  text-align: center;
  margin-bottom: 30px;
}

.faq-header h2 {
  font-size: 2rem;
  margin: 0;
  color: var(--primary-color);
}

.faq-item {
  border-bottom: 1px solid #e0e0e0;
  padding: 15px 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  display: none;
  margin-top: 10px;
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: transform 0.3s;
}

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

.faq-item.active .faq-answer {
  display: block;
}

/* ---------- END FAQ -------------- */

/* STEP SLIDER */

.stepbox {
    text-align: center;
    position: relative;
}
.stepbox h3 {
    font-size: 32px;
    font-weight: 600;
    color: var(--primary-color);
}
.stepbox .btn {
    line-height: 40px;
}

.stepslider .owl-buttons .owl-prev {
    position: absolute;
    left: 0;
    background: #fff !important;
    color: #333 !important;
    width: 40px;
    height: 40px;
    box-shadow: 0 0 4px 0 #333;
    font-size: 21px !important;
}
.stepslider .owl-buttons .owl-next {
	
    position: absolute;
    right: 0;
    background: #fff !important;
    color: #333 !important;
    width: 40px;
    height: 40px;
    box-shadow: 0 0 4px 0 #333;
    font-size: 21px !important
}
.stepslider .owl-buttons {
    position: absolute;
    bottom: 15px;
    width: 100%;
}

.stepbox p {
    font-size: 22px;
}

.stepbox .divicon {
    padding: 20px 0;
    position: relative;
}

.divicon:after {
    height: 1px;
    width: 100%;
    content: "";
    display: inline-block;
    background: var(--primary-color);
    position: absolute;
    left: 0;
    top: 50%;
    z-index: 1;
}

/* ---------- END STEP SLIDER -------------- */

/* TEMPLATE CUSTOM */

.page-template-page-modele-couverture .bafg-twentytwenty-wrapper {
  max-width: 560px;
  width: 100%;
  margin: auto;
  padding-bottom: 60px ;
}

.page-template-page-modele-couverture #header {
  background-color: var(--primary-color);
}

.page-template-page-modele-couverture .banner { 
    margin-top: 150px;
}
.page-template-page-modele-couverture #header.scrolled {
  background-color: white;
}
@media (max-width: 767px) {
  .page-template-page-modele-couverture .bafg-twentytwenty-wrapper {
    padding-bottom: 20px ;
  }
}

/* ---------- END TEMPLATE CUSTOM -------------- */

body {
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
  margin: 0;
}

.eco-renov-container {
  background: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  max-width: 900px;
  margin: auto;
  color: #222;
}

.eco-renov-subtitle {
  color: #007bc1;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 10px;
}

.eco-renov-title {
  font-size: 28px;
  font-weight: bold;
  color: #003366;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.eco-renov-title::after {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  background: #ffa88c;
  margin-top: 8px;
}

.eco-renov-paragraph {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.eco-renov-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.btn-contact, .btn-phone {
  padding: 12px 20px;
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn-contact:hover, .btn-phone:hover {
  background-color: #e64c28;
}