/* INDEX.PHP*/
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  margin:0;
  font-family:var(--bs-body-font-family);
  font-size:var(--bs-body-font-size);
  font-weight:var(--bs-body-font-weight);
  line-height:var(--bs-body-line-height);
  color:#fbfbfb;
  text-align:var(--bs-body-text-align);
  background-color:var(--bs-body-bg);
  -webkit-text-size-adjust:100%;
  -webkit-tap-highlight-color:transparent
}

/* Logo dans la navbar */
.logo-img {
    height: 50px;
    width: auto;
}

/* Navbar custom */
.custom-navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Lien actif au survol */
.navbar-nav .nav-link {
    transition: color 0.3s;
}
.navbar-nav .nav-link:hover {
    color: #C89A11 !important;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar-nav {
        background-color: rgb(228, 228, 228);
        padding: 10px;
        border-radius: 5px;
    }

    .navbar-nav .nav-item {
        margin-bottom: 10px;
    }

    .logo-img {
        height: 40px;
    }
}
/* Style des liens du menu */
.navbar-nav .nav-link {
  color: #C89A11 !important;
  font-size: 1.1rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #000 !important;
}

/* Bouton principal */
.navbar .btn-warning {
  background-color: #C89A11;
  border: none;
  transition: background-color 0.3s ease;
}

.navbar .btn-warning:hover {
  background-color: #000;
  color: #C89A11;
}

.text-dark {
  --bs-text-opacity:1;
  color:rgb(0, 0, 0) !important;
}

/* Logo */
.logo-img {
  height: 45px;
}

/* Responsive ajustement */
@media (max-width: 768px) {
  .navbar .btn-warning {
    margin-top: 10px;
    width: 100%;
  }
}
.dropdown-item img {
  vertical-align: middle;
}
/* ===== Styles existants pour desktop ===== */
.hero-title {
    color: #C89A11;
    font-size: 3rem;
    font-weight: 700;
}

.hero-subtitle1 {
    font-weight: 700;
    font-size: 1.8rem;
    text-transform: uppercase;
}

.hero-subtitle2, .hero-subtitle3 {
    font-size: 1.2rem;
}

/* Bouton personnalisé */
.hero-btn {
    background-color: #C89A11;
    color: white;
    border: none;
    transition: background-color 0.3s ease;
}

.hero-btn:hover {
    background-color: #212529;
    color: white;
}

.hero-title,
.hero-subtitle1,
.hero-subtitle2,
.hero-subtitle3 {
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.hero-text-box {
    max-width: 850px;
}

/* ===== Styles responsive pour mobile ===== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem; /* réduit le titre principal */
    }

    .hero-subtitle1 {
        font-size: 1.4rem; /* réduit le sous-titre en majuscules */
    }

    .hero-subtitle2,
    .hero-subtitle3 {
        font-size: 1rem; /* réduit les paragraphes */
    }

    .hero-text-box {
        padding: 2rem 1rem; /* moins de padding sur mobile */
    }

    .hero-btn {
        font-size: 0.9rem;
        padding: 0.5rem 1.5rem;
    }
}


/* Section À propos */
.about-modern {
    background: rgb(234, 234, 234);
    color: #000;
    border-radius: 0px;
    padding: 60px 0;
}

/* Section À propos */
.about-modern1 {
    background: rgb(234, 234, 234);
    color: #000;
    border-radius: 0px;
    padding: 60px 0;
}

/* Image avec overlay */
.about-img {
    transition: transform 0.4s cubic-bezier(1,-1.6,.01,2.1);
}
.about-image-wrapper:hover .about-img {
    transform: scale(1.1);
    filter: brightness(0.8);
}
.about-image-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(200, 154, 17, 0.75);
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transition: opacity 0.5s ease;
    text-decoration: none;
}
.about-image-wrapper:hover .about-image-overlay {
    opacity: 1;
}

.about-image-wrapper img {
  width: 100%;   /* prend toute la largeur dispo */
  height: auto;  /* conserve les proportions */
  border-radius: 0 !important; /* supprime les coins arrondis */
}

.about-image-wrapper {
    border-radius: 0 !important; /* annule les coins arrondis */
  max-width: 110%; /* dépasse un peu la colonne */
  margin-left: -5%; /* recentre pour ne pas coller au texte */
}


