/*--------------------------------------------------------------
# Global
--------------------------------------------------------------*/
body {
  background: #fff;
  color: #666666;
  font-family: "Open Sans", sans-serif;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

a {
  color: #2dc997;
  text-decoration: none;
}

a:hover,
a:active,
a:focus {
  color: #2dca98;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}

section {
  overflow: hidden;
}

#main {
  flex: 1;
}

.mt-8 {
  margin-top: 8rem !important;
}

.input-error {
  border: 1px solid red;
}

.w90px {
  width: 90px !important;
  max-width: 90px !important;
  min-width: 90px !important;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #2dc997;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #49d6a9;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# AOS Mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 90px;
  transition: all 0.5s;
  z-index: 997;
  background: rgba(52, 59, 64, 0.9);
}

#header #logo h1 {
  font-size: 32px;
  margin: 0;
  line-height: 1;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#header #logo h1 a,
#header #logo h1 a:hover {
  color: #fff;
}

#header #logo img {
  padding: 0;
  margin: 0;
}

#header.header-transparent {
  background: transparent;
}

#header.header-scrolled {
  background: rgba(52, 59, 64, 0.9);
  height: 70px;
  transition: all 0.5s;
}

.scrolled-offset {
  margin-top: 70px;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar > ul > li {
  white-space: nowrap;
  padding: 10px 0 10px 24px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Poppins", sans-serif;
  color: #fff;
  font-size: 14px;
  padding: 0 4px;
  white-space: nowrap;
  transition: 0.3s;
  letter-spacing: 0.4px;
  position: relative;
  text-transform: uppercase;
  text-shadow: 2px 2px 2px #000000;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #2dc997;
  visibility: hidden;
  transform: scaleX(0);
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover > a:before,
.navbar .active:before {
  visibility: visible;
  transform: scaleX(1);
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: #fff;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 24px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0 0 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #666666;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: #2dc997;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

.subMenu a {
  text-shadow: none !important;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
  background: transparent;
  border: 0;
  padding: 0;
}

.mobile-nav-toggle:focus-visible {
  outline: 2px solid #2dc997;
  outline-offset: 2px;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(77, 77, 77, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile > ul > li {
  padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover > a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #666666;
  text-shadow: none !important;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #2dc997;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0 0 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: #2dc997;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}
/*--------------------------------------------------------------
# Header Logo & Booking Button
--------------------------------------------------------------*/
.front-header-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  margin-right: 24px;
  transition: 0.3s;
}

.front-header-logo img {
  display: block;
  width: auto;
  max-height: 58px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.35));
  transition: 0.3s;
}

#header.header-scrolled .front-header-logo img {
  max-height: 48px;
}

.nav-booking-item {
  margin-left: 10px;
}

.nav-booking-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 8px 18px !important;
  border: 2px solid #fff;
  border-radius: 999px;
  color: #fff !important;
  font-family: "Poppins", sans-serif;
  font-size: 13px !important;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  text-shadow: none !important;
  transition: 0.3s;
}

.nav-booking-btn::before {
  display: none !important;
}

.nav-booking-btn:hover,
#header.header-scrolled .nav-booking-btn {
  color: #fff !important;
  background: #2dc997;
  border-color: #2dc997;
}

.language-dropdown img {
  display: inline-block;
  max-width: 22px;
  height: auto;
  margin-right: 4px;
}

@media (max-width: 991px) {
  .front-header-logo {
    position: relative;
    z-index: 1000;
  }

  .front-header-logo img {
    max-height: 46px;
  }

  .navbar-mobile .nav-booking-item {
    margin: 12px 20px;
  }

  .navbar-mobile .nav-booking-btn {
    width: calc(100% - 40px);
    margin: 0 auto;
    color: #fff !important;
    background: #2dc997;
    border-color: #2dc997;
  }
}

@media (max-width: 576px) {
  .front-header-logo img {
    max-height: 40px;
  }
}
/*--------------------------------------------------------------
# Hero
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  position: relative;
  background: rgba(0, 0, 0, 0.8);
}

.heroBgTransparent {
  background: transparent !important;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .hero-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

#hero h1 {
  margin: 30px 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 2px 2px 2px #000000;
}

#hero h2,
#hero .hero-subtitle {
  color: #eee;
  margin-bottom: 50px;
  font-size: 24px;
}

#hero .btn-get-started {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

#hero .btn-get-started:hover {
  background: #2dc997;
  border-color: #2dc997;
}

#hero .btn-disponibilites {
  margin-top: 35px;
  color: #2dc997;
  font-size: 25px;
  letter-spacing: 2px;
}

.w-250 {
  width: auto;
  max-width: 150px;
}

#heroEquipment {
  margin-top: 35px;
}

#heroEquipment i {
  color: #fff;
  font-size: 55px;
  padding: 15px;
  margin: 15px;
  cursor: pointer;
  transition: ease-in-out 0.3s;
}

#heroEquipment i:hover {
  color: #2dc997;
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

/*--------------------------------------------------------------
# Hero Slideshow
--------------------------------------------------------------*/
.hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.hero-slideshow .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
  z-index: 1;
}

.hero-slideshow .slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-slideshow .progress-bar-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  z-index: 10;
}

.hero-slideshow .progress-bar {
  height: 100%;
  width: 0%;
  background: #ffffff;
  transition: width linear;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

.hero-slideshow::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 3;
}

/*--------------------------------------------------------------
# Video Backgrounds
--------------------------------------------------------------*/
#c-video-bg,
#c-video-bg-alt {
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  position: fixed;
  object-fit: fill;
}

#c-video-bg {
  opacity: .75;
}

#c-video-bg-alt {
  opacity: .85;
}

#c-video-bg iframe {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  object-fit: fill;
}

/*--------------------------------------------------------------
# Sections Header
--------------------------------------------------------------*/
.section-header .section-title {
  font-size: 32px;
  color: #111;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  margin-bottom: 5px;
}

.section-header .section-description {
  text-align: center;
  padding-bottom: 40px;
  color: #999;
}

