@charset "UTF-8";
/* COLORS */
:root {
  /* === MARQUE MAE (principales) === */
  --color-brand-blue-primary: #009BD8; /* Bleu MAE principal */
  --color-brand-blue-dark: #005783; /* Bleu MAE foncé */
  --color-brand-green-primary: #a0d800; /* Vert MAE vif */
  --color-brand-green-bright: #00b140; /* Vert MAE */
  /* === ORANGE NEO (palettes CTA) === */
  --color-neo-orange-primary: #F7A823; /* Orange néo clair */
  --color-neo-orange-primary-dark: #F49200; /* Orange néo clair foncé */
  --color-neo-orange-recharge: #E78311; /* Orange néo recharge */
  --color-neo-orange-primary-darkest: #E63312; /* Orange néo foncé */
  --color-neo-orange-gradient-light: #f4973a; /* Dégradé orange clair */
  --color-neo-orange-gradient-dark: #e53516; /* Dégradé orange foncé */
  /* === NEUTRES === */
  --color-text-primary: #333333; /* Texte principal */
  --color-text-dark: #333; /* Texte sombre */
  --color-bg-primary: #eeeeee; /* Fond principal */
  /* === ÉTATS & HOVER === */
  --color-hover-blue: #009BD8; /* Hover bleu (brand) */
  --color-hover-green: #a0d800; /* Hover vert (footer) */
  /* === OMBRES === */
  --shadow-keyword-hover: rgba(0, 155, 216, 0.79); /* Ombre keyword */
  --shadow-value-hover: rgba(0, 155, 216, 0.85); /* Ombre value box */
  --shadow-focus: rgba(0, 155, 216, 0.3); /* Focus input */
  /* === GRADIENTS (pour les CTA) === */
  --gradient-orange: linear-gradient(135deg, #f4973a, #e53516);
  --gradient-green: linear-gradient(135deg, #00b140 32%, #009bd8);
  --gradient-blue: linear-gradient(135deg, #009bd8, #005783);
}

/* MIXINS */
/* GLOBAL */
html {
  font-size: 10px;
}

body {
  background-color: #eeeeee;
}

h1, h2, h3, h4, h5, h6 {
  padding-bottom: 0;
  text-wrap: balance;
}

p, li, a {
  padding-bottom: 0;
  text-wrap: pretty;
}

/*HEADER*/
#logo-header-mae {
  margin-right: 0 !important;
}

#menu-menu-header li a:hover {
  opacity: 1 !important;
  color: #009BD8 !important;
}

.et_pb_menu .et_pb_menu__menu > nav > ul > li > ul {
  top: calc(100% + 1px);
  width: 280px !important;
  border-radius: 8px;
}

.et_pb_menu .et_pb_menu__menu > nav > ul > li > ul > li > a {
  color: #333333 !important;
  font-size: 1.6rem !important;
  line-height: 2rem;
  font-weight: 500 !important;
  width: 100% !important;
}

.et_pb_menu .et_pb_menu__menu > nav > ul > li > ul > li > a:hover {
  opacity: 1 !important;
  color: #009BD8 !important;
  background-color: transparent !important;
}

#mae-menu-desktop {
  transition: 0.3s;
}

.menu-enlarge {
  width: 97% !important;
  max-width: 98% !important;
  transition: 0.3s;
}

#logo-header-mae span img {
  height: calc(6vh + 1rem);
  max-height: calc(6vh + 1rem);
  transition: 0.3s;
}

.logo-enlarge {
  height: calc(4.5vh + 1rem) !important;
  max-height: calc(4.5vh + 1rem) !important;
  transition: 0.3s;
}

/* BURGER MENU */
@media screen and (max-width: 980px) {
  .et_mobile_menu {
    position: fixed !important;
    top: 12vh !important;
    left: 0 !important;
    z-index: 9999 !important;
    border-radius: 0.8rem !important;
  }
  .et_mobile_menu li a {
    padding-left: 0 !important;
    padding-right: 0 !important;
    font-size: 1.8rem !important;
  }
}
/*FOOTER*/
#mae-footer-menu ul li a:hover, #mae-footer-acces-rapide ul li a:hover {
  color: #a0d800 !important; /*VERT MAE*/
  opacity: 1 !important;
}