/* Texte */
.about-subtitle {
    font-size: 1rem;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.about-title {
    font-size: 1.4rem;
    background: linear-gradient(90deg, #C89A11, #ffdf70);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.about-title .highlight {
    color: #C89A11;
}
/* Styles par défaut pour desktop */
.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #000;
}

/* Styles responsive pour mobile */
@media (max-width: 768px) {
    .about-text {
        font-size: 1rem; /* réduit la taille sur mobile */
    }
}

/* Liste avec icônes */
.list-check {
    list-style: none;
    padding: 0;
}
.list-check li {
    margin-bottom: 12px;
    font-size: 1rem;
}
.list-check i {
    color: #C89A11;
    margin-right: 8px;
}

/* Bouton */
.btn-about {
    background: linear-gradient(135deg, #C89A11, #ffdf70);
    color: #000;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.4s ease;
}
.btn-about:hover {
    background: linear-gradient(135deg, #ffdf70, #C89A11);
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(200, 154, 17, 0.6);
}


/* Image avec overlay */
.about-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}
.about-img {
    transition: transform 0.4s ease;
}
.about-image-wrapper:hover .about-img {
    transform: scale(1.05);
}
.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    transition: opacity 0.3s ease;
}
.about-image-wrapper:hover .about-image-overlay {
    opacity: 1;
}

/* Section Optimisation & Valorisation */
.optimization-section h2 {
    color: #C89A11;
}

.opt-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.opt-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Icônes */
.opt-icon {
    font-size: 2rem;
    color: #C89A11;
}

/* Section sombre high-tech */
.optimization-section-dark {
    background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Particules animées */
.particles-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particles-bg::before,
.particles-bg::after {
    content: "";
    position: absolute;
    width: 300%;
    height: 300%;
    top: -100%;
    left: -100%;
    opacity: 0.4;
}
@keyframes moveParticles {
    0%   { transform: translate(0,0) rotate(0deg); }
    50%  { transform: translate(80px, 80px) rotate(180deg); }
    100% { transform: translate(0,0) rotate(360deg); }
}

/* Contenu au-dessus des particules */
.optimization-section-dark .container {
    position: relative;
    z-index: 2;
}

/* Cards en verre sombre */
.opt-card-dark {
    background: rgb(238, 238, 238);
    border: 1px solid rgb(255, 255, 255);
    border-radius: 15px;
    color: #000;
}

/* Icônes glow */
.opt-icon-dark {
    font-size: 2.2rem;
    color: #fff;
    background: #C89A11;
    width: 70px;
    height: 70px;
    margin: 0 auto 15px auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(200,154,17,0.5);
    transition: all 0.3s ease;
}


/* Section Gestion Locative */
.gestion-section {
    background: linear-gradient(135deg,#242424, #43474C);
    color: white;
}

.gestion-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: transform 0.3s ease, background 0.3s ease;
    height: 100%;
}

/* Icônes circulaires */
.gestion-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    border-radius: 50%;
    background: #C89A11;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.bg-white {
  --bs-bg-opacity:1;
  background-color:rgb(255, 255, 255) !important;
}
.text-muted {
  --bs-text-opacity:1;
  color:rgb(0, 0, 0) !important;
}
/* Section digitale */
.values-digital {
    background: rgb(234, 234, 234);
    color: #000;
    position: relative;
    overflow: hidden;
}


/* Titre effet néon */
.digital-title {
    font-size: 1.5rem;
    background: #C89A11;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 1;
}

/* Cartes en verre */
.digital-card {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(255, 255, 255);
    border-radius: 20px;
    position: relative;
    z-index: 1;
}

/* Icônes futuristes */
.digital-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    border-radius: 50%;
    background: linear-gradient(135deg, #C89A11, #ffdf70);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #212529;
    box-shadow: 0 0 20px rgba(200,154,17,0.8);
    transition: all 0.3s ease;
}

/* Section avec image de fond */
.gestion-section-digital {
    background: url("../images/room4.jpg") center/cover no-repeat;
    position: relative;
    color: #fff;
    overflow: hidden;
}

/* Overlay sombre pour lisibilité */
.gestion-section-digital .overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.05); /* voile transparent */
    z-index: 0;
}