.founders-eyebrow,
.about-eyebrow,
.facts-eyebrow,
.tarifs-eyebrow,
.rooms-eyebrow,
.seminaires-eyebrow,
.contact-eyebrow {
  display: block;
  margin-bottom: 8px;
  color: #2dc997;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-align: center;
  text-transform: uppercase;
}

.founder-card-label,
.about-card-label,
.rooms-card-label,
.seminaires-card-label,
.contact-card-label {
  display: inline-block;
  margin-bottom: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  color: #2dc997;
  background: rgba(45, 201, 151, 0.10);
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: whitesmoke;
  min-height: 40px;
  margin-top: 92px;
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Founders Section
--------------------------------------------------------------*/
#founders {
  position: relative;
  background: linear-gradient(180deg, #f7f7f7 0%, #ffffff 100%);
  padding: 90px 0 80px 0;
}

#founders::before {
  content: '';
  position: absolute;
  top: 80px;
  left: -120px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(45, 201, 151, 0.08);
  pointer-events: none;
}

#founders::after {
  content: '';
  position: absolute;
  right: -140px;
  bottom: 60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(52, 59, 64, 0.06);
  pointer-events: none;
}

#founders .container {
  position: relative;
  z-index: 1;
}

.founders-description {
  max-width: 820px;
  margin: 0 auto;
  line-height: 28px;
}

.founder-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 28px;
  overflow: hidden;
  padding: 30px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid rgba(52, 59, 64, 0.08);
  box-shadow: 0 20px 45px rgba(52, 59, 64, 0.10);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.founder-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, #2dc997, #343b40);
}

.founder-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 60px rgba(52, 59, 64, 0.15);
}

.founder-card-reverse {
  flex-direction: row-reverse;
}

.founder-card-reverse::before {
  left: auto;
  right: 0;
}

.founder-card-reverse .founder-card-content {
  text-align: right;
}

.founder-card-photo {
  position: relative;
  flex: 0 0 auto;
  padding: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2dc997, #343b40);
  box-shadow: 0 14px 30px rgba(45, 201, 151, 0.25);
}

.founder-card-photo .img-founder {
  display: block;
  width: 165px;
  height: 165px;
  border-radius: 50%;
  border: 5px solid #fff;
  object-fit: cover;
}

.founder-card-content {
  flex: 1;
}

.founder-card-content h3 {
  margin-bottom: 12px;
  color: #111;
  font-size: 25px;
  font-weight: 700;
}

.founder-card-text {
  color: #666666;
  line-height: 26px;
}

.founder-card-text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .founder-card,
  .founder-card-reverse {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .founder-card::before,
  .founder-card-reverse::before {
    left: 0;
    right: auto;
    width: 100%;
    height: 5px;
  }

  .founder-card-reverse .founder-card-content {
    text-align: center;
  }

  .founder-card-photo .img-founder {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 576px) {
  #founders {
    padding: 75px 0 60px 0;
  }

  .founder-card {
    padding: 24px 20px;
    border-radius: 22px;
  }

  .founder-card-content h3 {
    font-size: 22px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
#about {
  position: relative;
  background: #fff;
  padding: 90px 0;
}

#about .container {
  position: relative;
  z-index: 1;
}

.about-card {
  overflow: hidden;
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(135deg, #ffffff 0%, #f7fffb 100%);
  border: 1px solid rgba(52, 59, 64, 0.08);
  box-shadow: 0 22px 50px rgba(52, 59, 64, 0.10);
}

#about .about-container .content {
  background: transparent;
}

.about-content-card {
  position: relative;
  height: 100%;
  padding: 34px;
  border-radius: 24px;
  background: #fff;
  border-left: 5px solid #2dc997;
  box-shadow: 0 16px 35px rgba(52, 59, 64, 0.08);
}

.about-card-label {
  margin-bottom: 14px;
}

.about-text {
  color: #666666;
  line-height: 28px;
  text-align: left;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-image-frame {
  position: relative;
  overflow: hidden;
  padding: 12px;
  border-radius: 26px;
  background: linear-gradient(135deg, #2dc997, #343b40);
  box-shadow: 0 20px 45px rgba(45, 201, 151, 0.18);
}

.about-image-frame::before {
  content: '';
  position: absolute;
  inset: 12px;
  border-radius: 20px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  pointer-events: none;
  z-index: 2;
}

.about-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 320px;
  border-radius: 20px;
  background-image: url(../img/about-img.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-color: #f7f7f7;
}

@media (max-width: 991px) {
  #about {
    padding: 75px 0;
  }

  .about-card {
    padding: 22px;
    border-radius: 24px;
  }

  .about-content-card {
    padding: 28px;
  }

  .about-text {
    text-align: center;
  }

  .about-image {
    min-height: 280px;
  }
}

@media (max-width: 576px) {
  .about-card {
    padding: 16px;
    border-radius: 22px;
  }

  .about-content-card {
    padding: 24px 20px;
    border-left: 0;
    border-top: 5px solid #2dc997;
    text-align: center;
  }

  .about-image-frame {
    padding: 8px;
    border-radius: 20px;
  }

  .about-image-frame::before {
    inset: 8px;
    border-radius: 15px;
  }

  .about-image {
    min-height: 220px;
    border-radius: 15px;
  }
}

/*--------------------------------------------------------------
# Facts Section
--------------------------------------------------------------*/
#facts {
  background: linear-gradient(180deg, #f7f7f7 0%, #ffffff 100%);
  padding: 90px 0 70px 0;
}

.facts-description {
  max-width: 760px;
  margin: 0 auto;
  line-height: 28px;
}

.facts-intro-card {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
  padding: 30px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid rgba(52, 59, 64, 0.08);
  box-shadow: 0 20px 45px rgba(52, 59, 64, 0.10);
}

.facts-intro-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #2dc997, #343b40);
  box-shadow: 0 14px 30px rgba(45, 201, 151, 0.25);
}

.facts-intro-icon i {
  font-size: 32px;
  line-height: 1;
}

.facts-intro-text {
  flex: 1;
  color: #666666;
  line-height: 28px;
}

.facts-intro-text p:last-child {
  margin-bottom: 0;
}

#prezHome {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.facts-feature-card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 205px;
  padding: 28px 20px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(52, 59, 64, 0.08);
  box-shadow: 0 18px 40px rgba(52, 59, 64, 0.09);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.facts-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 55px rgba(52, 59, 64, 0.14);
}