@media (max-width: 980px) {
  /*FOOTER Mobile menu*/
  #mae-footer-menu .et_pb_menu__menu,
  #mae-footer-acces-rapide .et_pb_menu__menu {
    display: flex !important;
  }
  #mae-footer-menu .et_mobile_nav_menu,
  #mae-footer-acces-rapide .et_mobile_nav_menu {
    display: none !important;
  }
  #mae-footer-menu .et_pb_menu__wrap,
  #mae-footer-acces-rapide .et_pb_menu__wrap {
    justify-content: flex-start;
  }
}
/* IMAGES */
.mae-img-container .et_pb_image,
.mae-img-container .et_pb_image_wrap {
  height: 100% !important;
  max-height: 100% !important;
}

.mae-img-container .et_pb_image_wrap img {
  width: auto;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

/* FORMS */
.mae-contact input[type=text]:focus,
.mae-contact select:focus,
.mae-contact textarea:focus,
.mae-contact input[type=text]:focus-visible,
.mae-contact select:focus-visible,
.mae-contact textarea:focus-visible {
  outline: none !important;
  border: 1px solid #009BD8 !important;
  box-shadow: 0 0 8px rgba(0, 155, 216, 0.3);
  transition: 0.3s;
}

/* CF7 FORMS */
/* LAYOUT COLONNES 50% */
.wpcf7-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .wpcf7-form .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.wpcf7-form .form-col-50 {
  margin-bottom: 0;
}

.wpcf7-form label + br {
  display: none !important;
}
.wpcf7-form .wpcf7-form-control-wrap {
  display: block !important;
  margin-top: 6px;
}

.wpcf7-form .form-group {
  margin-bottom: 1rem;
}
.wpcf7-form .form-group label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-brand-blue-dark);
  margin-bottom: 6px;
}
.wpcf7-form input[type=text],
.wpcf7-form input[type=email],
.wpcf7-form input[type=tel],
.wpcf7-form textarea,
.wpcf7-form select,
.wpcf7-form .form-control {
  width: 100%;
  padding: 16px 16px;
  border: 1px solid #ededed;
  border-radius: 6px;
  background-color: #ffffff;
  font-size: 15px;
  color: #111827;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}
.wpcf7-form input[type=text]::placeholder,
.wpcf7-form input[type=email]::placeholder,
.wpcf7-form input[type=tel]::placeholder,
.wpcf7-form textarea::placeholder,
.wpcf7-form select::placeholder,
.wpcf7-form .form-control::placeholder {
  color: #9ca3af;
}

.wpcf7-form select,
.wpcf7-form .form-control select {
  padding-right: 48px !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 16px center;
  background-repeat: no-repeat;
  background-size: 16px;
  cursor: pointer;
  appearance: none;
  /* Support IE/Edge */
}
.wpcf7-form select::-ms-expand,
.wpcf7-form .form-control select::-ms-expand {
  display: none;
}
.wpcf7-form input:focus,
.wpcf7-form textarea:focus,
.wpcf7-form select:focus,
.wpcf7-form .form-control:focus {
  outline: none;
  border-color: var(--color-brand-blue-primary);
  box-shadow: 0 0 0 3px rgba(0, 155, 216, 0.2);
}
.wpcf7-form .wpcf7-list-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-right: 12px;
  margin-bottom: 4px;
}
.wpcf7-form .wpcf7-list-item-label,
.wpcf7-form .wpcf7-quiz-label {
  font-size: 14px;
  color: var(--color-brand-blue-dark);
}
.wpcf7-form .wpcf7-quiz-label {
  display: block;
  margin-bottom: 6px;
  font-style: italic;
}
.wpcf7-form .wpcf7-not-valid {
  border-color: #ef4444;
}
.wpcf7-form .wpcf7-not-valid-tip {
  color: #ef4444;
  font-size: 12px;
  margin-top: 4px;
  display: block;
}
.wpcf7-form .form-submit input[type=submit] {
  background-color: var(--color-brand-green-primary);
  color: var(--color-brand-blue-dark);
  padding: 12px 28px;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.wpcf7-form .form-submit input[type=submit]:hover {
  background-color: #78a300;
}

/* TESTIMONIALS */
.dipl_testimonial_meta {
  border-top: 0 !important;
}

/* GRADIENTS */
.cta-home.deg-orange {
  background: linear-gradient(135deg, #f4973a, #e53516);
  background-size: 200% 200%;
  transition: background-position 0.5s ease;
}

.cta-home.deg-vert {
  background: linear-gradient(135deg, #00b140 32%, #009bd8);
  background-size: 200% 200%;
  transition: background-position 0.5s ease;
}

.cta-home.deg-bleu {
  background: linear-gradient(135deg, #009bd8, #005783);
  background-size: 200% 200%;
  transition: background-position 0.5s ease;
}

.cta-home.deg-orange:hover,
.cta-home.deg-vert:hover,
.cta-home.deg-bleu:hover {
  background-position: 100% 0;
  transition: 350ms ease-in-out;
}

/* REVEAL */
.reveal-container-rtl,
.reveal-container-ltr {
  overflow: hidden;
  transition: clip-path 0.5s ease-in-out;
}

.reveal-container-rtl {
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}

.reveal-container-rtl.active {
  clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
}

.reveal-container-ltr {
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
}

.reveal-container-ltr.active {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.ken-burns {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 8s ease;
  transform-origin: top center;
}

.reveal-container-rtl.active .ken-burns,
.reveal-container-ltr.active .ken-burns {
  transform: scale(1.05);
}

/* SVG */
.message-icon-svg {
  width: 100%;
  height: auto;
  max-width: 4vh;
  display: block;
  margin: 0;
  color: #333;
  background-color: transparent;
  shape-rendering: geometricPrecision;
}

.line {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: draw 1.5s ease-in-out infinite alternate;
}

@keyframes draw {
  0% {
    stroke-dashoffset: 100;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
/* DESKTOP RESPONSIVE */
@media screen and (min-width: 1440px) {
  #mae-menu-header nav ul {
    gap: 0.8rem;
  }
}
@media screen and (min-width: 1367px) {
  #mae-hero-section {
    transition: 0.75s;
  }
  .shrink {
    width: 92vw !important;
    max-width: 92vw !important;
    transition: 0.75s;
  }
}
@media screen and (min-width: 1280px) {
  #mae-btn-contact {
    padding-top: 1.2rem;
    padding-right: 3.2rem;
    padding-bottom: 1.2rem;
    padding-left: 2.4rem;
  }
}
/* TABLET RESPONSIVE */
@media screen and (min-width: 981px) and (max-width: 1366px) {
  #mae-hero-section > .et_pb_row {
    margin-top: 18vh !important;
  }
  #menu-menu-header li {
    padding: 0 0.5rem !important;
  }
  #menu-menu-header li a {
    font-size: calc(0.65vw + 0.5rem) !important;
  }
  #mae-btn-contact {
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-right: 2.4rem !important;
    padding-left: 1.2rem !important;
    font-size: calc(0.65vw + 0.5rem) !important;
  }
}
/* MOBILE RESPONSIVE */
@media (max-width: 980px) {
  #intro-section {
    flex-direction: column;
  }
  #intro-section .mae-img-container {
    order: 2;
  }
  .renovation-secteurs-rows {
    display: flex;
    flex-direction: column;
    width: 95% !important;
    max-width: 95% !important;
  }
  .renovation-secteurs-rows .mae-img-container {
    order: 1 !important;
    max-height: 35vh !important;
  }
  .mae-renovation-cee {
    display: flex;
    flex-direction: row !important;
  }
  .mae-renovation-cee > div:nth-of-type(1) {
    width: 25%;
    padding-top: 0;
    padding-bottom: 2rem;
    padding-left: 2rem;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .mae-renovation-cee div ul li {
    line-height: 2rem;
  }
  .renovation-secteurs-rows .mae-texts-container {
    order: 2 !important;
  }
}