/* Lugnier V1 — recode de la charte live (Make Clean / Bootstrap), sans Bootstrap */

:root {
  --black: #231f20;
  --yellow: #fff200;
  --yellow-alt: #f3e721;
  --orange: #f79f31;
  --text: #777;
  --heading: #212121;
  --soft: #f7f9fb;
  --input-bg: #2d404f;
  --border: #c4c3c0;
  --blue: #0091ca;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  color: var(--text);
  background: #fff;
  line-height: 1.5;
}

img { max-width: 100%; height: auto; border: 0; }

a { text-decoration: none; outline: none; color: inherit; }

p { line-height: 24px; }

ul { margin: 0; padding: 0; }

.container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ---------- Header ---------- */
.header-section { overflow: visible; background: #fff; }

.logo-block {
  padding: 26px 0 33px;
}

.logo-block .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-block .logo img {
  display: block;
  max-height: 90px;
}

.call-us {
  display: flex;
  align-items: center;
  border-right: 1px solid #e5e5e5;
  padding-right: 28px;
}

.call-us img {
  margin-right: 13px;
}

.call-us p {
  font-family: "Cabin", sans-serif;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--text);
  margin: 0;
}

.call-us p span {
  display: block;
  font-size: 18px;
  font-weight: 900;
  color: var(--heading);
}

.call-us a { color: var(--heading); }

.menu-block {
  background-color: var(--black);
  min-height: 60px;
}

.menu-block .container {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}

.menu-block nav {
  display: flex;
  align-items: center;
  flex: 1;
}

.nav-logo-mobile { display: none; }

.menu-block .nav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 20px 0;
}

.menu-block .nav li a {
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
  padding: 0 25px;
  border-right: 1px solid var(--border);
  border-left: 1px solid var(--border);
  display: block;
}

.menu-block .nav li:first-child a {
  padding-left: 0;
  border-left: none;
}

.menu-block .nav li a:hover,
.menu-block .nav li.active a {
  color: var(--yellow);
}

.quote {
  display: flex;
  align-items: center;
}

.quote a {
  background-color: var(--yellow);
  background-image: url("../images/free-quatoe-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: #000;
  font-weight: bold;
  text-transform: uppercase;
  display: inline-block;
  padding: 20px 35px;
  margin-top: -10px;
}

.quote a:hover { background-color: var(--yellow-alt); }

/* ---------- Slider + form ---------- */
.slider-section { position: relative; }

.slider {
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.slider .slide {
  display: none;
}

.slider .slide.active { display: block; }

.slider .slide img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
}

.slider-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  z-index: 12;
  text-align: center;
}

.slider-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 0;
  margin: 0 4px;
  background: #fff;
  opacity: 0.5;
  cursor: pointer;
  padding: 0;
}

.slider-dots button.active { opacity: 1; background: var(--yellow); }

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 12;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  text-shadow: 0 0 6px #000;
}

.slider-nav.prev { left: 12px; }
.slider-nav.next { right: 12px; }

.slider-form-wrap {
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  z-index: 11;
  pointer-events: none;
}

.slider-form-wrap .container { pointer-events: none; }

.contact-form {
  pointer-events: auto;
  background-color: var(--black);
  width: 100%;
  max-width: 360px;
  box-shadow: inset 0 0 0 3px var(--border);
  padding-bottom: 20px;
}

.contact-form h3 {
  background-color: var(--yellow);
  color: #000;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  font-family: "Cabin", sans-serif;
  margin: 0 0 20px;
  padding: 19px 0;
}

.contact-form .fields {
  padding: 0 25px;
}

.contact-form input[type="text"],
.contact-form textarea {
  display: block;
  width: 100%;
  margin-bottom: 3px;
  background-color: var(--input-bg);
  border: 3px solid var(--border);
  padding: 8px 20px;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
}

.contact-form textarea { min-height: 80px; resize: vertical; }

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #fff; opacity: 1; }

.contact-form .row-2 {
  display: flex;
  gap: 4%;
}

.contact-form .row-2 input { width: 48%; }

#captchazone {
  margin-top: 8px;
  color: #fff;
}

#captchazone label {
  display: block;
  margin-bottom: 4px;
  color: #fff;
}

.contact-form input[type="submit"] {
  display: block;
  background-color: #fff;
  border: 3px solid #d5dbe0;
  padding: 8px 20px;
  font-weight: bold;
  margin: 17px auto 0;
  cursor: pointer;
  font-family: inherit;
  text-transform: uppercase;
}

.contact-form input[type="submit"]:hover { background: var(--yellow); }