.facts-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 82px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #2dc997, #343b40);
  box-shadow: 0 14px 30px rgba(45, 201, 151, 0.25);
}

#prezHome .facts-feature-icon i {
  margin: 0;
  padding: 0;
  color: #fff !important;
  font-size: 42px;
  transition: none;
}

.facts-feature-card strong {
  display: block;
  color: #333;
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 24px;
}

.facts-cards-row {
  row-gap: 24px;
}

.facts-info-card {
  position: relative;
  overflow: hidden;
  height: 100%;
  padding: 30px 24px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(52, 59, 64, 0.08);
  box-shadow: 0 18px 40px rgba(52, 59, 64, 0.09);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.facts-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 5px;
  width: 100%;
  background: linear-gradient(90deg, #2dc997, #343b40);
}

.facts-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 55px rgba(52, 59, 64, 0.14);
}

.facts-info-card-large {
  padding: 34px 28px;
}

.facts-info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #fff;
  background: #2dc997;
  box-shadow: 0 12px 24px rgba(45, 201, 151, 0.22);
}

.facts-info-icon i {
  font-size: 28px;
  line-height: 1;
}

.facts-info-card h5 {
  color: #111;
  font-size: 19px;
  font-weight: 700;
}

.facts-info-card p {
  color: #666666;
  line-height: 26px;
}

.facts-info-card p:last-child {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  #facts {
    padding: 75px 0 60px 0;
  }

  .facts-intro-card {
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 26px;
  }

  .facts-intro-text {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .facts-intro-card,
  .facts-feature-card,
  .facts-info-card {
    border-radius: 20px;
  }

  .facts-intro-card {
    padding: 24px 20px;
  }

  .facts-feature-card {
    min-height: auto;
    padding: 26px 18px;
  }

  .facts-info-card,
  .facts-info-card-large {
    padding: 28px 20px;
  }
}

/*--------------------------------------------------------------
# Presentation Video
--------------------------------------------------------------*/
#presentation {
  scroll-margin-top: 90px;
}

.presentation-description {
  max-width: 760px;
  margin: 0 auto 25px auto;
  line-height: 28px;
}

.presentation-video-wrapper {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  padding: 12px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(45, 201, 151, 0.95), rgba(52, 59, 64, 0.95));
  box-shadow: 0 20px 45px rgba(52, 59, 64, 0.18);
}

.presentation-video-wrapper::before {
  content: '';
  position: absolute;
  inset: 12px;
  border-radius: 18px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
  pointer-events: none;
  z-index: 2;
}

.presentation-video {
  position: relative;
  display: block;
  width: 100%;
  max-height: 560px;
  border-radius: 18px;
  background: #111;
  object-fit: cover;
  outline: none;
  z-index: 1;
}

.presentation-video::-webkit-media-controls-panel {
  background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.78));
}

.presentation-video::-webkit-media-controls-play-button,
.presentation-video::-webkit-media-controls-timeline,
.presentation-video::-webkit-media-controls-current-time-display,
.presentation-video::-webkit-media-controls-time-remaining-display,
.presentation-video::-webkit-media-controls-mute-button,
.presentation-video::-webkit-media-controls-volume-slider,
.presentation-video::-webkit-media-controls-fullscreen-button {
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.65));
}

@media (max-width: 768px) {
  .presentation-video-wrapper {
    padding: 8px;
    border-radius: 18px;
  }

  .presentation-video-wrapper::before {
    inset: 8px;
    border-radius: 14px;
  }

  .presentation-video {
    border-radius: 14px;
    max-height: 360px;
  }
}

/*--------------------------------------------------------------
# Tarifs Section
--------------------------------------------------------------*/
#tarifs {
  position: relative;
  background: linear-gradient(180deg, #f7f7f7 0%, #ffffff 100%);
  padding: 90px 0;
}

#tarifs::before {
  content: '';
  position: absolute;
  top: 70px;
  right: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(45, 201, 151, 0.08);
  pointer-events: none;
}

#tarifs::after {
  content: '';
  position: absolute;
  bottom: 40px;
  left: -140px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(52, 59, 64, 0.06);
  pointer-events: none;
}

#tarifs .container {
  position: relative;
  z-index: 1;
}

.tarifs-description {
  max-width: 760px;
  margin: 0 auto;
  line-height: 28px;
}

.tarifs-description a {
  font-weight: 700;
  border-bottom: 1px solid rgba(45, 201, 151, 0.45);
}

.tarifs-wrapper {
  max-width: 1080px;
  margin: 0 auto;
}

.tarifs-card {
  overflow: hidden;
  height: 100%;
  padding: 28px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(52, 59, 64, 0.08);
  box-shadow: 0 20px 45px rgba(52, 59, 64, 0.10);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tarifs-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 55px rgba(52, 59, 64, 0.14);
}

.tarifs-card-main {
  border-top: 5px solid #2dc997;
}

.tarifs-card-highlight {
  background: linear-gradient(135deg, #ffffff 0%, #f2fff9 100%);
  border-color: rgba(45, 201, 151, 0.22);
}

.tarifs-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.tarifs-card-header h4 {
  margin: 5px 0 0 0;
  color: #111;
  font-size: 24px;
  font-weight: 700;
}

.tarifs-card-header i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #2dc997, #343b40);
  font-size: 28px;
  box-shadow: 0 12px 24px rgba(45, 201, 151, 0.25);
}

.tarifs-eyebrow {
  text-align: left;
  font-size: 12px;
}

.tarifs-table-responsive {
  overflow-x: auto;
  border-radius: 18px;
  border: 1px solid rgba(52, 59, 64, 0.08);
}

.tarifs-table {
  margin-bottom: 0;
  min-width: 680px;
}

.tarifs-table thead th {
  padding: 18px 20px;
  color: #fff;
  background: #343b40;
  border: 0;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  vertical-align: middle;
}

.tarifs-table thead th:first-child,
.tarifs-table tbody td:first-child {
  text-align: left;
}

.tarifs-table tbody td {
  padding: 20px;
  color: #666666;
  background: #fff;
  border-color: rgba(52, 59, 64, 0.08);
  text-align: center;
  vertical-align: middle;
}

