/* #region Features Section */
.section-features {
  padding: 206px 60px 202px;
  position: relative;
  overflow: hidden;
  color: white;
}

.section-features .container {
  max-width: 1236px;
  margin: 0 auto;
}

/* Background */
.features-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.features-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.features-blur-overlay {
  position: absolute;
  inset: 0;
  background: rgba(70, 44, 17, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Intro Text */
.features-intro {
  font-family: 'SuisseIntlLight', sans-serif;
  margin-bottom: 60px;
  text-align: left;
}

.features-intro h3 {
  font-size: 40px;
  font-weight: 300;
  margin-bottom: 30px;
  line-height: 150%;
}

.features-intro p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
  max-width: 950px;
}

/* Cards Grid */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 0 auto 40px;
}

.feature-card {
  font-family: 'SuisseIntlMedium', sans-serif;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-backdrop-filter: blur(10px);
  padding: 30px 23px;
  border-radius: 15px;
  width: 236px;
  height: 315px;
  display: flex;
  flex-direction: column;
  text-align: left;
  align-items: flex-start;
  justify-content: space-between;
  font-size: 22px;
  font-weight: 500;
  transition:
    transform 0.3s,
    background 0.3s;
  color: white;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.feature-card > span {
  position: relative;
  z-index: 1;
}

.feature-card .card-bg {
  position: absolute;
  inset: 0;
  border-radius: 15px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.feature-card.card1:hover .card-bg {
  opacity: 1;
  background-image: url('../images/cercle/card1.webp'), url('assets/images/cercle/card1.jpg');
}
.feature-card.card2:hover .card-bg {
  opacity: 1;
  background-image: url('../images/cercle/card2.webp'), url('assets/images/cercle/card2.jpg');
}
.feature-card.card3:hover .card-bg {
  opacity: 1;
  background-image: url('../images/cercle/card3.webp'), url('assets/images/cercle/card3.jpg');
}
.feature-card.card4:hover .card-bg {
  opacity: 1;
  background-image: url('../images/cercle/card4.webp'), url('assets/images/cercle/card4.jpg');
}
.feature-card.card5:hover .card-bg {
  opacity: 1;
  background-image: url('../images/cercle/card5.webp'), url('assets/images/cercle/card5.jpg');
}

.feature-card .sub-title {
  font-family: 'SuisseIntlLight', sans-serif;
  font-size: 14px;
}

.feature-card:hover {
  transform: translateY(-5px);
}

/* CTA Button */
.features-cta {
  display: flex;
  justify-content: flex-start;
  padding-top: 10px;
  gap: 10px;
  flex-wrap: wrap;
}

/* Mobile */
@media (max-width: 768px) {
  .section-features {
    padding: 60px 0;
  }
  .section-features .container {
    overflow: hidden;
  }
  .features-intro p {
    margin: 0 51px;
    line-height: 150%;
  }

  .features-intro h3 {
    margin: 0 51px 37px;
    line-height: 110%;
  }

  .features-grid {
    flex-wrap: nowrap;
    overflow-x: scroll;
    justify-content: flex-start;
    margin-left: 37px;
  }
  .feature-card {
    min-width: 236px;
    font-size: 18px;
  }
  .features-cta {
    margin-left: 37px;
  }
}
/* #endregion Features Section */

/* #region Location Section */
.location-section {
  padding: 115px 0 0;
  position: relative;
  overflow: hidden;
  min-height: 983px;
}

.location-section .container {
  max-width: 1236px;
  margin: 0 auto;
}

/* Background */
.location-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* z-index: -1; */
  /* pointer-events: none; */
}

.location-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right top;
  position: absolute;
  top: 0;
  left: 0;
}

.location-card {
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-radius: 15px;
  border-radius: 40px;
  background: rgba(70, 44, 17, 0.5);
  padding: 35px;
  width: 345px;
  color: white;
  /* color: #462c11; */
  font-family: 'SuisseIntlLight', sans-serif;
  margin-top: 50px;
  margin-bottom: 310px;
}

.info-group {
  margin-bottom: 24px;
}

.info-label {
  font-family: 'SuisseIntlSemiBold', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  display: flex;
  align-items: center;
}

.info-text {
  font-family: 'SuisseIntlLight', sans-serif;
  font-size: 14px;
  line-height: 1;
  font-weight: 300;
  min-width: 239px;
}

.info-icon {
  width: 16px;
  height: 16px;
  min-width: 16px;
}

.info-row {
  display: flex;
  gap: 10px;
}

/* Middle Resolution */
@media (max-width: 1440px) {
  .location-bg-image {
    object-position: center;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .location-section {
    min-height: auto;
  }
  .location-section .container {
    padding: 0 35px;
  }
  .location-card {
    width: 100%;
    margin-bottom: 100px;
  }
}
/* #endregion */

/* #region Contact Section */
.section-contact {
  position: relative;
  min-height: 983px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: white;
  padding: 100px 20px;
}

/* Background */
.contact-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none; /* Let clicks pass through if needed, though overlaid by content */
  background-color: #462c11;
  background-image: url(../images/cercle/contact_bg.png);
}

.contact-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}

/* Form Container (Gold Glass) */
.contact-form-container {
  background-color: rgba(149, 108, 59, 0.7);
  border-radius: 25px;
  padding: 32px 37px;
  width: 100%;
  max-width: 878px;
}

.contact-content {
  width: 100%;
  max-width: 878px;
}

.section-contact h2 {
  font-family: 'SuisseIntlLight', sans-serif;
  font-size: 40px;
  font-weight: 300;
}

.section-contact p {
  font-family: 'SuisseIntlLight', sans-serif;
  font-size: 16px;
  line-height: 1;
  opacity: 0.9;
  margin-bottom: 40px;
  font-weight: 300;
  max-width: 841px;
}

/* Mobile */
@media (max-width: 768px) {
  .section-contact {
    padding: 20px;
  }
  .contact-form-container {
    padding: 40px 20px;
  }
  .contact-content h2 {
    font-size: 40px;
  }
}
/* #endregion Contact Section*/