.alert-msg { color: #fff; padding: 0 25px; min-height: 1em; }

/* ---------- Services home ---------- */
.ow-section { padding: 84px 0; }

.service-section {
  background: linear-gradient(to bottom, #fff 85%, rgba(144, 202, 249, 0.1) 100%);
}

.section-header { margin: 0 0 60px; }

.section-header h3 {
  margin: 0;
  line-height: 28px;
  font-size: 22px;
  font-weight: bold;
  text-transform: uppercase;
  font-family: "Cabin", sans-serif;
  color: var(--heading);
}

.services-grid {
  display: flex;
  gap: 20px;
}

.service-box {
  flex: 1;
  text-align: center;
  padding: 3px 20px;
}

.service-box > img {
  position: relative;
  z-index: 2;
  width: 140px;
  height: auto;
}

.service-box-inner {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  margin-top: -70px;
  padding: 90px 20px 30px;
  background: #fff;
}

.service-box-inner h4 {
  margin: 0 0 36px;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--heading);
}

.service-box-inner a {
  display: inline-block;
  background-color: var(--black);
  color: #fff;
  padding: 7px 20px;
  letter-spacing: 1px;
  font-size: 12px;
  text-transform: uppercase;
}

.service-box-inner a:hover {
  background-color: var(--yellow);
  color: #000;
}

/* ---------- Welcome ---------- */
.welcome-section .container {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

.welcome-photo { flex: 0 0 33%; }

.welcome-content { flex: 1; margin-top: 50px; }

.welcome-content-box {
  display: flex;
  gap: 20px;
  width: 100%;
  margin-top: 20px;
}

.welcome-box { flex: 1; }

.welcome-box h4 {
  display: block;
  margin-top: 22px;
  margin-bottom: 15px;
  font-size: 15px;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--heading);
}

.welcome-box p { color: var(--text); }

/* ---------- Statistics ---------- */
.statistics-section {
  background-color: var(--black);
  background-image: url("../images/statistics/statistics-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 75px 0 87px;
}

.statistics-section .container {
  display: flex;
  text-align: left;
}

.statistics-box {
  flex: 1;
  color: #fff;
}

.statistics-box h3 {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 16px;
}

.statistics-box h3 img { width: 48px; }

.statistics-box .count {
  font-size: 30px;
  font-weight: bold;
  color: #fff;
  font-family: "Cabin", sans-serif;
}

.statistics-box .brush {
  display: block;
  margin: 10px 0;
}

.statistics-box h4 {
  margin: 0;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
  font-family: "Cabin", sans-serif;
}

/* ---------- Call out ---------- */
.call-out-section {
  padding: 67px 0;
  text-align: center;
  background-image: url("../images/call-out.jpg");
  background-size: cover;
  background-position: center;
}

.call-out-section .section-header {
  color: var(--black);
  margin-bottom: 30px;
}

.call-out-section h3 {
  font-size: 25px;
  color: var(--black);
  font-family: "Cabin", sans-serif;
  font-weight: bold;
  margin: 0;
}

.call-out-section p {
  padding: 0 12%;
  margin-bottom: 0;
  font-size: 16px;
  color: var(--text);
}

/* ---------- Footer (identique toutes pages) ---------- */
.footer-section {
  background-color: var(--black);
  background-image: url("../images/footer/footer-bg.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding-top: 30px;
}

.footer-heading {
  text-align: center;
  margin-bottom: 48px;
}

.footer-heading h5 {
  color: #fff;
  font-family: "Cabin", sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  margin: 25px 0 0;
}

.footer-heading h3 {
  font-size: 20px;
  margin: 20px 0 0;
  text-transform: uppercase;
  color: #fff;
}

.footer-heading h3 a { color: var(--yellow); }

.footer-cols {
  display: flex;
  gap: 40px;
}

.footer-cols .widget { flex: 1; }

.widget > h3 {
  font-family: "Cabin", sans-serif;
  color: #fff;
  border-bottom: 1px solid #fff;
  display: inline-block;
  text-transform: uppercase;
  font-size: 15px;
  padding-bottom: 9px;
  margin: 0 0 17px;
}

.widget ul { list-style: none; }

.widget ul li { margin: 7px 0; }

.widget ul li a { color: #fff; }

.widget ul li a:hover { color: var(--yellow); }

.footer-bottom {
  width: 100%;
  border-top: 1px solid #fff;
  margin-top: 64px;
  padding: 19px 0;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: #fff;
  font-family: "Cabin", sans-serif;
}

/* ---------- Inner service pages ---------- */
.service-section.services-style2 {
  background: #fff;
  padding: 60px 0 80px;
}

.page-layout {
  display: flex;
  gap: 30px;
}

.content-sidebar { flex: 0 0 25%; }

.services-content-area { flex: 1; }

.service-category-widget {
  background-color: var(--soft);
  margin-bottom: 50px;
}

.service-category-widget h3 {
  background-color: var(--yellow);
  padding: 20px;
  text-transform: uppercase;
  margin: 0;
  font-family: "Cabin", sans-serif;
  font-size: 16px;
  font-weight: bold;
  color: var(--heading);
}

.service-category-widget ul {
  list-style: none;
  border-bottom: 4px solid var(--blue);
  border-left: 1px solid #e8f0f7;
  border-right: 1px solid #e8f0f7;
}

.service-category-widget ul li {
  padding: 12px 28px;
  border-bottom: 1px solid #e8f0f7;
  color: var(--text);
}

.service-category-widget ul li::before {
  content: "→";
  color: var(--blue);
  margin-right: 12px;
}

.address-widget h3 {
  color: #000;
  font-size: 15px;
  font-weight: bold;
  font-family: "Cabin", sans-serif;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.services-content-area .section-header { margin-bottom: 30px; }

.services-content-area > img { margin-bottom: 30px; width: 100%; }

.list-split {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
}

.list-split ul {
  flex: 1;
  list-style: disc;
  padding-left: 20px;
}

.list-split li,
.pair-block ul li {
  margin: 6px 0;
  color: var(--text);
}

.pair-row {
  display: flex;
  gap: 30px;
}

.pair-block { flex: 1; }

.pair-block img { width: 100%; margin-bottom: 16px; }

.pair-block h4 {
  font-family: "Cabin", sans-serif;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--heading);
  margin: 0 0 12px;
}

.pair-block ul { list-style: disc; padding-left: 20px; }

.pair-block p { color: var(--text); }

/* ---------- Contact / devis ---------- */
.contact-detail { background-color: #f9fafb; }

.contact-detail .container {
  display: flex;
}

.contact-detail-box {
  flex: 1;
  padding: 49px 0;
  text-align: center;
  border-bottom: 3px solid #f9fafb;
  min-height: 220px;
}

.contact-detail-box:hover {
  background-color: #fff;
  border-bottom: 3px solid var(--yellow);
}

.contact-detail-box h3 {
  font-family: "Cabin", sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--heading);
  padding-bottom: 22px;
  margin: 16px 0 21px;
  background-image: linear-gradient(var(--yellow), var(--yellow));
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 60px 3px;
}

.contact-detail-box p { margin: 0; }

.contact-detail-box a { color: var(--text); }

.contact-form-section { padding: 60px 0; }

.contact-form-section h3 {
  font-family: "Cabin", sans-serif;
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  color: var(--heading);
  margin: 0 0 12px;
}

.contact-form-section > .container > p,
.contact-form-section .intro {
  text-align: center;
  font-size: 15px;
  margin-bottom: 20px;
}

.main-contact-form {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 0 20px;
}

.main-contact-form .field {
  width: calc(50% - 10px);
  margin-bottom: 10px;
}

.main-contact-form .field.full { width: 100%; }

.main-contact-form label {
  display: block;
  width: 100%;
  color: #333;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.main-contact-form label span { color: var(--yellow); }

.main-contact-form input[type="text"],
.main-contact-form textarea {
  width: 100%;
  border: 1px solid #eee;
  color: #333;
  font-family: inherit;
  font-size: 12px;
  padding: 7px 20px;
}

.main-contact-form input[type="text"] { height: 41px; }

.main-contact-form textarea { height: 121px; resize: vertical; }

.main-contact-form .btn {
  background-color: transparent;
  border: 2px solid var(--black);
  display: inline-block;
  width: auto;
  margin-top: 15px;
  font-weight: bold;
  font-size: 14px;
  text-transform: uppercase;
  padding: 8px 20px;
  cursor: pointer;
  font-family: inherit;
}

.main-contact-form .btn:hover {
  border-color: var(--orange);
  background: var(--yellow);
}

.main-contact-form #captchazone label { color: #333; }

.map-section iframe {
  display: block;
  width: 100%;
  height: 450px;
  border: 0;
}

/* Merci */
.merci-message {
  padding: 40px 0 60px;
  text-align: center;
}

.merci-message h3 {
  font-family: "Cabin", sans-serif;
  font-size: 22px;
  font-weight: bold;
  color: var(--heading);
  white-space: pre-line;
}

/* Desktop-first : le live n’est pas mobile-first. On ne fait qu’éviter le débordement. */
@media (max-width: 900px) {
  .slider .slide img { height: 360px; }
  .slider-form-wrap { position: static; }
  .contact-form { max-width: none; margin: 0; }
  .services-grid,
  .welcome-section .container,
  .welcome-content-box,
  .statistics-section .container,
  .page-layout,
  .list-split,
  .pair-row,
  .footer-cols,
  .contact-detail .container {
    flex-direction: column;
  }
  .content-sidebar { flex: none; }
  .main-contact-form .field { width: 100%; }
  .call-out-section p { padding: 0; }
  .nav-logo-mobile { display: none; }
}