.tarifs-table tbody tr:nth-child(even) td {
  background: #fafafa;
}

.tarifs-table strong,
.tarifs-list-item strong {
  display: block;
  color: #333;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}

.tarifs-table small,
.tarifs-list-item small {
  display: block;
  margin-top: 4px;
  color: #999;
  font-size: 13px;
}

.tarifs-price,
.tarifs-list-item > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  padding: 9px 14px;
  border-radius: 999px;
  color: #fff;
  background: #2dc997;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(45, 201, 151, 0.22);
}

.tarifs-price-empty {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  padding: 9px 14px;
  color: #999;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
}

.tarifs-list {
  display: grid;
  gap: 14px;
}

.tarifs-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border-radius: 18px;
  background: #fafafa;
  border: 1px solid rgba(52, 59, 64, 0.06);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.tarifs-list-item:hover {
  background: #f2fff9;
  border-color: rgba(45, 201, 151, 0.25);
}

.tarifs-note {
  margin-top: 20px;
  padding: 16px 18px;
  border-left: 4px solid #2dc997;
  border-radius: 12px;
  color: #666666;
  background: rgba(45, 201, 151, 0.08);
  line-height: 24px;
}

@media (max-width: 768px) {
  #tarifs {
    padding: 70px 0;
  }

  .tarifs-card {
    padding: 22px;
    border-radius: 20px;
  }

  .tarifs-card-header {
    align-items: center;
  }

  .tarifs-card-header h4 {
    font-size: 21px;
  }

  .tarifs-card-header i {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .tarifs-list-item {
    align-items: flex-start;
    flex-direction: column;
  }

  .tarifs-list-item > span {
    align-self: flex-start;
  }
}

/*--------------------------------------------------------------
# Rooms Page
--------------------------------------------------------------*/
#rooms {
  background: linear-gradient(180deg, #f7f7f7 0%, #ffffff 100%);
  padding: 90px 0;
}

.rooms-description {
  max-width: 860px;
  margin: 0 auto;
  line-height: 28px;
}

.rooms-card {
  overflow: hidden;
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(135deg, #ffffff 0%, #f7fffb 100%);
  border: 1px solid rgba(52, 59, 64, 0.08);
  box-shadow: 0 22px 50px rgba(52, 59, 64, 0.10);
}

.rooms-filters-wrapper {
  margin-bottom: 30px;
  padding: 24px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(52, 59, 64, 0.08);
  box-shadow: 0 14px 32px rgba(52, 59, 64, 0.07);
  text-align: center;
}

.rooms-card-label {
  margin-bottom: 18px;
}

#rooms #rooms-flters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

#rooms #rooms-flters li {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  color: #666666;
  background: #f7f7f7;
  border: 1px solid rgba(52, 59, 64, 0.08);
  border-radius: 999px;
  transition: all ease-in-out 0.3s;
}

#rooms #rooms-flters li:hover,
#rooms #rooms-flters li.filter-active {
  color: #fff;
  background: #2dc997;
  border-color: #2dc997;
  box-shadow: 0 10px 22px rgba(45, 201, 151, 0.22);
}

.rooms-container {
  position: relative;
}

.rooms-item {
  margin-bottom: 0;
}

.room-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(52, 59, 64, 0.08);
  box-shadow: 0 18px 40px rgba(52, 59, 64, 0.09);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.room-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 55px rgba(52, 59, 64, 0.14);
}

.room-card-link {
  position: relative;
  display: block;
  color: inherit;
}

.room-card-img {
  display: block;
  width: 100%;
  height: 263px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.room-card:hover .room-card-img {
  transform: scale(1.06);
}

.room-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  opacity: 0;
  background: linear-gradient(180deg, rgba(52, 59, 64, 0.08) 0%, rgba(52, 59, 64, 0.88) 100%);
  transition: opacity 0.3s ease;
}

.room-card:hover .room-card-overlay {
  opacity: 1;
}

.room-card-overlay-content {
  width: 100%;
  color: #fff;
  text-align: center;
}

.room-card-zoom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 12px;
  border-radius: 50%;
  color: #fff;
  background: #2dc997;
  box-shadow: 0 12px 24px rgba(45, 201, 151, 0.28);
}

.room-card-zoom i {
  font-size: 27px;
  line-height: 1;
}

.room-card-overlay h4 {
  margin-bottom: 8px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.room-card-overlay p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  line-height: 22px;
}

/* Legacy rooms styles kept for potential old markup / details pages */
.rooms-details {
  padding-top: 40px;
}

.rooms-details .rooms-details-slider img {
  width: 100%;
}

.rooms-details .rooms-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.rooms-details .rooms-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #2dc997;
}

.rooms-details .rooms-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #2dc997;
}

.rooms-details .rooms-info {
  padding: 30px;
  box-shadow: 0 0 30px rgba(102, 102, 102, 0.08);
}

.rooms-details .rooms-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.rooms-details .rooms-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.rooms-details .rooms-info ul li + li {
  margin-top: 10px;
}

.rooms-details .rooms-description {
  padding-top: 30px;
}

.rooms-details .rooms-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.rooms-details .rooms-description p {
  padding: 0;
}

.img-room {
  width: 398px;
  height: 263px;
  object-fit: cover;
}

@media (max-width: 991px) {
  #rooms {
    padding: 75px 0;
  }

  .rooms-card {
    padding: 22px;
    border-radius: 24px;
  }

  .rooms-filters-wrapper {
    padding: 22px;
    border-radius: 22px;
  }

  .room-card-img {
    height: 250px;
  }
}

@media (max-width: 576px) {
  .rooms-card {
    padding: 16px;
    border-radius: 22px;
  }

  .rooms-filters-wrapper {
    padding: 20px 16px;
    border-radius: 20px;
  }

  #rooms #rooms-flters {
    gap: 8px;
  }

  #rooms #rooms-flters li {
    width: 100%;
    padding: 12px 16px;
  }

  .room-card {
    border-radius: 20px;
  }

  .room-card-img {
    height: 240px;
  }

  .room-card-overlay {
    opacity: 1;
    padding: 16px;
  }
}

