@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  box-sizing: border-box;
}
body {
  font-family: 'Montserrat', sans-serif;
  color: #0c0c0c;
  background-color: #ffffff;
  overflow-x: hidden;
}

.layout_padding {
  padding: 70px 0;
}

.layout_padding2 {
  padding: 75px 0;
}

.layout_padding2-top {
  padding-top: 75px;
}

.layout_padding2-bottom {
  padding-bottom: 75px;
}

.layout_padding-top {
  padding-top: 90px;
}

.layout_padding-bottom {
  padding-bottom: 90px;
}

h1,
h2 {
  font-family: 'Playfair Display', serif;
}

.heading_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.heading_container h2 {
    position: relative;
    margin-bottom: 0;
    font-size: 3.5rem;
    font-weight: bold;
}

.heading_container h2::after {
    content: "";
    display: block;
    width: 70px;
    height: 5px;
    background: #085f6a;
    margin: 10px auto 10px;
}

.heading_container h2 span {
  color: #085f6a;
}

.heading_container p {
  margin-top: 10px;
  margin-bottom: 0;
}

.heading_container.heading_center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a:hover,
a:focus {
  color: initial;
}

.btn,
.btn:focus {
  outline: none !important;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/*header section*/
.hero_area {
  position: relative;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.sub_page .hero_area {
  min-height: auto;
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
}

.header_section {
    padding: 15px 0;
}

.header_section .container-fluid {
  padding-right: 25px;
  padding-left: 25px;
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
}

.navbar-brand span {
  font-weight: bold;
  font-size: 32px;
  color: #000000;
}

.custom_nav-container {
  padding: 0;
}

.custom_nav-container .navbar-nav {
  margin-left: auto;
}

.custom_nav-container .navbar-nav .nav-item .nav-link {
    padding: 5px 20px;
    color: #131313;
    text-align: center;
    text-transform: uppercase;
    border-radius: 5px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    font-weight: 700;
}

.custom_nav-container .navbar-nav .nav-item .nav-link svg {
  width: 17px;
  height: auto;
  fill: #000000;
  margin-bottom: 2px;
}

.custom_nav-container .navbar-nav .nav-item:hover .nav-link, .custom_nav-container .navbar-nav .nav-item.active .nav-link {
  color: #085f6a;
}

.custom_nav-container .navbar-nav .nav-item:hover .nav-link svg, .custom_nav-container .navbar-nav .nav-item.active .nav-link svg {
  fill: #085f6a;
}

.custom_nav-container .nav_search-btn {
  width: 35px;
  height: 35px;
  padding: 0;
  border: none;
  color: #000000;
}

.custom_nav-container .nav_search-btn:hover {
  color: #085f6a;
}

.custom_nav-container .navbar-toggler {
  outline: none;
}

.custom_nav-container .navbar-toggler {
  padding: 0;
  width: 37px;
  height: 42px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span {
  display: block;
  width: 35px;
  height: 4px;
  background-color: #000000;
  margin: 7px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  border-radius: 5px;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span::before, .custom_nav-container .navbar-toggler span::after {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #000000;
  top: -10px;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span::after {
  top: 10px;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] {
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span::before, .custom_nav-container .navbar-toggler[aria-expanded="true"] span::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  top: 0;
}

/*end header section*/
/* slider section */
.slider_section {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 90px 0 75px 0;
}

.slider_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.slider_section #customCarousel1 {
  width: 100%;
  position: unset;
}

.slider_section .detail-box h1 {
    font-size: 4.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #002c3e;
    line-height: 70px;
}

.slider_section .detail-box h1 span {
  color: #085f6a;
}

.slider_section .detail-box p {
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 1.5rem;
}

.slider_section .detail-box a {
    display: inline-block;
    padding: 12px 45px;
    background-color: #085f6a;
    border: 1px solid #085f6a;
    color: #ffffff;
    border-radius: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    margin-top: 10px;
    font-weight: 700;
}

.slider_section .detail-box a:hover {
  background-color: transparent;
  color: #085f6a;
}

.slider_section .img-box img {
  width: 100%;
}

.slider_section .carousel-indicators {
  position: unset;
  margin: 0;
  margin-top: 45px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.slider_section .carousel-indicators li {
  background-color: #ffffff;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  opacity: 1;
}

.slider_section .carousel-indicators li.active {
  width: 20px;
  height: 20px;
  background-color: #085f6a;
}

.slider_bg_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.slider_bg_box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top right;
     object-position: top right;
}

.product_section .heading_container {
  margin-bottom: 20px;
}

.product_section .box {
  position: relative;
  margin-top: 25px;
  padding: 0;
  /* important pour que l’image couvre bien */
  background-color: #f7f8f9;
  -webkit-transition: all .3s;
  transition: all .3s;
  overflow: hidden;
  box-shadow: 5px 5px 5px -5px rgba(0, 0, 0, .2);
  border: solid #fff 10px;
}

/* IMAGE BOX */
.product_section .box .img-box {
  width: 100%;
  height: 215px;
  overflow: hidden;
}

/* IMAGE EN MODE COVER */
.product_section .box .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* 🔥 clé du cover */
  -webkit-transition: all .3s;
  transition: all .3s;
  display: block;
}

.product_section .box .detail-box {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.product_section .box .detail-box h5 {
  font-size: 18px;
  margin-top: 10px;
}

.product_section .box .detail-box h6 {
  margin-top: 10px;
  color: #002c3e;
  font-weight: 600;
}

.product_section .box:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.product_section .box:hover .option_container {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.arrival_section {
    background-color: #d4ced0;
}
.product_section .option_container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(255, 255, 255, 0.6);
  z-index: 3;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .2s;
  transition: all .2s;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}

.product_section .options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.product_section .options a {
  display: inline-block;
  padding: 8px 15px;
  border-radius: 30px;
  width: 165px;
  text-align: center;
  -webkit-transition: all .3s;
  transition: all .3s;
  margin: 5px 0;
}

.product_section .options .option1 {
  background-color: #085f6a;
  border: 1px solid #085f6a;
  color: #ffffff;
}

.product_section .options .option1:hover {
  background-color: transparent;
  color: #085f6a;
}

.product_section .options .option2 {
  background-color: #000000;
  border: 1px solid #000000;
  color: #ffffff;
}

.product_section .options .option2:hover {
  background-color: transparent;
  color: #000000;
}

.product_section .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 45px;
}

.product_section .btn-box a {
  display: inline-block;
  padding: 10px 40px;
  background-color: #085f6a;
  border: 1px solid #085f6a;
  color: #ffffff;
  border-radius: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.product_section .btn-box a:hover {
  background-color: transparent;
  color: #085f6a;
}




.arrival_section .heading_container {
  color: #002c3e;
  margin-bottom: 10px;
}

.arrival_section .box {
  padding: 120px 45px;
  position: relative;
}

.arrival_section .arrival_bg_box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.arrival_section .arrival_bg_box img {
    width: 50%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top left;
    object-position: top left;
}

.arrival_section a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #085f6a;
  border: 1px solid #085f6a;
  color: #ffffff;
  border-radius: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.arrival_section a:hover {
  background-color: transparent;
  color: #085f6a;
}

.why_section .box {
    text-align: center;
    margin-top: 45px;
    background-color: #002c3e;
    padding: 45px 50px;
    border-radius: 5px;
    color: #ffffff;
}

.detail-box h5 {
    font-size: 21px;
    font-weight: 700;
}

.remove_line_bt h2::after {
    display: none;
}

.why_section .box .img-box {
  margin-bottom: 15px;
}

.why_section .box .img-box svg {
  width: 55px;
  height: auto;
  fill: #ffffff;
}

.subscribe_section {
  text-align: center;
}

.subscribe_section .box {
  background-color: #d4ced0;
  padding: 75px 45px;
}

.subscribe_section .subscribe_form .heading_container {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #002c3e;
}

.subscribe_section .subscribe_form .heading_container h2 {
  padding: 0 25px;
}

.subscribe_section .subscribe_form form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.subscribe_section .subscribe_form form input {
    width: 100%;
    height: 60px;
    border: none;
    border-radius: 90px;
    outline: none;
    padding: 5px 25px;
    background-color: #ffffff;
    margin-top: 15px;
    text-align: left;
}

.subscribe_section .subscribe_form form input::-webkit-input-placeholder {
  color: #171620;
}

.subscribe_section .subscribe_form form input:-ms-input-placeholder {
  color: #171620;
}

.subscribe_section .subscribe_form form input::-ms-input-placeholder {
  color: #171620;
}

.subscribe_section .subscribe_form form input::placeholder {
  color: #171620;
}

.subscribe_section .subscribe_form form button {
  display: inline-block;
  padding: 10px 45px;
  background-color: #085f6a;
  border: 1px solid #085f6a;
  color: #ffffff;
  border-radius: 35px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-transform: uppercase;
  margin-top: 35px;
  font-weight: 600;
  width: 100%;
  max-width: 285px;
}

.subscribe_section .subscribe_form form button:hover {
  background-color: transparent;
  color: #085f6a;
}

.client_section .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  margin-top: 55px;
}

.client_section .box .img_container {
    width: auto;
    height: auto;
    border-radius: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: transparent;
}

.client_section .box .img_container .img-box {
    width: auto;
    height: auto;
    border-radius: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #ffffff;
    margin-right: -1px;
}

.client_section .box .img_container .img-box .img_box-inner {
  width: 150px;
  height: 150px;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}

.client_section .box .img_container .img-box .img_box-inner img {
  width: 100%;
}

.client_section .box .detail-box {
  margin-top: 25px;
}

.client_section .box .detail-box h5 {
  font-size: 20px;
  font-weight: 600;
}

.client_section .box .detail-box h6 {
  font-size: 15px;
  color: #999998;
}

.client_section .carousel-control-prev,
.client_section .carousel-control-next {
  top: 43%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 1;
  width: auto;
  margin: 0 5px;
  width: 50px;
  height: 50px;
  opacity: 1;
  color: #ffffff;
  background-color: #085f6a;
  border-radius: 100%;
}

.client_section .carousel-control-prev:hover,
.client_section .carousel-control-next:hover {
  background-color: #212121;
}

.client_section .carousel-control-prev {
  left: 25%;
}

.client_section .carousel-control-next {
  right: 25%;
}

/* footer section*/
.footer_section {
  background-color: #002c3e;
  color: #ffffff;
  padding-top: 70px;
}

.footer_section {
    color: #ffffff;
    text-align: left;
}

.footer_section h4 {
  font-size: 28px;
}

.footer_section h4,
.footer_section .footer-logo {
  font-weight: 600;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
  text-align: left;
}

.footer_section .footer-col {
  margin-bottom: 30px;
}

.footer_section .footer_contact .contact_link_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.footer_section .footer_contact .contact_link_box a {
    margin: 10px 0;
    color: #ffffff;
}

.footer_section .footer_contact .contact_link_box a i {
  margin-right: 5px;
}

.footer_section .footer_contact .contact_link_box a:hover {
  color: #085f6a;
}

.footer_section .footer-logo {
  display: block;
  font-weight: bold;
  font-size: 32px;
  color: #ffffff;
}

.footer_section .footer_social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: left;
    -ms-flex-pack: center;
    justify-content: left;
    margin-top: 25px;
    margin-bottom: 10px;
}

.footer_section .footer_social a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #002c3e;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  background-color: #ffffff;
  border-radius: 100%;
  margin: 0 2.5px;
  font-size: 18px;
}

.footer_section .footer_social a:hover {
  color: #085f6a;
}

.footer_section .map_container {
  width: 100%;
  height: 175px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.footer_section .map_container .map {
  height: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.footer_section .map_container .map #googleMap {
  height: 100%;
}

.footer_section .footer-info {
  text-align: center;
  margin-top: 25px;
}

.footer_section .footer-info p {
    color: #ffffff;
    margin: 0;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.footer_section .footer-info p a {
  color: inherit;
}
/*# sourceMappingURL=style.css.map */

.heading_container.heading_center h3 {
    position: relative;
    margin-bottom: 15px;
    font-size: 2.5rem;
    font-weight: bold;
    font-family: 'Playfair Display', serif;
}

li.nav-item ul {
    background: #fff;
    border: solid #000 2px;
    border-radius: 0;
    padding: 10px 20px;
    margin-left: 10px;
    margin-top: 10px;
    box-shadow: 4px 4px 0px 0 #000;
    width: 190px;
}

li.nav-item ul li {
    float: left;
    width: 100%;
    margin: 6px 0;
}

li.nav-item ul li a {
    color: #212529;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.2px;
    margin-top: 10px;
    transition: ease all 0.5s;
}

li.nav-item ul li a:hover, li.nav-item ul li a:focus {
    color: #085f6a;
}

.inner_page_head {
    background: #085f6a;
    text-align: center;
    color: #fff;
    padding-top: 50px;
    padding-bottom: 40px;
}

.inner_page_head h3 {
    font-size: 42px;
    font-weight: 800;
}

/** footer **/

footer {
    background: #f8f8f8;
    padding: 90px 0 70px;
}

.logo_footer {
    margin-bottom: 30px;
}

.information_f p {
    margin-bottom: 1.2rem;
    line-height: 25px;
    font-size: 15px;
}

.widget_menu h3 {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    margin-bottom: 25px;
}

.widget_menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget_menu ul li {
    float: left;
    width: 100%;
}

.widget_menu ul li a {
    font-size: 15px;
    color: #000;
    margin-bottom: 0;
    float: left;
    width: 100%;
    margin-top: 5px;
}

.field {
    display: flex;
}

.widget_menu {
    float: left;
    width: 100%;
}

div.form_sub .field input[type="email"], div.form_sub .field input[type="email"]:hover, div.form_sub .field input[type="email"]:focus {
    padding: 10px 110px 10px 15px;
    border-radius: 0;
    border: solid #ccc 1px;
    font-size: 14px;
    position: relative;
    box-shadow: none;
    width: 100%;
    height: 48px;
}

.form_sub {
    position: relative;
}

.form_sub input[type="email"] + input[type="submit"] {
    position: absolute;
    right: 0;
    background: #085f6a;
    color: #fff;
    border: none;
    top: 0px;
    font-size: 14px;
    height: 48px;
    font-weight: 600;
    padding: 0 15px;
}

form input {
    background: #fff;
    border: solid #ccc 1px;
    padding: 15px 15px;
    width: 100%;
    font-size: 14px;
    margin-bottom: 20px;
    text-transform: capitalize;
    line-height: normal;
}

form textarea {
    background: #fff;
    border: solid #ccc 1px;
    padding: 15px 15px;
    width: 100%;
    min-height: 150px;
    font-size: 14px;
    margin-bottom: 20px;
    text-transform: capitalize;
    line-height: normal;
}

form input[type="submit"] {
    border: none;
    padding: 15px 45px;
    width: auto;
    font-size: 16px;
    text-transform: capitalize;
    line-height: normal;
    margin: 0 auto;
    display: flex;
    background: #333;
    color: #fff;
    font-weight: 600;
    transition: ease all 0.1s;
}

form input[type="submit"]:hover,
form input[type="submit"]:focus {
    background: #085f6a;
    color: #fff;
}

/** cpy **/

.cpy_ {
    background: #222;
    text-align: center;
    padding: 20px 0;
}

.cpy_ p {
    margin: 0;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
}

.cpy_ p a {
    margin: 0;
    color: #085f6a;
    font-size: 15px;
    font-weight: 400;
}

https://preview.hasthemes.com/xoss-preview/xoss/index.html
.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.footer-address {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  margin-bottom: 10px;
}

img {
  max-width: 100%;
}

:focus-visible {
  outline: 3px solid #f7444e;
  outline-offset: 3px;
}

/* HERVIUM 2026 — direction artistique inspirée du rythme éditorial Shopper */
:root {
  --hv-navy: #071923;
  --hv-navy-2: #0b2935;
  --hv-teal: #087c85;
  --hv-cyan: #19b5b1;
  --hv-gold: #e8b85b;
  --hv-cream: #f7f3ea;
  --hv-ink: #10242d;
  --hv-muted: #65757c;
  --hv-white: #ffffff;
  --hv-radius: 22px;
  --hv-shadow: 0 22px 70px rgba(4, 27, 36, .14);
}

html { scroll-behavior: smooth; }
body {
  color: var(--hv-ink);
  background: #fff;
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
}
a, button, .box, img { transition: all .32s cubic-bezier(.2,.8,.2,1); }
.layout_padding { padding: 96px 0; }
.heading_container h2,
.inner_page_head h3 {
  font-weight: 800;
  letter-spacing: -1.5px;
}
.heading_container h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
.heading_container h2 span { color: var(--hv-teal); }

.announcement-bar {
  background: linear-gradient(90deg, var(--hv-teal), var(--hv-cyan));
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .3px;
}
.announcement-inner {
  min-height: 38px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.announcement-inner a { color: #fff; }
.announcement-inner i { color: var(--hv-gold); margin-right: 6px; }
.header_section {
  position: relative;
  z-index: 1000;
  padding: 0;
  background: rgba(7,25,35,.96);
  box-shadow: 0 12px 40px rgba(0,0,0,.13);
}
.header_section > .container { min-height: 82px; display: flex; align-items: center; }
.header_section .navbar { width: 100%; padding: 10px 0; }
.navbar-brand img { filter: brightness(0) invert(1); max-height: 56px; object-fit: contain; }
.custom_nav-container .navbar-nav { align-items: center; gap: 6px; }
.custom_nav-container .navbar-nav .nav-item .nav-link {
  color: rgba(255,255,255,.8);
  padding: 12px 15px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .25px;
  text-transform: none;
}
.custom_nav-container .navbar-nav .nav-item:hover .nav-link,
.custom_nav-container .navbar-nav .nav-item.active .nav-link { color: var(--hv-gold); }
.nav-cta { background: var(--hv-gold); color: var(--hv-navy) !important; border-radius: 999px; padding-inline: 20px !important; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(232,184,91,.3); }
.dropdown-menu { border: 0; border-radius: 14px; box-shadow: var(--hv-shadow); padding: 10px; }
.dropdown-menu a { display: block; padding: 10px 14px; border-radius: 9px; color: var(--hv-ink); }
.dropdown-menu a:hover { background: rgba(25,181,177,.1); color: var(--hv-teal); }

.hero_area { min-height: auto; background: var(--hv-navy); }
.slider_section {
  min-height: min(760px, calc(100vh - 120px));
  display: flex;
  align-items: stretch;
  padding: 0;
  position: relative;
}
.slider_section .slider_bg_box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4,18,27,.94) 0%, rgba(4,18,27,.7) 45%, rgba(4,18,27,.2) 100%);
}
.slider_section .slider_bg_box { z-index: 0; }
.slider_section .carousel { position: relative; z-index: 1; }
.slider_section .slider_bg_box img { object-position: center; transform: scale(1.02); animation: heroZoom 16s ease-in-out infinite alternate; }
.slider_section .carousel,
.slider_section .carousel-inner,
.slider_section .carousel-item { width: 100%; min-height: min(760px, calc(100vh - 120px)); }
.slider_section .carousel-item > .container { min-height: inherit; display: flex; align-items: center; }
.slider_section .detail-box { padding: 80px 0 70px; color: #fff; max-width: 690px; }
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 15px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(9px);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
  margin-bottom: 22px;
}
.hero-kicker i { color: var(--hv-gold); }
.slider_section .detail-box h1 { color: #fff; font-size: clamp(3rem, 6.5vw, 6rem); line-height: .98; letter-spacing: -4px; margin-bottom: 25px; }
.slider_section .detail-box h1 span { color: var(--hv-cyan); }
.slider_section .detail-box p { color: rgba(255,255,255,.8); max-width: 640px; font-size: 18px; line-height: 1.75; }
.slider_section .detail-box .btn-box { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.slider_section .detail-box .btn1,
.slider_section .detail-box .btn2px,
.slider_section .detail-box .btn2 {
  min-width: 190px;
  padding: 16px 24px;
  border-radius: 12px;
  font-weight: 800;
  text-align: center;
  border: 1px solid var(--hv-cyan);
}
.slider_section .detail-box .btn1 { background: var(--hv-cyan); color: var(--hv-navy); }
.slider_section .detail-box .btn2 { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.4); color: #fff; }
.slider_section .detail-box .btn1:hover,
.slider_section .detail-box .btn2:hover { transform: translateY(-4px); box-shadow: 0 15px 35px rgba(0,0,0,.25); }
.hero-trust { display: flex; gap: 0; margin-top: 45px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.16); }
.hero-trust span { padding: 0 24px; color: rgba(255,255,255,.62); font-size: 12px; }
.hero-trust span:first-child { padding-left: 0; }
.hero-trust span + span { border-left: 1px solid rgba(255,255,255,.2); }
.hero-trust strong { color: #fff; font-size: 24px; display: block; }
.slider_section .carousel-indicators { justify-content: flex-start; margin-left: 15px; bottom: 22px; }
.slider_section .carousel-indicators li { width: 34px; height: 4px; border-radius: 10px; background: rgba(255,255,255,.45); }
.slider_section .carousel-indicators li.active { background: var(--hv-gold); width: 64px; }

.trust-strip { background: var(--hv-navy); color: #fff; border-top: 1px solid rgba(255,255,255,.08); padding: 28px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-icon { width: 46px; height: 46px; flex: 0 0 46px; display: grid; place-items: center; border-radius: 13px; background: rgba(25,181,177,.14); color: var(--hv-cyan); }
.trust-item strong, .trust-item small { display: block; }
.trust-item strong { font-size: 14px; }
.trust-item small { color: rgba(255,255,255,.55); margin-top: 3px; }

.why_section { background: var(--hv-cream); }
.why_section .row { margin-top: 40px; }
.why_section .box {
  height: 100%;
  padding: 34px 28px;
  background: #fff;
  color: var(--hv-ink);
  border-radius: var(--hv-radius);
  border: 1px solid rgba(7,25,35,.06);
  box-shadow: 0 10px 35px rgba(5,40,52,.06);
}
.why_section .box:hover { transform: translateY(-10px); box-shadow: var(--hv-shadow); }
.why_section .box .img-box { background: rgba(8,124,133,.1); border-radius: 18px; width: 72px; height: 72px; padding: 18px; }
.why_section .box .img-box svg { fill: var(--hv-teal); }
.why_section .box .detail-box h5 { color: var(--hv-ink); margin-top: 22px; font-weight: 800; }
.why_section .box .detail-box p { color: var(--hv-muted); }

.product_section { background: #fff; }
.product_section .box {
  border: 0 !important;
  border-radius: var(--hv-radius) !important;
  background: #f4f7f7 !important;
  box-shadow: 0 8px 30px rgba(5,40,52,.08) !important;
  margin-top: 30px !important;
}
.product_section .box:hover { transform: translateY(-10px); box-shadow: var(--hv-shadow) !important; }
.product_section .box .img-box { height: 310px !important; background: #eef3f2; }
.product_section .box .img-box img { object-fit: contain !important; padding: 16px; }
.product_section .box:hover .img-box img { transform: scale(1.07) rotate(-1deg); }
.product_section .box .detail-box { background: #fff; padding: 22px !important; text-align: left !important; align-items: flex-start; }
.product_section .box .detail-box h5 { font-weight: 800; color: var(--hv-ink); }
.product_section .box .detail-box h6 { color: var(--hv-muted) !important; font-size: 13px; }
.product_section .option_container { background: linear-gradient(180deg, rgba(7,25,35,.15), rgba(7,25,35,.8)); }
.product_section .options .option1 { border-radius: 999px; border: 0; background: var(--hv-gold); color: var(--hv-navy); font-weight: 800; }

.arrival_section .box { border-radius: 28px; overflow: hidden; min-height: 520px; box-shadow: var(--hv-shadow); }
.arrival_section .arrival_bg_box::after { content:""; position:absolute; inset:0; background: linear-gradient(90deg, rgba(255,255,255,.1), rgba(247,243,234,.96) 65%); }
.arrival_section .heading_container h2 { color: var(--hv-navy); }
.arrival_section a { background: var(--hv-teal); border-radius: 12px; font-weight: 800; box-shadow: 0 12px 30px rgba(8,124,133,.25); }

.subscribe_section { background: linear-gradient(135deg, var(--hv-teal), var(--hv-navy-2)); color: #fff; }
.subscribe_section .box { background: transparent; }
.subscribe_section h3, .subscribe_section p { color: #fff; }
.subscribe_section .btn { border-radius: 999px; background: var(--hv-gold); color: var(--hv-navy); border: 0; padding: 14px 28px; font-weight: 800; }

.client_section { background: #f6f8f8; }
.client_section .box { background: #fff; border-radius: var(--hv-radius); padding: 35px; box-shadow: 0 15px 50px rgba(4,27,36,.08); }
.client_section .img-box img { border: 4px solid var(--hv-cyan); }
.client_section .carousel_btn_box a { background: var(--hv-teal); }

.inner_page_head { background: linear-gradient(135deg, var(--hv-navy), var(--hv-teal)); padding: 70px 0; }
.inner_page_head h3 { font-size: clamp(2.2rem, 5vw, 4rem); }
.reservation_section .card, .why_section .full form {
  border: 0;
  border-radius: var(--hv-radius);
  box-shadow: var(--hv-shadow);
  padding: 30px !important;
}
input, select, textarea, .form-control {
  border-radius: 12px !important;
  border: 1px solid #dbe4e4 !important;
  min-height: 50px;
  padding: 12px 15px !important;
}
textarea { min-height: 130px; }
input:focus, select:focus, textarea:focus, .form-control:focus { border-color: var(--hv-teal) !important; box-shadow: 0 0 0 4px rgba(8,124,133,.1) !important; }
.btn-success, input[type="submit"] { background: var(--hv-teal) !important; border-color: var(--hv-teal) !important; border-radius: 12px !important; font-weight: 800; padding: 13px 25px !important; }

.footer_section { background: var(--hv-navy); padding: 75px 0 25px; }
.footer_section h4, .footer-logo { color: #fff; }
.footer_section p, .footer_section span, .footer_section a { color: rgba(255,255,255,.7); }
.footer_section a:hover { color: var(--hv-gold); }
.footer-info { border-top: 1px solid rgba(255,255,255,.1); margin-top: 35px; padding-top: 22px; }

.whatsapp-float {
  position: fixed;
  z-index: 1100;
  right: 24px;
  bottom: 24px;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff !important;
  font-size: 28px;
  box-shadow: 0 15px 35px rgba(0,0,0,.25);
  animation: whatsappPulse 2.2s infinite;
}
.whatsapp-float:hover { transform: scale(1.08) translateY(-3px); }

.reveal, .reveal-section { opacity: 0; transform: translateY(30px); }
.reveal.is-visible, .reveal-section.is-visible { opacity: 1; transform: none; transition: opacity .75s ease, transform .75s ease; }
@keyframes heroZoom { to { transform: scale(1.1); } }
@keyframes whatsappPulse { 0%,100% { box-shadow: 0 15px 35px rgba(0,0,0,.25), 0 0 0 0 rgba(37,211,102,.35); } 50% { box-shadow: 0 15px 35px rgba(0,0,0,.25), 0 0 0 14px rgba(37,211,102,0); } }

@media (max-width: 991px) {
  .announcement-inner { justify-content: center; text-align: center; }
  .announcement-inner a { display: none; }
  .header_section > .container { min-height: 70px; }
  .navbar-collapse { background: var(--hv-navy-2); padding: 18px; border-radius: 16px; margin-top: 12px; }
  .custom_nav-container .navbar-nav { align-items: stretch; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .slider_section .detail-box h1 { letter-spacing: -2px; }
}
@media (max-width: 767px) {
  .layout_padding { padding: 70px 0; }
  .slider_section, .slider_section .carousel-inner, .slider_section .carousel-item { min-height: 720px; }
  .slider_section .slider_bg_box::after { background: rgba(4,18,27,.76); }
  .slider_section .detail-box { padding: 65px 0 90px; text-align: left; }
  .slider_section .detail-box h1 { font-size: 3.35rem; }
  .slider_section .detail-box p { font-size: 15px; }
  .hero-trust { gap: 0; }
  .hero-trust span { padding: 0 10px; }
  .hero-trust strong { font-size: 19px; }
  .trust-grid { grid-template-columns: 1fr; }
  .product_section .box .img-box { height: 280px !important; }
  .arrival_section .arrival_bg_box::after { background: rgba(247,243,234,.86); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
  .reveal, .reveal-section { opacity: 1; transform: none; }
}

/* Correctifs de lisibilité, alignement et recadrage */
.reveal, .reveal-section, .reveal.is-visible, .reveal-section.is-visible {
  opacity: 1 !important;
  transform: none !important;
}
.arrival_section { padding: 74px 0; background: linear-gradient(135deg, #e8eeee, #f7f3ea); }
.arrival_section .box { position: relative; isolation: isolate; }
.arrival_section .arrival_bg_box { z-index: -2; }
.arrival_section .arrival_bg_box::after {
  z-index: 1;
  background: linear-gradient(90deg, rgba(247,243,234,.04) 0%, rgba(247,243,234,.76) 54%, #f7f3ea 78%) !important;
}
.arrival_section .box .row { position: relative; z-index: 2; min-height: 520px; align-items: center; }
.arrival_section .heading_container h2, .arrival_section p { opacity: 1 !important; color: var(--hv-ink) !important; }
.arrival_section a { color: #fff !important; background: var(--hv-teal) !important; border: 2px solid var(--hv-teal) !important; }
.arrival_section a:hover { color: var(--hv-teal) !important; background: #fff !important; box-shadow: 0 15px 34px rgba(8,124,133,.2) !important; }

.product_section .box { position: relative; }
.product_section .option_container {
  inset: 0 0 auto 0 !important;
  width: 100% !important;
  height: 310px !important;
  z-index: 5 !important;
  background: linear-gradient(180deg, rgba(7,25,35,.38), rgba(7,25,35,.88)) !important;
  backdrop-filter: blur(1.5px);
  visibility: hidden;
  pointer-events: none;
}
.product_section .box:hover .option_container, .product_section .box:focus-within .option_container {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto;
}
.product_section .options .option1 {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 52px;
  padding: 13px 24px !important;
  color: var(--hv-navy) !important;
  background: var(--hv-gold) !important;
  border: 2px solid var(--hv-gold) !important;
  font-size: 14px !important;
  line-height: 1.2;
  opacity: 1 !important;
  text-shadow: none !important;
  box-shadow: 0 14px 34px rgba(0,0,0,.28);
}
.product_section .options .option1:hover, .product_section .options .option1:focus {
  color: #fff !important;
  background: var(--hv-teal) !important;
  border-color: #fff !important;
  transform: translateY(-3px);
}

.client_section .box .img_container, .client_section .box .img_container .img-box {
  width: 164px !important;
  height: 164px !important;
  min-width: 164px;
  border-radius: 50% !important;
  justify-content: center !important;
  margin: 0 !important;
  background: transparent !important;
}
.client_section .box .img_container .img-box .img_box-inner {
  width: 158px !important;
  height: 158px !important;
  border: 5px solid var(--hv-cyan);
  border-radius: 50% !important;
  overflow: hidden !important;
  background: #e9f2f1;
  box-shadow: 0 12px 30px rgba(8,124,133,.18);
}
.client_section .box .img_container .img-box .img_box-inner img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  object-fit: cover !important;
  object-position: center 25% !important;
  transform: scale(1.04);
}

.footer_section > .container { max-width: 1240px; }
.footer_section .row { align-items: flex-start; }
.footer_section .footer-col { padding: 0 28px; }
.footer_section .footer-col + .footer-col { border-left: 1px solid rgba(255,255,255,.1); }
.footer_section h4, .footer_section .footer-logo { min-height: 42px; margin-bottom: 22px; }
.footer-links h4 { color: #fff; }
.footer-link-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 18px; }
.footer-link-grid a { position: relative; padding-left: 16px; font-size: 14px; }
.footer-link-grid a::before { content: "›"; position: absolute; left: 0; color: var(--hv-gold); font-weight: 800; }
.footer-payment { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.footer-payment span { padding: 8px 11px; border-radius: 9px; background: rgba(255,255,255,.07); font-size: 12px; }
.footer-payment i { color: var(--hv-gold); margin-right: 6px; }
.footer_section .footer-info { width: 100%; }
.footer_section .footer-info > div { max-width: none; flex: 0 0 100%; }

@media (max-width: 991px) {
  .footer_section .footer-col { padding: 0 18px; }
  .footer-link-grid { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  .arrival_section .arrival_bg_box::after { background: rgba(247,243,234,.82) !important; }
  .product_section .option_container { height: 280px !important; }
  .footer_section .footer-col { padding: 0 15px 30px; }
  .footer_section .footer-col + .footer-col { border-left: 0; border-top: 1px solid rgba(255,255,255,.1); padding-top: 28px; }
  .footer-link-grid { grid-template-columns: 1fr 1fr; }
}

/* Indicateur du carrousel — capsule compacte et douce */
.slider_section .carousel-indicators {
  position: absolute !important;
  left: max(calc((100% - 1170px) / 2), 24px) !important;
  right: auto !important;
  bottom: 24px !important;
  width: auto !important;
  min-height: 28px;
  margin: 0 !important;
  padding: 8px 10px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 7px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(7,25,35,.42);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 28px rgba(0,0,0,.15);
}
.slider_section .carousel-indicators li,
.slider_section .carousel-indicators li.active {
  flex: 0 0 auto;
  display: block;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  cursor: pointer;
  transition: width .3s ease, background-color .3s ease, transform .3s ease;
}
.slider_section .carousel-indicators li {
  width: 8px !important;
  height: 8px !important;
  background: rgba(255,255,255,.48) !important;
  opacity: 1 !important;
}
.slider_section .carousel-indicators li:hover { background: rgba(255,255,255,.85) !important; transform: scale(1.12); }
.slider_section .carousel-indicators li.active {
  width: 28px !important;
  height: 8px !important;
  background: var(--hv-gold) !important;
  box-shadow: 0 0 0 3px rgba(232,184,91,.12);
}
@media (max-width: 767px) {
  .slider_section .carousel-indicators {
    left: 20px !important;
    bottom: 18px !important;
    padding: 7px 9px !important;
  }
}

/* Continuité parfaite entre image, voile et bandeau d'engagements */
.slider_section,
.slider_section .slider_bg_box,
.slider_section .carousel,
.slider_section .carousel-inner,
.slider_section .carousel-item {
  height: min(760px, calc(100vh - 120px));
  min-height: 640px;
}
.slider_section .carousel-inner { overflow: hidden; }
.slider_section .slider_bg_box { inset: 0; }
.slider_section .slider_bg_box img { display: block; width: 100%; height: 100%; }
.slider_section .slider_bg_box::after { z-index: 1; }
.trust-strip { position: relative; z-index: 3; margin-top: 0; }

@media (max-width: 767px) {
  .slider_section,
  .slider_section .slider_bg_box,
  .slider_section .carousel,
  .slider_section .carousel-inner,
  .slider_section .carousel-item {
    height: 700px;
    min-height: 700px;
  }
  .slider_section .slider_bg_box img {
    object-position: 61% center;
    transform: none;
    animation: none;
  }
  .slider_section .slider_bg_box::after {
    background: linear-gradient(180deg, rgba(4,18,27,.52) 0%, rgba(4,18,27,.78) 62%, rgba(4,18,27,.96) 100%);
  }
  .slider_section .carousel-item > .container { min-height: 700px; align-items: flex-start; }
  .slider_section .detail-box { padding: 42px 0 82px; }
  .slider_section .detail-box h1 { font-size: clamp(2.7rem, 13vw, 3.35rem); line-height: .96; margin-bottom: 20px; }
  .slider_section .detail-box p { font-size: 14px; line-height: 1.65; max-width: 95%; }
  .hero-kicker { margin-bottom: 20px; font-size: 10px; padding: 8px 12px; }
  .slider_section .detail-box .btn-box { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 24px; }
  .slider_section .detail-box .btn1,
  .slider_section .detail-box .btn2 { min-width: 0; padding: 13px 10px; font-size: 12px; border-radius: 11px; }
  .hero-trust { margin-top: 28px; padding-top: 18px; }
  .hero-trust span { flex: 1; padding: 0 9px; font-size: 9px; }
  .hero-trust strong { font-size: 18px; margin-bottom: 2px; }
  .slider_section .carousel-indicators { bottom: 17px !important; }

  .trust-strip { padding: 14px 0 16px; }
  .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 10px; }
  .trust-item {
    min-width: 0;
    gap: 10px;
    padding: 12px;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 14px;
    background: rgba(255,255,255,.035);
  }
  .trust-icon { width: 38px; height: 38px; flex-basis: 38px; border-radius: 11px; }
  .trust-item strong { font-size: 11px; line-height: 1.25; }
  .trust-item small { font-size: 9px; line-height: 1.35; }
}

@media (max-width: 360px) {
  .slider_section .detail-box .btn-box { grid-template-columns: 1fr; }
  .slider_section, .slider_section .slider_bg_box, .slider_section .carousel,
  .slider_section .carousel-inner, .slider_section .carousel-item,
  .slider_section .carousel-item > .container { height: 760px; min-height: 760px; }
}

/* Cartes d'engagement plus aérées et compactes sur mobile */
@media (max-width: 767px) {
  .why_section .row {
    margin: 30px 0 0 !important;
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .why_section .row > [class*="col-"] {
    width: 100%;
    max-width: none;
    padding: 0 !important;
  }
  .why_section .box {
    width: 100%;
    height: auto !important;
    min-height: 148px;
    margin: 0 !important;
    padding: 24px !important;
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    align-items: center;
    gap: 20px;
    text-align: left;
    border-radius: 19px;
    box-shadow: 0 10px 28px rgba(5,40,52,.07);
  }
  .why_section .box .img-box {
    width: 64px;
    height: 64px;
    margin: 0 !important;
    padding: 15px;
    border-radius: 17px;
  }
  .why_section .box .detail-box {
    min-width: 0;
    padding: 0 !important;
    text-align: left;
  }
  .why_section .box .detail-box h5 {
    margin: 0 0 7px;
    font-size: 18px;
    line-height: 1.2;
  }
  .why_section .box .detail-box p {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
  }
}

@media (max-width: 390px) {
  .why_section .box {
    grid-template-columns: 56px minmax(0, 1fr);
    min-height: 138px;
    gap: 16px;
    padding: 20px !important;
  }
  .why_section .box .img-box { width: 56px; height: 56px; padding: 13px; }
  .why_section .box .detail-box h5 { font-size: 16px; }
  .why_section .box .detail-box p { font-size: 12px; }
}

/* Bouton WhatsApp flottant */
.floating-whatsapp {
  position: fixed !important;
  right: 24px !important;
  bottom: 24px !important;
  z-index: 1200 !important;
  width: 58px !important;
  height: 58px !important;
  min-width: 58px;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  border: 3px solid rgba(255,255,255,.9);
  border-radius: 50% !important;
  color: #fff !important;
  background: #25d366 !important;
  box-shadow: 0 12px 30px rgba(7,25,35,.28), 0 0 0 5px rgba(37,211,102,.12);
  font-size: 29px !important;
  line-height: 1 !important;
  text-decoration: none !important;
  transform: translateZ(0);
}
.floating-whatsapp i { display: block; margin: 0 !important; color: #fff !important; }
.floating-whatsapp .whatsapp-label {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.floating-whatsapp:hover,
.floating-whatsapp:focus {
  color: #fff !important;
  background: #1fbd59 !important;
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 16px 36px rgba(7,25,35,.34), 0 0 0 7px rgba(37,211,102,.16);
}
@media (max-width: 767px) {
  .floating-whatsapp {
    right: 16px !important;
    bottom: calc(16px + env(safe-area-inset-bottom, 0px)) !important;
    width: 52px !important;
    height: 52px !important;
    min-width: 52px;
    font-size: 25px !important;
    border-width: 2px;
  }
}
.honeypot,
.honeypot[hidden],
form .honeypot,
form .honeypot[hidden] {
  display: none !important;
  visibility: hidden !important;
  position: absolute !important;
  left: -99999px !important;
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  pointer-events: none !important;
}