.text-light {
  --bs-text-opacity:1;
  color:#000 !important;
}

.text-light1 {
  --bs-text-opacity:1;
  color:#17B551 !important;
}

.text-white {
  --bs-text-opacity:1;
  color:rgb(0, 0, 0) !important;
}

.text-white1 {
  --bs-text-opacity:1;
  color:rgb(255, 255, 255) !important;
}

/* Contenu au-dessus de l’overlay */
.gestion-section-digital .container {
    position: relative;
    z-index: 1;
}

/* Section visibilité */
.visibility-section {
  position: relative;
  background: rgba(255, 255, 255);
  overflow: hidden;
  border-radius: 0px;
}

/* Animation d'apparition spécifique à cette section */
.visibility-section [data-animate] {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.visibility-section [data-animate].visible {
  opacity: 1;
  transform: scale(1);
}

/* Animation flottement continu */
@keyframes float {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

/* Animation glow pulsant */
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(200,154,17,0.3); }
  50%      { box-shadow: 0 0 35px rgba(74,144,226,0.7); }
}

/* Application sur les logos */
.partner-logo {
  position: relative;
  padding: 15px;
  background: rgba(255,255,255,0.05);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  transition: all 0.5s ease;
  animation: float 4s ease-in-out infinite, pulseGlow 6s ease-in-out infinite;
}
.partner-logo img {
  max-height: 60px;
  transition: transform 0.5s ease, filter 0.5s ease;
}
.partner-logo:hover {
  transform: translateY(-12px) scale(1.08);
}
.partner-logo:hover img {
  filter: drop-shadow(0 0 3px rgba(200,154,17,0.9));
}

/* Section sombre futuriste */
.testimonials-section {
  background: rgb(234, 234, 234);
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Titre néon */
.testimonials-section h2 {
  font-size: 2.5rem;
  background: rgba(255,255,255,0.05);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #C89A11;
  text-align: center;
  margin-bottom: 3rem;
}

/* Carrousel */
.testimonial-carousel {
  perspective: 1200px;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: scrollInfinite 30s linear infinite;
  transform-style: preserve-3d;
}

/* Cartes */
.testimonial-card {
  min-width: 300px;
  max-width: 350px;
  background: rgb(255, 255, 255);
  border-radius: 20px;
  padding: 2rem;
  color: #000;
  backdrop-filter: blur(10px);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Animation scroll continu */
@keyframes scrollInfinite {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Section CTA high-tech */
.cta-digital {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0f0f0f, #1a1a2f);
    color: #fff;
}

/* Titre effet néon */
.cta-title {
    font-size: 2.5rem;
    background: #C89A11;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

/* Sous-titre léger */
.cta-subtitle {
    font-size: 1.2rem;
    color: #000;
}

/* Bouton néon animé */
.cta-btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    color: #fff;
    background: #C89A11;
    border: none;
    box-shadow: 0 0 20px rgba(200,154,17,0.6), 0 0 40px rgba(74,144,226,0.4);
    transition: all 0.3s ease;
}
.cta-btn:hover {
    transform: scale(1.05);
    background: l#000;
}

/* Particules animées en arrière-plan */
.particles-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgb(255, 255, 255);
    background-size: 20px 20px;
    z-index: 0;
}

@keyframes moveParticles {
    0% { background-position: 0 0; }
    100% { background-position: 100px 100px; }
}

/* Contenu au-dessus des particules */
.cta-digital .container {
    position: relative;
    z-index: 1;
}

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

/*MISSION.PHP*/

/* Mission Section */
.mission-section {
    background: rgb(234, 234, 234);
    color: #000;
    position: relative;
}

.mission-title {
    font-size: 2.5rem;
    color: #C89A11;
    margin-bottom: 0.5rem;
}

.mission-subtitle {
    color: #000;
    max-width: 700px;
    margin: 0 auto;
}

.mission-subtitle1 {
    color: #fff;
    max-width: 700px;
    margin: 0 auto;
}

/* Slider stack photos */
.slider-stack {
    position: relative;
    height: 600px;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
    opacity: 0;
    transform: translateY(50px) rotate(-2deg);
    animation: slideStack 16s infinite;
}

/* Texte sur chaque slide */
.slide-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(60, 56, 56, 0.6);
    padding: 10px 15px;
    border-radius: 10px;
    font-weight: 600;
}

.slide-text1 {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(251, 251, 251, 0.99);
    padding: 10px 15px;
    border-radius: 10px;
    font-weight: 600;
}

/* Animation */
@keyframes slideStack {
    0% { opacity: 0; transform: translateY(50px) rotate(-2deg); z-index:1; }
    5% { opacity: 1; transform: translateY(0) rotate(0deg); z-index:5; }
    25% { opacity: 1; transform: translateY(0) rotate(0deg); z-index:5; }
    30% { opacity: 0; transform: translateY(-50px) rotate(2deg); z-index:1; }
    100% { opacity: 0; transform: translateY(-50px) rotate(2deg); z-index:1; }
}

/* Chaque slide démarre à un offset différent */
.slider-stack .slide:nth-child(1) { animation-delay: 0s; }
.slider-stack .slide:nth-child(2) { animation-delay: 4s; }
.slider-stack .slide:nth-child(3) { animation-delay: 8s; }
.slider-stack .slide:nth-child(4) { animation-delay: 12s; }

/* Texte mission et liste */
.mission-text {
    color: #000;
    line-height: 1.6;
}

.list-check li::before {
    content: "✔";
    color: #C89A11;
    margin-right: 10px;
}
/* Section Gestion Dubaï */
.dubai-management-section {
    background: #fff;
    color: #fff;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 80px;
}

.dubai-management-section h2 {
    font-size: 2.5rem;
    color: #C89A11;
}

.dubai-management-section h4 {
    font-size: 1.5rem;
    color: #ccc;
}

.dubai-management-section p {
    color: #000;
    max-width: 750px;
    margin: 0 auto 1rem auto;
}

/* Cartes process */
.process-card {
    background: rgba(255, 255, 255);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.64);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}