/*--------------------------------------------------------------
# Seminars Page
--------------------------------------------------------------*/
#seminaires {
  background: linear-gradient(180deg, #f7f7f7 0%, #ffffff 100%);
  padding: 90px 0;
  min-height: 100vh;
}

.seminaires-description {
  max-width: 820px;
  margin: 0 auto;
  line-height: 28px;
}

.seminaires-card {
  overflow: hidden;
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(135deg, #ffffff 0%, #f7fffb 100%);
  border: 1px solid rgba(52, 59, 64, 0.08);
  box-shadow: 0 22px 50px rgba(52, 59, 64, 0.10);
}

.seminaires-content-card,
.seminaires-cta-card {
  padding: 34px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(52, 59, 64, 0.08);
  box-shadow: 0 16px 35px rgba(52, 59, 64, 0.08);
}

.seminaires-content-card {
  border-left: 5px solid #2dc997;
}

.seminaires-card-label {
  margin-bottom: 18px;
}

.seminaires-text {
  color: #666666;
  line-height: 28px;
}

.seminaires-text p:last-child {
  margin-bottom: 0;
}

.seminaires-cta-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-top: 5px solid #2dc997;
  text-align: center;
}

.seminaires-cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  margin-bottom: 22px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #2dc997, #343b40);
  box-shadow: 0 14px 30px rgba(45, 201, 151, 0.25);
}

.seminaires-cta-icon i {
  font-size: 32px;
  line-height: 1;
}

.seminaires-cta-card h4 {
  color: #111;
  font-size: 23px;
  font-weight: 700;
}

.seminaires-cta-card p {
  color: #666666;
  line-height: 26px;
}

.seminaires-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
  padding: 12px 24px;
  border-radius: 999px;
  color: #fff;
  background: #2dc997;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(45, 201, 151, 0.24);
  transition: 0.3s;
}

.seminaires-cta-btn:hover,
.seminaires-cta-btn:focus {
  color: #fff;
  background: #26b587;
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  #seminaires {
    padding: 75px 0;
  }

  .seminaires-card {
    padding: 22px;
    border-radius: 24px;
  }

  .seminaires-content-card,
  .seminaires-cta-card {
    padding: 28px;
  }

  .seminaires-content-card {
    border-left: 0;
    border-top: 5px solid #2dc997;
  }

  .seminaires-text {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .seminaires-card {
    padding: 16px;
    border-radius: 22px;
  }

  .seminaires-content-card,
  .seminaires-cta-card {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .seminaires-cta-card h4 {
    font-size: 21px;
  }

  .seminaires-cta-btn {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Call To Action
--------------------------------------------------------------*/
#call-to-action {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../img/call-to-action-bg.jpg) fixed center center;
  background-size: cover;
  padding: 80px 0;
}

#call-to-action .cta-title {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

#call-to-action .cta-text {
  color: #fff;
}

#call-to-action .cta-btn {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 30px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

#call-to-action .cta-btn:hover {
  background: #2dc997;
  border-color: #2dc997;
}

@media (max-width: 1024px) {
  #call-to-action {
    background-attachment: scroll;
  }
}

@media (min-width: 769px) {
  #call-to-action .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

/*--------------------------------------------------------------
# Partners
--------------------------------------------------------------*/
.partners {
  height: 200px;
}

.swiper-slide {
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.img-partner {
  height: 110px;
  object-fit: cover;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
#contact {
  background: linear-gradient(180deg, #f7f7f7 0%, #ffffff 100%);
  padding: 90px 0 60px 0;
}

.contact-description {
  max-width: 780px;
  margin: 0 auto;
  line-height: 28px;
}

.contact-map-wrapper {
  overflow: hidden;
  max-height: 360px;
  border-top: 1px solid rgba(52, 59, 64, 0.08);
  border-bottom: 1px solid rgba(52, 59, 64, 0.08);
  background: #f7f7f7;
}

.contact-map-wrapper iframe,
.contact-map-wrapper #google-map {
  display: block;
  width: 100% !important;
  min-height: 340px;
  margin: 0;
  border: 0;
}

.contact-card {
  overflow: hidden;
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(135deg, #ffffff 0%, #f7fffb 100%);
  border: 1px solid rgba(52, 59, 64, 0.08);
  box-shadow: 0 22px 50px rgba(52, 59, 64, 0.10);
}

.contact-info-card,
.contact-form-card {
  padding: 30px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(52, 59, 64, 0.08);
  box-shadow: 0 16px 35px rgba(52, 59, 64, 0.08);
}

.contact-info-card {
  border-left: 5px solid #2dc997;
}

.contact-form-card {
  border-top: 5px solid #2dc997;
}

.contact-card-label {
  margin-bottom: 22px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(52, 59, 64, 0.08);
}

.contact-info-item:last-of-type {
  border-bottom: 0;
}

.contact-info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #2dc997, #343b40);
  box-shadow: 0 12px 24px rgba(45, 201, 151, 0.22);
}

.contact-info-icon i {
  font-size: 22px;
  line-height: 1;
}

.contact-info-item h5 {
  margin-bottom: 6px;
  color: #111;
  font-size: 16px;
  font-weight: 700;
}

.contact-info-item p {
  margin-bottom: 0;
  color: #666666;
  line-height: 24px;
}

.contact-social-links {
  display: flex;
  gap: 10px;
  padding-top: 24px;
}

.contact-social-links a {
  font-size: 18px;
  background: #343b40;
  color: #fff;
  line-height: 1;
  border-radius: 50%;
  text-align: center;
  width: 42px;
  height: 42px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-social-links a:hover {
  background: #2dc997;
  color: #fff;
  transform: translateY(-2px);
}

#contact .form-label {
  color: #333;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
}

#contact .formContact input,
#contact .formContact textarea {
  min-height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(52, 59, 64, 0.14);
  box-shadow: none;
  font-size: 14px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#contact .formContact textarea {
  min-height: 150px;
  resize: vertical;
}

#contact .formContact input:focus,
#contact .formContact textarea:focus {
  border-color: #2dc997;
  box-shadow: 0 0 0 0.2rem rgba(45, 201, 151, 0.14);
}

.contact-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
}

.contact-form-footer small {
  color: #999;
}

.contact-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 24px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: #2dc997;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  transition: 0.3s;
  box-shadow: 0 12px 24px rgba(45, 201, 151, 0.24);
}

.contact-submit-btn:hover,
.contact-submit-btn:focus {
  color: #fff;
  background: #26b587;
  transform: translateY(-2px);
}

#contact .formContact .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

#contact .formContact .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

#contact .formContact .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

#contact .formContact .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact-hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

@media (max-width: 991px) {
  #contact {
    padding: 75px 0 50px 0;
  }

  .contact-card {
    padding: 22px;
    border-radius: 24px;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 26px;
  }
}

@media (max-width: 576px) {
  .contact-card {
    padding: 16px;
    border-radius: 22px;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .contact-info-card {
    border-left: 0;
    border-top: 5px solid #2dc997;
  }

  .contact-info-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .contact-social-links {
    justify-content: center;
  }

  .contact-form-footer {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .contact-submit-btn {
    width: 100%;
  }
}
/*--------------------------------------------------------------
# Activities Page
--------------------------------------------------------------*/
#activites {
  background: linear-gradient(180deg, #f7f7f7 0%, #ffffff 100%);
  padding: 90px 0;
}

.activites-eyebrow {
  display: block;
  margin-bottom: 8px;
  color: #2dc997;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-align: center;
  text-transform: uppercase;
}

.activites-description {
  max-width: 860px;
  margin: 0 auto;
  line-height: 28px;
}

.activites-card {
  overflow: hidden;
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(135deg, #ffffff 0%, #f7fffb 100%);
  border: 1px solid rgba(52, 59, 64, 0.08);
  box-shadow: 0 22px 50px rgba(52, 59, 64, 0.10);
}

.activites-intro-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(52, 59, 64, 0.08);
  box-shadow: 0 14px 32px rgba(52, 59, 64, 0.07);
}

.activites-intro-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #2dc997, #343b40);
  box-shadow: 0 14px 30px rgba(45, 201, 151, 0.25);
}

.activites-intro-icon i {
  font-size: 34px;
  line-height: 1;
}

.activites-card-label {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  color: #2dc997;
  background: rgba(45, 201, 151, 0.10);
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.activites-intro-text p {
  margin-bottom: 0;
  color: #666666;
  line-height: 28px;
}

.activite-card {
  position: relative;
  overflow: hidden;
  height: 100%;
  padding: 34px 26px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(52, 59, 64, 0.08);
  box-shadow: 0 18px 40px rgba(52, 59, 64, 0.09);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.activite-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 5px;
  width: 100%;
  background: linear-gradient(90deg, #2dc997, #343b40);
}

.activite-card:hover {
  transform: translateY(-5px);
  border-color: rgba(45, 201, 151, 0.22);
  box-shadow: 0 26px 55px rgba(52, 59, 64, 0.14);
}

.activite-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  margin-bottom: 20px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #2dc997, #343b40);
  box-shadow: 0 14px 30px rgba(45, 201, 151, 0.22);
  transition: transform 0.3s ease;
}

.activite-card:hover .activite-icon {
  transform: scale(1.05);
}

.activite-icon i {
  color: #fff;
  font-size: 32px;
  line-height: 1;
}

.activite-card h4 {
  margin-bottom: 14px;
  color: #111;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
}

.activite-card h4 a {
  color: #111;
  transition: color 0.3s ease;
}

.activite-card h4 a:hover {
  color: #2dc997;
}

.activite-card p {
  margin-bottom: 0;
  color: #666666;
  line-height: 26px;
}

.activites-note {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  border-radius: 20px;
  color: #666666;
  background: rgba(45, 201, 151, 0.08);
  border-left: 5px solid #2dc997;
}

.activites-note-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: #fff;
  background: #2dc997;
  box-shadow: 0 12px 24px rgba(45, 201, 151, 0.22);
}

.activites-note-icon i {
  color: #fff;
  font-size: 26px;
  line-height: 1;
}

.activites-note strong {
  display: block;
  margin-bottom: 4px;
  color: #333;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}

.activites-note p {
  margin-bottom: 0;
  line-height: 24px;
}

@media (max-width: 991px) {
  #activites {
    padding: 75px 0;
  }

  .activites-card {
    padding: 22px;
    border-radius: 24px;
  }

  .activites-intro-card {
    align-items: center;
    flex-direction: column;
    padding: 26px;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .activites-card {
    padding: 16px;
    border-radius: 22px;
  }

  .activites-intro-card,
  .activite-card {
    border-radius: 20px;
  }

  .activite-card {
    padding: 30px 20px;
  }

  .activites-note {
    flex-direction: column;
    align-items: center;
    padding: 22px 20px;
    text-align: center;
    border-left: 0;
    border-top: 5px solid #2dc997;
  }
}
/*--------------------------------------------------------------
# Magie Page
--------------------------------------------------------------*/
#magie {
  background: linear-gradient(180deg, #f7f7f7 0%, #ffffff 100%);
  padding: 90px 0;
  min-height: 100vh;
}

.magie-eyebrow {
  display: block;
  margin-bottom: 8px;
  color: #2dc997;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-align: center;
  text-transform: uppercase;
}

.magie-description {
  max-width: 820px;
  margin: 0 auto;
  line-height: 28px;
}

.magie-card {
  overflow: hidden;
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(135deg, #ffffff 0%, #f7fffb 100%);
  border: 1px solid rgba(52, 59, 64, 0.08);
  box-shadow: 0 22px 50px rgba(52, 59, 64, 0.10);
}

.magie-content-card,
.magie-video-card {
  height: 100%;
  padding: 34px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(52, 59, 64, 0.08);
  box-shadow: 0 16px 35px rgba(52, 59, 64, 0.08);
}

.magie-content-card {
  border-left: 5px solid #2dc997;
}

.magie-card-label {
  display: inline-block;
  margin-bottom: 18px;
  padding: 6px 12px;
  border-radius: 999px;
  color: #2dc997;
  background: rgba(45, 201, 151, 0.10);
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.magie-text {
  color: #666666;
  line-height: 28px;
}

.magie-text p:last-child {
  margin-bottom: 0;
}

.magie-cta-wrapper {
  margin-top: 28px;
}

.magie-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  color: #fff;
  background: #2dc997;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(45, 201, 151, 0.24);
  transition: 0.3s;
}

.magie-cta-btn:hover,
.magie-cta-btn:focus {
  color: #fff;
  background: #26b587;
  transform: translateY(-2px);
}

.magie-video-card {
  border-top: 5px solid #2dc997;
}

.magie-video-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.magie-video-card-header h4 {
  margin: 4px 0 0 0;
  color: #111;
  font-size: 24px;
  font-weight: 700;
}

.magie-video-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #2dc997, #343b40);
  box-shadow: 0 12px 24px rgba(45, 201, 151, 0.25);
}

.magie-video-icon i {
  font-size: 29px;
  line-height: 1;
}

.magie-carousel {
  position: relative;
}

.magie-video-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: 10px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(45, 201, 151, 0.95), rgba(52, 59, 64, 0.95));
  box-shadow: 0 20px 45px rgba(52, 59, 64, 0.18);
}