/* Numéros étapes */
.process-step {
    font-size: 2rem;
    font-weight: 700;
    color: #C89A11;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E8E6E2, #cabda3);
    margin: 0 auto;
    box-shadow: 0 0 15px rgba(200,154,17,0.6);
}


/*SERVICES.PHP*/

/* Section Services */
.services-section {
    background: rgba(234,234,234);
    color: #000;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 80px;
}

.services-section1 {
    background: rgba(255,255,255);
    color: #000;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 80px;
}

.services-section h2 {
    font-size: 2.5rem;
    color: #C89A11;
}

.services-section p {
    color: #000;
    max-width: 750px;
    margin: 0 auto 1rem auto;
}

/* Wrapper image avec overlay */
.service-image-wrapper {
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.service-image-wrapper img {
    width: 100%;
    height: auto;
    transition: transform 0.6s ease;
}

.service-image-wrapper:hover img {
    transform: scale(1.08);
    box-shadow: 0 0 35px rgba(200,154,17,0.6);
}

/* Overlay sombre avec style digital */
.service-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0,0,0,0.65);
    color: #fff;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: bold;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(200,154,17,0.6);
    backdrop-filter: blur(5px);
    transition: background 0.3s ease, transform 0.3s ease;
}

.service-image-wrapper:hover .service-overlay {
    background: rgba(200,154,17,0.8);
    transform: translateY(-5px);
}

/* Animations digitales au scroll */
.service-item[data-animate="fade-right"] {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.9s ease-out;
}

.service-item[data-animate="fade-left"] {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.9s ease-out;
}

.service-item.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Titres des services */
.service-item h3 {
    font-size: 1.8rem;
    color: #C89A11;
    margin-bottom: 1rem;
}

.service-item p {
    color: #000;
    line-height: 1.7;
}
/* EXTRA SERVICES SECTION */
.extra-services-section {
    background: #fff;
    padding: 80px 0;
}

.extra-service-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.6);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.extra-service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 12px 35px rgba(200,154,17,0.6);
}

.extra-service-image {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
}

.extra-overlay {
    background: rgba(0,0,0,0.65);
    color: #fff;
    padding: 20px;
    width: 100%;
    text-align: center;
}

.extra-overlay h3 {
    font-size: 1.5rem;
    color: #C89A11;
    margin-bottom: 10px;
}

.extra-overlay p {
    font-size: 0.95rem;
    color: #ddd;
}

/* Animations */
.extra-service-item[data-animate="fade-right"] {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.extra-service-item[data-animate="fade-left"] {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}

.extra-service-item.visible {
    opacity: 1;
    transform: translateX(0);
}

/*OPPORTUNITES.PHP*/

/* Opportunités Section */

.opportunity-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.opportunity-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 10px 35px rgba(200,154,17,0.6);
}

.opportunity-card .icon {
    color: #C89A11;
}

body {
    background: #0f0f0f !important;
    color: #fff;
    margin: 0;
    padding: 0;
}
/* Opportunités */
.opportunites-section {
    background: rgba(234,234,234); /* même fond que mission */
    color: #fff;
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
}

.opportunites-section h2,
.opportunites-section h4 {
    color: #C89A11; /* doré */
}

.opportunites-section p {
    color: #000; /* gris clair lisible */
}

/* Adapter les process-card si nécessaire */
.opportunites-section .process-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.opportunites-section .process-step {
    font-size: 2rem;
    font-weight: 700;
    color: #C89A11;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #C89A11, #4a90e2);
    margin: 0 auto;
    box-shadow: 0 0 15px rgba(200,154,17,0.6);
}
/* Icones */
.icon-wrapper {
    font-size: 3rem;
    color: #C89A11;
    background: linear-gradient(135deg, #C89A11, #4a90e2);
    color: #fff;
    transform: scale(1.1);
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border-radius: 50%;

}


/* Animation d’apparition */
.animate-card {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1s ease forwards;
}

.animate-card:nth-child(1) { animation-delay: 0.2s; }
.animate-card:nth-child(2) { animation-delay: 0.4s; }
.animate-card:nth-child(3) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* === Styles additionnels pour coller à ta charte sombre === */
.simulateur-section{
  background: #fff;
  color:#000;
}
.simulateur-section .form-control,
.simulateur-section .form-select,
.simulateur-section .form-control:focus,
.simulateur-section .form-select:focus{
  background:#dce1ea;
  border:1px solid rgba(255,255,255,0.12);
  color:#000;
  box-shadow:none;
}
.simulateur-section .form-range::-webkit-slider-thumb{ background:#C89A11; }
.simulateur-section .form-range::-moz-range-thumb{ background:#C89A11; }
.digital-hint{
  border:1px dashed rgba(200,154,17,0.35);
  color:#7b7070;
  background: rgba(255,255,255,0.03);
  border-radius:12px;
  padding:.6rem .9rem;
  font-size:.9rem;
}
.counter-box{
  min-width: 200px;
}
.counter-label{
  letter-spacing:.3px;
}
.counter-value{
  font-size:1.8rem;
  line-height:1.2;
}
.process-card.animate-card{
  transition: transform .4s ease, box-shadow .4s ease;
}
.process-card.animate-card:hover{
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 12px 36px rgba(200,154,17,0.25);
}

.btn-success {
  --bs-btn-color:#fff;
  --bs-btn-bg:#01110a;
  --bs-btn-border-color:#C89A11;
  --bs-btn-hover-color:#fff;
  --bs-btn-hover-bg:#C89A11;
  --bs-btn-hover-border-color:#e8dee2;
  --bs-btn-focus-shadow-rgb:60,153,110;
  --bs-btn-active-color:#fff;
  --bs-btn-active-bg:#c0d9cd;
  --bs-btn-active-border-color:#000;
  --bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color:#fff;
  --bs-btn-disabled-bg:#C89A11;
  --bs-btn-disabled-border-color:#198754
}

/* Contact Section */
.contact-section {
  background: linear-gradient(#fff, #fff);
  color: #000;
}
.contact-section .form-control,
.contact-section .form-select,
.contact-section textarea {
  background: #acadae;
  border: 1px solid rgba(255,255,255,0.12);
  color: #000;
}
.contact-section .form-control:focus,
.contact-section .form-select:focus,
.contact-section textarea:focus {
  box-shadow: none;
  border-color: #C89A11;
}
.info-box {
  background: rgba(255,255,255,0.05);
  border-radius: 20px;
  padding: 1.5rem;
  backdrop-filter: blur(8px);
}
.map-wrapper img {
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}


.footer-custom {
    background: rgb(234, 234, 234);
    color: #000;
    font-size: 0.95rem;
}
.footer-title {
    color: #C89A11;
    font-weight: 600;
    margin-bottom: 1rem;
}
.footer-text {
    color: #000;
    line-height: 1.6;
}
.footer-link {
    color: #C89A11;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-link:hover {
    color: #000;
}
.logo-footer {
    max-width: 200px;
    transition: transform 0.4s ease, filter 0.4s ease;
}
.footer-logo:hover .logo-footer {
    transform: scale(1.05);
    filter: drop-shadow(0 0 8px rgba(200,154,17,0.7));
}
.footer-social {
    font-size: 2rem;
    color: #000;
    transition: color 0.3s, transform 0.3s;
}
.footer-social:hover {
    color: #C89A11;
    transform: scale(1.2);
}

/* Boutons animés */
.footer-btn {
    display: inline-block;
    text-align: center;
    background: linear-gradient(135deg, #C89A11, #ffdf70);
    color: #111;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.footer-btn:hover {
    background: linear-gradient(135deg, #ffdf70, #C89A11);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(200,154,17,0.6);
}

/* Image */
.footer-image img {
    width: 100%;
    max-height: 160px;
    object-fit: cover;
    border-radius: 10px;
}
.footer-divider {
    border-color: rgba(255,255,255,0.1);
}

.mentions-legales h1 {
    color: #C89A11;
    font-weight: 700;
}
.mentions-legales h2 {
    font-size: 1.3rem;
    color: #C89A11;
    margin-bottom: 0.8rem;
}
.mentions-legales p {
    color: #000;
    line-height: 1.6;
}


.hero-reservation {
    min-height: 0vh;
    background: #1128a6;
    position: relative;
}
.hero-reservation::before {
    content: "";
    position: absolute;
    top:0;left:0;width:100%;height:100%;
    background: rgba(0,0,0,0.6);
}
.hero-reservation .container {
    position: relative;
    z-index: 2;
}
.reservation-form .form-control {
    border-radius: 30px;
    padding: 10px 15px;
    transition: all 0.3s ease;
}
.reservation-form .form-control:focus {
    box-shadow: 0 0 10px rgba(200,154,17,0.6);
    border-color: #C89A11;
}
.footer-btn {
    background: linear-gradient(135deg, #C89A11, #ffdf70);
    color: #111;
    font-weight: bold;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.footer-btn:hover {
    background: linear-gradient(135deg, #ffdf70, #C89A11);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(200,154,17,0.6);
}

/* Compteurs voyageurs */
.voyageurs-counter {
    gap: 20px;
}
.voyageurs-counter label {
    font-size: 0.85rem;
    display: block;
    margin-bottom: 2px;
}
.btn-counter {
    background: #C89A11;
    color: #111;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
}
.btn-counter:hover {
    background: #ffdf70;
    transform: scale(1.1);
}
.counter-input {
    width: 40px;
    text-align: center;
    border: none;
    background: transparent;
    color: #fff;
    font-weight: bold;
}
.bg-light {
  --bs-bg-opacity:1;
  background-color:rgb(255, 255, 255) !important;
}
.bg-dark {
  --bs-bg-opacity:1;
  background-color:#fffefb !important;
}

.form-check .form-check-input {
  float:left;
  margin-left:0em;
}

/* ================== Reserver.php Page CSS ================== */

/* Général */
.reserver-page {
    font-family: 'Arial', sans-serif;
}

/* Section Hero / Formulaire */
.hero-reservation {
    background: rgba(234,234,234);
    position: relative;
}
.hero-reservation::before {
    content: "";
    position: absolute;
    top:0; left:0; width:100%; height:100%;
    background: rgba(0,0,0,0);
}
.hero-reservation .container {
    position: relative;
    z-index: 2;
}

/* Formulaire */
.reservation-form .form-control {
    border-radius: 0.3rem;
}
.reservation-form .footer-btn {
    background: #c89a11;
    border: none;
    color: white;
    font-weight: bold;
}
.reservation-form .footer-btn:hover {
    background: #b3850f;
}

/* Compteurs */
.voyageurs-counter {
    gap: 10px;
}
.btn-counter {
    background: #c89a11;
    border: none;
    color: white;
    padding: 0 10px;
    font-weight: bold;
    cursor: pointer;
}
.btn-counter:hover {
    background: #b3850f;
}

/* Section Appartement */
.appart-item {
    display: block;
}
.card {
    border-radius: 0.5rem;
}
.card .card-img-top img {
    cursor: pointer;
    transition: transform 0.3s;
}
.card .card-img-top img:hover {
    transform: scale(1.05);
}


/* Modal */
#appartModal .modal-dialog {
    margin-top: -20%;
    margin-bottom: auto;
}

/* Carousel */
#carouselAppart .carousel-inner {
    position: relative;
}

#carouselAppart .carousel-item {
    min-height: 60vh; /* Empêche l'image de disparaître */
}

#carouselAppart .carousel-item img {
    max-height: 80vh;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* Contrôles du carousel */
#carouselAppart .carousel-control-prev,
#carouselAppart .carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.9;
    z-index: 10;
}

#carouselAppart .carousel-control-prev:hover,
#carouselAppart .carousel-control-next:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
}

#carouselAppart .carousel-control-prev-icon,
#carouselAppart .carousel-control-next-icon {
    background-color: rgba(200, 154, 17, 0.9);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(200, 154, 17, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
    #carouselAppart .carousel-control-prev,
    #carouselAppart .carousel-control-next {
        width: 40px;
        height: 40px;
    }

    #carouselAppart .carousel-control-prev-icon,
    #carouselAppart .carousel-control-next-icon {
        background-size: 80% 80%;
    }
}



.navbar-toggler {
  padding:var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
  font-size:var(--bs-navbar-toggler-font-size);
  line-height:1;
  color:var(--bs-navbar-color);
  background-color:#c89a11;
  border:var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
  border-radius:var(--bs-navbar-toggler-border-radius);
  transition:var(--bs-navbar-toggler-transition)
}
@media (prefers-reduced-motion:reduce) {
  .navbar-toggler {
    transition:none
  }
}
.navbar-toggler:hover {
  text-decoration:none
}
.navbar-toggler:focus {
  text-decoration:none;
  outline:0;
  box-shadow:0 0 0 var(--bs-navbar-toggler-focus-width)
}
.navbar-toggler-icon {
  display:inline-block;
  width:1.5em;
  height:1.5em;
  vertical-align:middle;
  background-image:var(--bs-navbar-toggler-icon-bg);
  background-repeat:no-repeat;
  background-position:center;
  background-size:100%
}

/* Animation au scroll : visible seulement si JS actif */
.js [data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.js [data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* Animation au scroll */
.js [data-animate] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.js [data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

.offres-section {
    background: rgba(234,234,234);
    color: #000;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 80px;
}

.text-noir {
  color: #000;
}

.offres-bonus {
    background: #fff;
    color: #fff;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 80px;
}

.shadow-sm {
  box-shadow:.625rem .25rem rgba(219, 157, 39, 0.51) !important
}

.mentions-legales {
  background: linear-gradient(#fff, #fff);
  color: #000;
}

/* style-apropos.css — styles spécifiques à apropos.php */

/* wrapper (optionnel) */
.apropos-page {
  /* aucun style obligatoire ici */
}

/* === Images de la section Présentation ===
   - grande, sans arrondis, pas d'ombre
   - object-fit pour garder le cadrage
*/
.apropos-page .apropos-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 0; /* enlever arrondis */
  box-shadow: none; /* enlever ombre */
}

.apropos-page .apropos-img {
  width: 100%;
  height: 420px;            /* taille large sur desktop */
  object-fit: cover;
  display: block;
  border-radius: 0;
  box-shadow: none;
}

/* réduction height sur petits écrans */
@media (max-width: 992px) {
  .apropos-page .apropos-img {
    height: 320px;
  }
}
@media (max-width: 576px) {
  .apropos-page .apropos-img {
    height: auto; /* s'adapte sur mobile */
  }
}

/* Overlay spécifique (apparition au hover) */
.apropos-page .apropos-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(180deg, rgba(200,154,17,0.6), rgba(0,0,0,0.25));
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.35s ease;
  transform: translateY(6px);
  text-decoration: none;
}
.apropos-page .apropos-image-wrapper:hover .apropos-overlay {
  opacity: 1;
  transform: translateY(0);
}

/* léger effet zoom si tu veux (désactivable) */
.apropos-page .apropos-image-wrapper:hover .apropos-img {
  transform: scale(1.03);
  transition: transform 0.5s ease;
}

/* === Animation général pour les blocs avec data-animate === */
[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* Valeurs : animations de delay si plusieurs */
.values-digital [data-animate]:nth-child(1) { transition-delay: 0.05s; }
.values-digital [data-animate]:nth-child(2) { transition-delay: 0.15s; }
.values-digital [data-animate]:nth-child(3) { transition-delay: 0.25s; }

/* Ajustements spécifiques pour garder harmonie avec style.css */
.apropos-page .about-text,
.apropos-page .about-title {
  color: #000; /* s'assurer que le texte est noir dans ces sections */
}

/* Si tu veux enlever le radius et l'ombre de la galerie aussi */
.apropos-page .bg-light .img-fluid {
  border-radius: 0px; /* si tu préfères garder la galerie arrondie ; mets 0 si tu veux pas d'arrondi */
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* CTA styling (si tu veux override) */
.apropos-page .cta-btn {
  background: linear-gradient(135deg,#C89A11,#ffdf70);
  color: #000;
  border-radius: 30px;
  padding: 12px 28px;
}

/* FAQ Section */
.faq-section {
    background-color: #fff !important;
}

.faq-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #222;
}

.accordion-button {
    background-color: #fff;
    color: #333;
    font-weight: 600;
    border: none;
    box-shadow: none;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background-color: #d4af37;
    color: #fff;
}

.accordion-item {
    border: none;
    margin-bottom: 10px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

.accordion-body {
    background-color: #fff;
    color: #555;
    line-height: 1.6;
}

/* Contact rapide */
.quick-contact {
    background-color: #f9f9f9;
    border-top: 2px solid #eee;
    border-bottom: 2px solid #eee;
}

.quick-contact h3 {
    font-size: 1.8rem;
    color: #222;
}

/* CTA */
.cta-section {
    background: linear-gradient(135deg, #d4af37, #222);
    color: #fff;
}

.cta-section h2 {
    font-size: 2rem;
}



.gestion-locative .about-subtitle {
  font-size: 1.1rem;
  text-transform: uppercase;
  color: #FABD17; /* accent doré */
  letter-spacing: 1px;
}

.gestion-locative h2 {
  font-size: 1.5rem;
  line-height: 1.3;
  color: #000;
}

.gestion-locative p {
  color: #000;
  text-align: justify;
}

.gestion-locative img {
  max-height: 600px;
  object-fit: cover;
  border-radius: 0; /* pas de coins arrondis */
}

/* Styles par défaut */
.fs-5 {
    font-size: 1.1rem !important;
}

/* Styles responsive pour mobile */
@media (max-width: 768px) {
    .fs-5 {
        font-size: 1.0rem !important; /* réduit la taille sur mobile */
    }
}

/* Centrer l'image sur mobile */
@media (max-width: 992px) {
    .about-modern .about-image-wrapper {
        margin-left: auto;
        margin-right: auto;
        display: block;
        max-width: 100%;
    }
}

/* Section équipe */
.team-card {
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}
.team-photo {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border: 5px solid #f5f5f5;
  transition: border-color 0.3s ease;
}
.team-card:hover .team-photo {
  border-color: #c29b57; /* couleur dorée personnalisable */
}

.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;   /* par défaut (desktop) */
  z-index: 1;
  background-color: #000; /* fond autour si besoin */
}

/* Sur mobile → afficher toute l'image */
@media (max-width: 768px) {
  .hero-img {
    object-fit: cover;
    background-color: #000;   /* le noir comble les côtés si besoin */
  }

  .hero-section {
    height: auto;        /* la section s’adapte à l’image */
    min-height: 1vh;   /* mais garde quand même la hauteur écran */
    display: flex;
    align-items: center;
  }
}

.shadow-lg {
  box-shadow:0 1rem 1rem rgba(0, 0, 0, 0.65) !important;
}