.magie-video-wrapper::before {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: 18px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.16);
  pointer-events: none;
  z-index: 2;
}

.magie-video-wrapper iframe {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  background: #111;
  z-index: 1;
}

.magie-carousel-control {
  width: 48px;
  height: 48px;
  top: 50%;
  bottom: auto;
  border-radius: 50%;
  background: rgba(52, 59, 64, 0.78);
  opacity: 1;
  transform: translateY(-50%);
  transition: 0.3s;
}

.magie-carousel-control:hover {
  background: #2dc997;
}

.magie-carousel .carousel-control-prev {
  left: 18px;
}

.magie-carousel .carousel-control-next {
  right: 18px;
}

.magie-carousel .carousel-control-prev-icon,
.magie-carousel .carousel-control-next-icon {
  width: 20px;
  height: 20px;
}

@media (max-width: 991px) {
  #magie {
    padding: 75px 0;
  }

  .magie-card {
    padding: 22px;
    border-radius: 24px;
  }

  .magie-content-card,
  .magie-video-card {
    padding: 28px;
  }

  .magie-content-card {
    border-left: 0;
    border-top: 5px solid #2dc997;
  }

  .magie-text {
    text-align: center;
  }

  .magie-cta-wrapper {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .magie-card {
    padding: 16px;
    border-radius: 22px;
  }

  .magie-content-card,
  .magie-video-card {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .magie-video-card-header {
    align-items: center;
  }

  .magie-video-card-header h4 {
    font-size: 21px;
  }

  .magie-video-icon {
    width: 50px;
    height: 50px;
  }

  .magie-video-wrapper {
    padding: 8px;
    border-radius: 18px;
  }

  .magie-video-wrapper::before {
    inset: 8px;
    border-radius: 14px;
  }

  .magie-video-wrapper iframe {
    border-radius: 14px;
  }

  .magie-carousel-control {
    width: 40px;
    height: 40px;
  }

  .magie-carousel .carousel-control-prev {
    left: 12px;
  }

  .magie-carousel .carousel-control-next {
    right: 12px;
  }

  .magie-cta-btn {
    width: 100%;
    text-align: center;
  }
}
/*--------------------------------------------------------------
# Calendar
--------------------------------------------------------------*/
.calendar {
  display: flex;
  position: relative;
  padding: 16px;
  margin: 0 auto;
  max-width: 320px;
  background: white;
  border-radius: 4px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.month-year {
  position: absolute;
  bottom: 62px;
  right: -27px;
  font-size: 2rem;
  line-height: 1;
  font-weight: 500;
  color: #036e9f;
  transform: rotate(90deg);
}

.year {
  margin-left: 4px;
  color: #CBD5E1;
  font-weight: 700;
}

.days {
  display: flex;
  flex-wrap: wrap;
  flex-grow: 1;
  margin-right: 46px;
}

.day-label {
  position: relative;
  flex-basis: calc(14.286% - 2px);
  margin: 1px 1px 12px 1px;
  font-weight: 700;
  font-size: 0.65rem;
  text-transform: uppercase;
  color: #1E293B;
}

.day {
  position: relative;
  flex-basis: calc(14.286% - 2px);
  margin: 1px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 300;
}

.day.dull {
  color: #94A3B8;
}

.day.today {
  color: #0EA5E9;
  font-weight: 600;
}

.day::before {
  content: '';
  display: block;
  padding-top: 100%;
}

.day:hover {
  background: #E0F2FE;
}

.day .content {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.day.indisponible {
  background: red !important;
  color: #fff !important;
}

.day.disponible {
  background: #7fca65 !important;
  color: #fff !important;
}

.day.passe {
  color: #ccc;
}

.legendDispo {
  width: 40px;
  height: 10px;
  background: #7fca65 !important;
  display: inline-block;
}

.legendIndispo {
  width: 40px;
  height: 10px;
  background: red !important;
  display: inline-block;
}

#next-cal,
#prev-cal {
  cursor: pointer;
  transition: ease-in-out 0.3s;
}

#next-cal:hover,
#prev-cal:hover {
  color: #7fca65;
}

.dull {
  display: none;
  opacity: 0;
  pointer-events: none;
}

.no-pointer-events {
  pointer-events: none !important;
  opacity: .5 !important;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #343b40;
  padding: 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .copyright {
  text-align: center;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #ccc;
}

/*--------------------------------------------------------------
# Legacy / Misc
--------------------------------------------------------------*/
.previewCircle {
  width: 130px !important;
  height: 130px !important;
  border: 3px solid #2dc997;
  border-radius: 50%;
  object-fit: cover !important;
}

.carousel-item img {
  width: 100%;
  height: 550px !important;
  object-fit: cover;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Rooms Lightbox
--------------------------------------------------------------*/
.glightbox-container {
  z-index: 99999 !important;
}

.glightbox-clean .gcontainer,
.glightbox-container .gcontainer {
  background: rgba(15, 20, 24, 0.94);
  backdrop-filter: blur(8px);
}

.glightbox-clean .gslider,
.glightbox-clean .gslide,
.glightbox-clean .ginner-container {
  max-width: 100vw !important;
  box-sizing: border-box;
}

.glightbox-clean .gslide {
  padding: 24px;
}

.glightbox-clean .ginner-container {
  width: 100%;
}

.glightbox-clean .gslide-media {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  width: 100%;
  max-width: calc(100vw - 48px);
  margin: 0 auto;
  border-radius: 26px;
  background: transparent;
  box-shadow: none;
}

.glightbox-clean .gslide-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto !important;
  max-width: 100%;
  padding: 10px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(45, 201, 151, 0.95), rgba(52, 59, 64, 0.95));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
  box-sizing: border-box;
}

.glightbox-clean .gslide-image img {
  display: block;
  width: auto !important;
  max-width: calc(100vw - 68px) !important;
  max-height: 76vh !important;
  height: auto !important;
  margin: 0 auto;
  border-radius: 18px;
  object-fit: contain !important;
  background: #111;
  box-sizing: border-box;
}

.glightbox-clean .gslide-description {
  width: auto;
  max-width: min(980px, calc(100vw - 48px));
  margin: 14px auto 0 auto;
  padding: 18px 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  border-left: 5px solid #2dc997;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  box-sizing: border-box;
}

.glightbox-clean .gdesc-inner {
  padding: 0;
}

.glightbox-clean .gslide-title {
  margin: 0;
  color: #111;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
}

.glightbox-clean .gslide-desc {
  margin-top: 6px;
  color: #666666;
  font-size: 14px;
  line-height: 24px;
}

.glightbox-clean .gclose,
.glightbox-clean .gnext,
.glightbox-clean .gprev {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(52, 59, 64, 0.82);
  color: #fff;
  opacity: 1;
  transition: background 0.3s ease, transform 0.3s ease;
}

.glightbox-clean .gclose:hover,
.glightbox-clean .gnext:hover,
.glightbox-clean .gprev:hover {
  background: #2dc997;
  transform: translateY(-2px);
}

.glightbox-clean .gclose svg,
.glightbox-clean .gnext svg,
.glightbox-clean .gprev svg {
  width: 22px;
  height: 22px;
}

.glightbox-clean .gclose {
  top: 24px;
  right: 24px;
}

.glightbox-clean .gnext {
  right: 28px;
}

.glightbox-clean .gprev {
  left: 28px;
}

.glightbox-clean .gloader {
  border-color: rgba(255, 255, 255, 0.25);
  border-top-color: #2dc997;
}

@media (max-width: 991px) {
  .glightbox-clean .gslide {
    padding: 16px;
  }

  .glightbox-clean .gslide-media {
    max-width: calc(100vw - 32px);
  }

  .glightbox-clean .gslide-image {
    padding: 8px;
    border-radius: 22px;
  }

  .glightbox-clean .gslide-image img {
    max-width: calc(100vw - 48px) !important;
    max-height: 70vh !important;
    border-radius: 16px;
  }

  .glightbox-clean .gslide-description {
    max-width: calc(100vw - 32px);
    margin-top: 10px;
    padding: 16px 18px;
    border-radius: 18px;
  }

  .glightbox-clean .gclose,
  .glightbox-clean .gnext,
  .glightbox-clean .gprev {
    width: 44px;
    height: 44px;
  }

  .glightbox-clean .gclose {
    top: 16px;
    right: 16px;
  }

  .glightbox-clean .gnext {
    right: 16px;
  }

  .glightbox-clean .gprev {
    left: 16px;
  }
}

@media (max-width: 576px) {
  .glightbox-clean .gslide {
    padding: 10px;
  }

  .glightbox-clean .gslide-media {
    max-width: calc(100vw - 20px);
  }

  .glightbox-clean .gslide-image {
    padding: 6px;
    border-radius: 18px;
  }

  .glightbox-clean .gslide-image img {
    max-width: calc(100vw - 32px) !important;
    max-height: 62vh !important;
    border-radius: 14px;
  }

  .glightbox-clean .gslide-description {
    max-width: calc(100vw - 20px);
    padding: 14px 16px;
    border-left: 0;
    border-top: 5px solid #2dc997;
    text-align: center;
  }

  .glightbox-clean .gslide-title {
    font-size: 16px;
    line-height: 24px;
  }

  .glightbox-clean .gclose,
  .glightbox-clean .gnext,
  .glightbox-clean .gprev {
    width: 40px;
    height: 40px;
  }

/*--------------------------------------------------------------
# Login
--------------------------------------------------------------*/
.login-section {
  background: linear-gradient(180deg, #f7f7f7 0%, #ffffff 100%);
  padding: 140px 0 90px 0;
  min-height: 100vh;
}

.login-card {
  padding: 36px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(52, 59, 64, 0.08);
  border-top: 5px solid #2dc997;
  box-shadow: 0 22px 50px rgba(52, 59, 64, 0.10);
}

.login-form .form-label {
  color: #333;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.login-input-group {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(52, 59, 64, 0.14);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
}

.login-input-group:focus-within {
  border-color: #2dc997;
  box-shadow: 0 0 0 0.2rem rgba(45, 201, 151, 0.14);
}

.login-input-group .input-group-text {
  background: transparent;
  border: 0;
  color: #2dc997;
  font-size: 18px;
  padding: 0 14px;
}

.login-input-group .form-control {
  min-height: 46px;
  border: 0;
  background: transparent;
  font-size: 14px;
  box-shadow: none;
  padding-left: 0;
}

.login-input-group .form-control:focus {
  box-shadow: none;
  background: transparent;
}

.login-toggle-password {
  background: transparent;
  border: 0;
  color: #666;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.login-toggle-password:hover,
.login-toggle-password:focus {
  color: #2dc997;
  outline: none;
  box-shadow: none;
}

.login-toggle-password i {
  font-size: 18px;
  line-height: 1;
}

.login-error {
  display: block;
  margin-top: 6px;
  color: #ed3c0d;
  font-size: 13px;
  font-weight: 600;
}

.login-submit-btn {
  margin-top: 6px;
}

@media (max-width: 576px) {
  .login-section {
    padding: 110px 0 60px 0;
  }

  .login-card {
    padding: 26px 22px;
    border-radius: 20px;
  }
}
}