* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body , html{ 
  background-image: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);
  font-size: clamp(14px, 1.2vw, 17px);
  overflow-x: hidden;
  scroll-behavior: smooth;
}


header {
  position:relative;
  z-index: 1000000;
  height: 80px;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.274) ;
}
header h1{
  font-size: clamp(20px, 2.5vw, 28px);
}
header h1 span{
  color: #0092ca;
}

header a {
  text-decoration: none;
  color: #090909;
  font-size: 28px;
  font-weight: bold;
}


.nav-links {
  list-style: none;
  display: flex;
  gap: 10px;
}

.nav-links li a {
  color:  #09090993;
  padding: 0.4em 0.6em;
  font-size: clamp(14px, 1.5vw, 17px);
  text-transform: capitalize;
}


.links-cnx {
  display: flex;
  align-items: center;
  gap: 15px;
}

.links-cnx a {
  padding: 0.4em 1.2em;
  font-size: clamp(14px, 1.5vw, 17px);
  border-radius: 0.5em;
  color: #666;
  text-decoration: none;
  text-transform: capitalize;
  transition: all .3s ease;
}
.links-cnx .ajt a{
  color: #fff;
}
.links-cnx .ajt .lastbien{
  display: none;
}
.links-cnx a:hover{
  color: #0092ca;
}
.links-cnx .cnx:hover{
    color: #0092ca;
}

.button2 {
  display: inline-block;
  transition: all 0.2s ease-in;
  position: relative;
  overflow: hidden;
  z-index: 1;
  color: #fff;
  padding: 0.4em 1.2em;
  cursor: pointer;
  font-size: clamp(14px, 1.5vw, 17px);
  border-radius: 0.5em;
  background: #0092ca;
  border: 2px solid  #fff;
  text-transform: capitalize;
  text-decoration: none;
  font-family: Arial, sans-serif;
}

.button2:active {
  color: #666;
  box-shadow: inset 4px 4px 12px #c5c5c5, inset -4px -4px 12px #0092ca;
}

.button2:before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scaleY(1) scaleX(1.25);
  top: 100%;
  width: 140%;
  height: 180%;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}

.button2:after {
  content: "";
  position: absolute;
  left: 55%;
  transform: translateX(-50%) scaleY(1) scaleX(1.45);
  top: 180%;
  width: 160%;
  height: 190%;
  background-color: #fff;
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}

.button2:hover {
  color: #0092ca;
  border: 2px solid #0092ca;
}

.button2:hover:before {
  top: -35%;
  background-color: #fff;
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

.button2:hover:after {
  top: -45%;
  background-color: #fff;
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

/* 🟦 Animation Hover des Liens */
.hover-underline-animation {
  position: relative;
  color: #0092ca;
  padding-bottom: 5px;
  transition: all .3s ease;
}

.hover-underline-animation:after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #0092ca;
  transition: transform 0.25s ease-out;
}
.cta:hover .hover-underline-animation:after {
  transform: scaleX(1);
  color: #0092ca; /* Vert */
}
.cta .hover-underline-animation:hover{
  color:#0092ca;
}


.header-inf {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding:10px 20px;
  background-color: #f9f9f9; 
  border-radius: 8px;
  margin: 20px 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Ombre subtile */
}

.container{
  margin: 0;
}

.hero-section {
  background: linear-gradient(to top, #000, transparent),url("../img/accueil image/head.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  color: white;
  text-align: center;
  padding: 20px;
  height: 520px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;

}


.hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: bold;
}
.hero-content .prg{
  padding: 5px 35px;
  width: 550px;
  text-wrap: wrap;
}
.hero-content p {
  font-size: 16px;
  margin: 5px 0 20px;
}

/* Barre de recherche */
.search-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3px;
}

.input-container {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 10px;
  border-radius: 8px;
  width: 400px;
  border: 2px solid #fff;
}

.input-container input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 14px;
}
.search-bar button i{
  font-size: larger;
  transform: translateY(3px);
}
@media (max-width: 600px) {
  .search-bar {
      gap: 3px;
  }

  .input-container {
      width: 300px;
  }
  .search-bttn{
    padding: 10px 20px;
  }

}
.annonce-prd{
 padding: 20px 0 50px 0;
}
.annonce-list{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  border-radius: 8px;
  margin: 10px 0;
  padding-top: 20px;
}


.product {
  position: relative;
  border: none;
  background-color: #fff;
  border-radius: 30px;
  padding: 0;
  width: 370px;
  text-align: start;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.product:hover {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15);
  transform: scale(1.04);
}

/* Image */
.product img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 0;
}

/* Carousel */
.carousel {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.carousel-inr {
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
}

.carousel-inr img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 0;
}

.carousel-item {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.carousel-item.active {
  opacity: 1;
}

/* Boutons */
.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  border: none;
  padding: 6px 12px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
}

.carousel-control:hover {
  background: rgba(0, 0, 0, 0.7);
}

.prev { left: 10px; }
.next { right: 10px; }

/* Badge */
.badge {
  position: absolute;
  top: 15px;
  right: 15px;
  width: fit-content;
  background: #0092ca;
  color: white;
  padding: 5px 12px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  z-index: 100;
}

/* Détails */
.détails {
  padding: 20px;
  background-color: #fff;
}

.product h3 {
  margin: 0 0 5px 0;
  color: #555;
  font-size: 18px;
}

.product p {
  font-size: 16px;
  margin-bottom: 8px;
  color: #777;
}

.wilaya {
  color: #555;
  font-size: 17px;
  font-weight: 500;
}

/* Features */
.features {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  font-size: 14px;
  color: #666;
}
.iconss{
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.features span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Prix */
.détails .prix {
  font-size: 20px;
  font-weight: bold;
  color: #333;
}

/* Bouton détails */
.button-detail {
  padding:20px 20px;
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.button-detail .type_ann{
  font-size: large;
  padding: 0.4em 1.2em;
  background-color: rgb(231, 231, 231);
  border-radius: 30px;
  color: #333;
}
.pr{
  border-radius: 30px;
}



.ville{
  max-height: 700px;
  height: 600px;
  width: 100%;
  margin:  0;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ville .inf {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
 background-color: #fff;
}
.ville .inf h2{
   margin-bottom: 20px;
   color: #333;
   text-align: start;
  font-size: 30px;
}
.ville .inf p{
  color: #666;
}
.ville .card {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: #fff;
  display: flex;
  gap: 5px;
  padding: .4em;
}

.ville .card .boxes {
  position: relative;
  height: 100%;
  flex: 1;
  overflow: hidden;
  cursor: pointer;
  border-radius: 8px;
  transition: all .5s;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.boxes.alger{
  background: linear-gradient(to top, #000, transparent),url("../img/accueil image/alger.jpg");
  transition-delay:0ms ;
}
.boxes.oran{
  background: linear-gradient(to top, #000, transparent),url("../img/accueil image/Oran2.jpeg");
  transition-delay:.2s ;
}
.boxes.annaba{
  background: linear-gradient(to top, #000, transparent),url("../img/accueil image/annaba1.jpeg");
  transition-delay:.4s ;

}

.boxes.setif{
  background: linear-gradient(to top, #000, transparent),url("../img/accueil image/setif.jpg");
  transition-delay:.6s ;
}

.boxes span{
  position: absolute;
  left: 10px;
  top: 10px;
  font-size:x-large;
  font-weight: 600;
  color: #fff;
  transition:left .5s ease-in-out ;
}
.boxes p{
  color: #fff;
  font-size: large;
  position: absolute;
  bottom:30px;
  text-align: center;
}


.ville .card .boxes:hover {
  flex: 2;
  span{
    left: 44%;
  }
}





.contact-form{
  height: 500px;
  width: 100%;
  display: flex;
  gap: 45px;
  border-radius: 8px;
  padding: 10px;
  background-color:#fff;
  margin: 0;

}

.contact-form .logo-email{
  background: url("../img/accueil image/emailimage.png");
  height: 100%;
  width: 48%;
  border-radius: 8px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.contact-form .form{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 48%;
  border-radius: 8px;
  background-color: #fff;
}




#contact-frm {
  width: 500px;
  margin: 50px auto;
  padding: 30px;
  background: #fff;
  border-radius: 10px;
}

h2 {
  text-align: center;
  color: #0092ca;
  margin-bottom: 20px;
}

/* Styles des champs de formulaire */
.form-inp{
  position: relative;
  margin-bottom: 20px;
}
.form-inp input,textarea{
  background-color:#ECF0F1;
  outline-color: #0092ca;
}

.form-control {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  transition: 0.3s;
}

.form-control:focus {
  border-color: #0092ca;
  box-shadow: 0 0 5px rgba(13, 110, 253, 0.5);
  animation: inputFocus 0.3s ease-out;
}

@keyframes inputFocus {
  from { box-shadow: 0 0 0 rgba(0, 146, 202, 0); }
  to { box-shadow: 0 0 0 3px rgba(0, 146, 202, 0.2); }
}
.form-label {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-80%);
  background: #f8f9fa;
  padding: 0 5px;
  color: #6c757d;
  transition: 0.3s;
}

.form-control:focus + .form-label,
.form-control:not(:placeholder-shown) + .form-label {
  top: 5px;
  left: 10px;
  font-size: 12px;
  color: #0092ca;
}

/* Bouton de soumission */
#submit-frm {
  width: 100%;
  padding: 12px;
  
}

footer{
  height: auto;
  width: 100%;
  background-color: #1F2937;
  position: relative;
  bottom: 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.274) ;
}

footer .links-cards{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 50px;
  gap: 30px;
}


footer .links-cards .company-name{
  height:100% ;
  width: 280px;
  margin-right:50px;
}
footer .links-cards .company-name p{
  color: #ffffffa3;
  font-size: 18px;
  margin-top: 32px;
}
footer .links-cards .company-name h1{
  color: #fff;
}
footer .links-cards .links{
  height:100% ;
  width:300px ;
  margin: 0 10px;
  flex: 1 1 200px;
}
footer .links-cards .links h2{
  color: #fff;
  text-align: start;
  padding:0 10px;
}
footer .links-cards .links ul{
  list-style: none;
  width: 100%;
  height: auto;
}

footer .links-cards .links ul li a{
  height: 40px;
  width: 100%;
  padding:0 10px;
  display: flex;
  align-items: center;
  margin: 5px 0;
  text-decoration: none;
  outline: none;
  color: #ffffffa3;
  transition: all .3s ease;
}
footer .links-cards .links ul li a:hover{
  color: #fff;
}
footer .links-cards .company-name,
  footer .links-cards .links {
    width: 100%;
    max-width: 400px;
  }

.logo-link  .logo-link{
   display: flex;
   
}
.logo-link p{
  text-decoration: none;
  outline: none;
  color: #ffffffa3;
  transition: all .3s ease;
}

.logo-link .email-div{
  height: 40px;
  width: 100%;
  margin: 5px 10px;
}
.logo-link .email-div p{
  color: #ffffffa3;
  transition: all .3s ease;
}
.logo-link .email-div p:hover{
  color: #fff;
}
.logo-link .email-div i{
  font-size: large;
  margin-right: 5px;
}
.copyright{
  height: 50px;
  width: 100%;
  background-color: #0092ca;
  display: flex;
  justify-content: center;
  align-items: center;
}
.copyright a{
  color: #fff;
  text-decoration: none;
  margin-left: 5px;
}

.button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #0092ca;
  border: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 0px 4px rgba(180, 160, 255, 0.253);
  cursor: pointer;
  transition-duration: 0.3s;
  overflow: hidden;
  position: fixed;
  right: 20px;
  bottom: 100px;
  z-index: 1000;
}
.svgIcon {
  width: 12px;
  transition-duration: 0.3s;
}

.svgIcon path {
  fill: white;
}

.button:hover {
  width: 120px;
  border-radius: 50px;
  transition-duration: 0.3s;
  background-color: #00a3e4;
  align-items: center;
}

.button:hover .svgIcon {
  /* width: 20px; */
  transition-duration: 0.3s;
  transform: translateY(-200%);
}

.button::before {
  position: absolute;
  left: 0px;
  padding-left: 23px;
  bottom: -20px;
  content: "Back to Top";
  color: white;
  /* transition-duration: .3s; */
  font-size: 0px;;
}

.button:hover::before {
  font-size: 13px;
  opacity: 1;
  bottom: unset;
  /* transform: translateY(-30px); */
  transition-duration: 0.3s;
}


/* Responsive */
@media (max-width: 576px) {
  #contact-form {
      padding: 20px;
  }
}




/* Responsive design pour les petits écrans */
@media (max-width: 768px) {
  header a{
    font-size: 20px;
  }
  
  .header-inf {
      flex-direction: column;
      text-align: center;
  }

  .text-inf {
      max-width: 100%;
      margin-bottom: 20px;
  }
  .text-inf .ctaa{
    margin-top: 10px;
  }

  .image img {
      width: 100%; /* L'image prend toute la largeur sur les petits écrans */
  }
}


.hamburger{
  display: none;
}

/* ------------------------------------------ */
.card-agences{
  display: flex;
  justify-content: center;
  height: auto;
  width: 100%;
  background-color: #fff;
  padding: 10px;
}
.cards {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: row;
  width: fit-content;
  flex-wrap: wrap;
  flex-shrink: 2;
  border-radius: 8px;
  gap: 10px;
}

.cards .red {
  background-color: #f43f5e;
}

.cards .blue {
  background-color: #3b82f6;
}

.cards .green {
  background-color: #22c55e;
}

.cards .card { 
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  height: 250px;
  min-width: 400px;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  transition: 400ms;
}

.cards .card p.tip {
  font-size: 1em;
  font-weight: 700;
}

.cards .card p.second-text {
  font-size: .7em;
}

.cards .card:hover {
  transform: scale(1.1, 1.1);
}

.cards:hover > .card:not(:hover) {
  filter: blur(10px);
  transform: scale(0.9, 0.9);
}
.voir-plus{
   display: flex;
   justify-content: center;
   margin-top: 30px;
}
.voir-plus a{
  text-decoration: none;
  text-transform: capitalize;
}







/* page details */

.haeder-inf {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  height: auto;
  width: 100%;
  gap: 20px;
  padding: 20px;
  background:transparent; 
}

#map, .splide {
  max-width: auto;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
#map{
  flex: 1;
}
.splide{
  flex: 2;
}

#map iframe {
  width: 100%;
  height: 100%;
  border-radius: 8pxpx;
  border: none;
}

.splide {
  position: relative;
}
.splide__track{
  width: 100%;
  height: 100%;
}
.splide__slide img {
  width: 100%;
  height: 100%;
  object-fit:cover;
  border-radius: 8px;
}


 .property-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1200px;
  margin: 20px auto;
  background: transparent;
  border-radius: 12px;
}

.property-info {
  flex: 2;
  padding: 20px;
  background: white;
  border-radius: 12px;
}

.property-info h1 {
  font-size: 22px;
  color: #222;
  margin-bottom: 10px;
}
.property-info p{
  color: #555;
}
.property-info i{
   color: #0092ca;
}
.location {
  font-size: 14px;
  color: #555;
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 15px 0;
}

.property-details {
  display: flex;
  gap: 15px;
  margin: 15px 0;
}

.property-details span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: #444;
}
h2 {
  font-size: 18px;
  margin-top: 15px;
  color: #222;
}
h3 {
  text-align: start;
  font-size: 18px;
  margin: 15px 0;
  color: #222;
}

.featuress {
  list-style: none;
  padding:5px 0;
  color: #555;
}

.featuress li {
  margin: 5px 0;
  padding-left: 20px;
  position: relative;
}

.featuress li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #007BFF;
}

.property-sidebar {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.price-box {
  background: white;
  padding: 20px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.price-box h2 {
  font-size: 22px;
  color: #007BFF;
}

.contact-button,
.visit-button {
  display: block;
  width: 100%;
  margin-top: 10px;
  padding: 10px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  border: 2px solid #0092ca;
}



.visit-button {
  background: white;
  border: 1px solid #007BFF;
  color: #007BFF;
}

.visit-button:hover {
  background: #f0f4ff;
}

.agency-info {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.agent-details {
  display: flex;
  align-items: center;
  gap: 10px;
}


.agency-info .bxs{
  margin: 15px 0;
}
.agent-photo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.agency-info p {
  font-size: 17px;
  color: #333;
  margin:  0;
}

.agency-info i {
  color: #007BFF;
  margin-right: 5px;
}

/* 🟢 Tablettes et Mobiles */
@media screen and (max-width: 1024px) {
 
  header{
    justify-content: start; 
    gap: 8px;
  }
  .nav-links {
    clip-path: polygon(0 0, 100% 0, 50% 0, 50% 0); 
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 80px;
    left: 0px;
    width: 50%;
    background: #fff;
    text-align: center;
    padding: 15px 20px;
    gap: 0px;
    border-radius: 8px;
    z-index: 12000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.507);
    transition: all .5s ease-in-out;
  }
 
 
  .nav-links.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }

  .nav-links li{
      padding: 10px 0;
      width: 100%;
      margin: 5px 0;
      border-radius: 8px;
      background-color: #f9f9f9;
  }
  .links-cnx {
      position: absolute;
      right:0px;
      
  }
 
  .inf{
    align-items: center;
  }

  .hamburger {
      display: block;
      background: none;
      border: none;
      font-size: 30px;
      color: #005792;
      cursor: pointer;
  }
  footer .links-cards{
    flex-direction: column;
  }
  .ville{
    flex-direction: column;
    text-align: center;
  }
  .ville h2{
    font-size: 2rem;
  }
  .haeder-inf {
    flex-direction: column;
    align-items: center;
  }
  
  #map, .splide {
    width: 90%;
    max-width: none;
  }
  
  .property-container {
    flex-direction: column;
}

.property-info,
.property-sidebar {
    max-width: 100%;
}
}

/* 🟢 Petits écrans */
@media screen and (max-width: 768px) {
  
  header {
      padding: 0 15px;
  }

  .nav-links {
    clip-path: polygon(0 0, 100% 0, 50% 0, 50% 0);
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 80px;
    right: 0px;
    width: 50%;
    background: #fff;
    text-align: center;
    padding: 15px 20px;
    gap: 0px;
    border-radius: 8px;
    z-index: 12000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.507);
    transition: all .5s ease-in-out;
  }
  .links-cnx {
    gap: 5px;
  }
  .links-cnx .ajt a{
   padding-right:5px;
   padding-left:5px;
  }
  .links-cnx .ajt .firstbien{
    display: none;
  }
  .links-cnx .ajt .lastbien{
    display: block;
  }
  .logo-link  .logo-link{
    justify-content: center;
 }
 .hero-content h1 {
  font-size: 1.9rem;
  font-weight: bold;
}
.hero-content .prg{
  padding: 5px 100px;
  width: 550px;
  text-wrap: wrap;
}
.hero-content p {
  font-size: 15px;
  margin: 5px 0 20px;
}


.logo-email{
  display: none;
}
.contact-form .form{
  width: 100%;
}

#contact-frm{
  width: 100%;
}
.ville{
  flex-direction: column;
  text-align: center;
}
.ville .card{
  flex-direction: column;

}
.ville .card .boxes:hover {
  flex: 7;
}
.haeder-inf {
  padding: 10px;
}

#map, .splide {
  width: 100%;
  height: 300px;
}

.badge {
  font-size: 12px;
  padding: 4px 10px;
}
.property-container {
  padding: 10px;
}

.property-info h1 {
  font-size: 18px;
}

.property-details span,
.agency-info p {
  font-size: 13px;
}

.contact-button,
.visit-button {
  font-size: 14px;
}

.information-users{
  right: 0;
}


.dropdownnn{
  top:  59px;
}
}


.register-banner {
  background: #0051ca;
  color: white;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 8px;
  margin: 20px auto;
  max-width: 1200px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.register-banner p {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}

.register-btn {
  background: white;
  color: #0092ca;
  padding: 10px 15px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
  text-transform: capitalize;
}

.register-btn:hover {
  background: #0092ca;
  color: white;
}

@media (max-width: 768px) {
  .register-banner {
      flex-direction: column;
      text-align: center;
      gap: 10px;
  }
}

.curved {
  border-bottom-left-radius: 50% 8%;
  border-bottom-right-radius: 50% 8%;
}
#btn-up{
display: none;
}


.information-users{
  position:relative;
  display: flex;
  gap: 7px;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: clamp(14px, 1.5vw, 17px);
  font-weight: bold;
  cursor: pointer;
  text-transform: capitalize;
  transition: all .3s ease;
  color:  #09090993;
  background-color: #fcfcfc ;  
}

.information-users:hover{
     color: #0092ca;
}
.dropdownnn{
  clip-path: polygon(0 0, 100% 0, 50% 0, 50% 0); 
  background-color: #fcfcfc;
  position:absolute;
  right: 0;
  border-radius: 8px;
  list-style: none;
  z-index: 20000;
  transition: all .5s ease;
}
.dropdownnn.active {
  clip-path: polygon(
    0 0, 100% 0, 
    100% 100%, 0 100%
  );
}
.dropdownnn li{
  padding: 7px 0px;
  margin: 3px 0px;
  transition: all .3s ease;
}
.dropdownnn li:hover{
  background-color: #eceaea;
}


.container-users:hover .dropdownnn{
  clip-path: polygon(
    0 0, 100% 0, 
    100% 100%, 0 100%
  );
}







.ad-type-container {
  text-align: center;
  padding: 40px 20px;
  background-color: #f9fbfd;
  font-family: 'Segoe UI', sans-serif;
}

.ad-type-container h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #121212;
}

.ad-type-options {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.ad-option {
  background: white;
  border-radius: 12px;
  padding: 30px 20px;
  width: 300px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: 0.3s ease;
  cursor: pointer;
}

.ad-option:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.icon-circle {
  background-color: #e6f0ff;
  color: #3b82f6;
  width: 50px;
  height: 50px;
  margin: 0 auto 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.ad-option h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #121212;
}

.ad-option p {
  font-size: 14px;
  color: #555;
}




















/* Style global du formulaire */
form#creer-annonce-form {
  max-width: 800px;
  margin: 40px auto;
  padding: 30px;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 50, 0.1);
  font-family: 'Segoe UI', sans-serif;
}

fieldset {
  border: none;
  margin-bottom: 30px;
}

legend {
  font-size: 1.4rem;
  font-weight: bold;
  color: #0092ca;
  margin-bottom: 15px;
  border-bottom: 2px solid #0092ca;
  padding-bottom: 5px;
}

form#creer-annonce-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
  color: #333;
}

form#creer-annonce-form input,
form#creer-annonce-form select,
form#creer-annonce-form textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ccc;
  border-radius: 12px;
  margin-bottom: 20px;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

form#creer-annonce-form input:focus,
form#creer-annonce-form select:focus,
form#creer-annonce-form textarea:focus {
  border-color: #0092ca;
  box-shadow: 0 0 0 3px rgba(11, 61, 145, 0.2);
  outline: none;
}

.select-wrapper {
  position: relative;
}
.frm-btn{
  width: 100%;
}
/* Responsive */
@media (max-width: 600px) {
  
  form#creer-annonce-form {
    padding: 20px;
  }

  legend {
    font-size: 1.2rem;
  }
}
select {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1em;
  background-color: #fff;
  color: #333;
  appearance: none; /* Supprime le style par défaut du navigateur */
  -webkit-appearance: none; /* Pour les navigateurs WebKit (Chrome, Safari) */
  -moz-appearance: none; /* Pour Firefox */
  cursor: pointer;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Style au survol */
select:hover {
  border-color: #007bff;
}

/* Style lorsqu'il est focus (actif) */
select:focus {
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
  outline: none; /* Supprime la bordure par défaut du navigateur */
}



























/* formulaire profil clien */


.services-section {
  padding: 60px 20px;
  text-align: center;
  width: 100%;
  min-height: 600px;
  margin: 0 auto;
  background-image: linear-gradient(112.5deg, rgb(214, 214, 214) 0%, rgb(214, 214, 214) 10%,rgb(195, 195, 195) 10%, rgb(195, 195, 195) 53%,rgb(176, 176, 176) 53%, rgb(176, 176, 176) 55%,rgb(157, 157, 157) 55%, rgb(157, 157, 157) 60%,rgb(137, 137, 137) 60%, rgb(137, 137, 137) 88%,rgb(118, 118, 118) 88%, rgb(118, 118, 118) 91%,rgb(99, 99, 99) 91%, rgb(99, 99, 99) 100%),linear-gradient(157.5deg, rgb(214, 214, 214) 0%, rgb(214, 214, 214) 10%,rgb(195, 195, 195) 10%, rgb(195, 195, 195) 53%,rgb(176, 176, 176) 53%, rgb(176, 176, 176) 55%,rgb(157, 157, 157) 55%, rgb(157, 157, 157) 60%,rgb(137, 137, 137) 60%, rgb(137, 137, 137) 88%,rgb(118, 118, 118) 88%, rgb(118, 118, 118) 91%,rgb(99, 99, 99) 91%, rgb(99, 99, 99) 100%),linear-gradient(135deg, rgb(214, 214, 214) 0%, rgb(214, 214, 214) 10%,rgb(195, 195, 195) 10%, rgb(195, 195, 195) 53%,rgb(176, 176, 176) 53%, rgb(176, 176, 176) 55%,rgb(157, 157, 157) 55%, rgb(157, 157, 157) 60%,rgb(137, 137, 137) 60%, rgb(137, 137, 137) 88%,rgb(118, 118, 118) 88%, rgb(118, 118, 118) 91%,rgb(99, 99, 99) 91%, rgb(99, 99, 99) 100%),linear-gradient(90deg, rgb(195, 195, 195),rgb(228, 228, 228)); background-blend-mode:overlay,overlay,overlay,normal;
  border-radius: 8px;
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); */

}

.services-title {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 10px;
}

.services-subtitle {
  color: #666;
  margin-bottom: 40px;
  font-size: 18px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
  
}

.service-item {
  background-color: #fff;
  height: 270px;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.068);
  transform: scale(0);
  opacity: 0;
}
.service-item:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.178);
}
.service-item.animate {
  animation: popIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}
.service-item.animate:nth-child(1) { animation-delay: 0.1s; }
.service-item.animate:nth-child(2) { animation-delay: 0.2s; }
.service-item.animate:nth-child(3) { animation-delay: 0.3s; }
.service-item.animate:nth-child(4) { animation-delay: 0.4s; }

@keyframes popIn {
  0% { transform: scale(0); opacity: 0; }
  80% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}


.service-icon {
  font-size: 40px;
  color: #2563eb;
  margin-bottom: 15px;
}

.service-heading {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
}

.service-description {
  font-size: 16px;
  color: #666;
}



.containere {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
/* Fil d'Ariane */
.breadcrumb {
  background-color: white;
  border-bottom: 1px solid #e5e7eb;
  padding: 0.75rem 1rem;
}

.breadcrumb-links {
  font-size: 0.875rem;
  color: #6b7280;
}

.breadcrumb-links a {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb-links a:hover {
  color: #3b82f6;
}

.breadcrumb-links span {
  color: #1f2937;
  font-weight: 500;
}

/* Contenu principal */
main {
  padding: 1.5rem 0;
}

/* Gallery Styles */
.gallery {
  position: relative;
  height: 500px;
  margin-bottom: 20px;
  margin-top: 10px;
}

.gallery-main .splide__slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-main .splide__slide img {
  width:100%;
  max-width: 100%;
  height: auto;
  max-height: 500px; /* maximum height for large screens */
  object-fit: contain;
  background: #fff;
}

.gallery-thumbnails {
  margin-top: 10px;
  height: 80px;
  box-shadow: none;
}

.gallery-thumbnails .splide__slide {
  opacity: 0.6;
  transition: opacity 0.3s;
  cursor: pointer;
  border-radius: 8px;
}

.gallery-thumbnails .splide__slide.is-active {
  opacity: 1;
}

.gallery-thumbnails .splide__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.gallery-controls {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0,0,0,0.5);
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.gallery-fullscreen {
  background: none;
  border: none;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0;
}

/* Section informations */
.property-info {
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.property-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.property-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.property-address {
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.property-meta {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: #6b7280;
}

.property-meta-item {
  display: flex;
  align-items: center;
  margin-right: 1rem;
}

.property-price {
  text-align: right;
}

.property-price-value {
  font-size: 1.875rem;
  font-weight: 700;
  color: #3b82f6;
  margin-bottom: 0.5rem;
}

.property-status {
  background-color: #d1fae5;
  color: #065f46;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  display: inline-block;
}

.property-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .property-features {
      grid-template-columns: repeat(4, 1fr);
  }
}

.property-feature {
  background-color: #f9fafb;
  border-radius: 0.5rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.property-feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b82f6;
  margin-bottom: 0.5rem;
}

.property-feature-label {
  font-size: 0.875rem;
  color: #6b7280;
}

.property-feature-value {
  font-weight: 600;
}

.property-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.property-tag {
  background-color: #f3f4f6;
  color: #1f2937;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
}

.property-actions {
  display: flex;
  gap: 1rem;
}

.property-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
  white-space: nowrap;
  transition: background-color 0.2s;
}

.property-button-primary {
  background-color: #3b82f6;
  color: white;
}

.property-button-primary:hover {
  background-color: rgba(59, 130, 246, 0.9);
}

.property-button-secondary {
  border: 1px solid #d1d5db;
  color: #374151;
}

.property-button-secondary:hover {
  background-color: #f9fafb;
}

.property-button-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d1d5db;
  border-radius: 9999px;
  color: #374151;
  transition: background-color 0.2s;
}

.property-button-icon:hover {
  background-color: #f9fafb;
}

/* Onglets */
.tabss {
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  overflow: hidden;
}

.tabss-header {
  border-bottom: 1px solid #e5e7eb;
  overflow-x: auto;
}

.tabss-list {
  display: flex;
}

.tab-button {
  padding: 1rem 1.5rem;
  font-weight: 500;
  white-space: nowrap;
  border: 2px solid transparent;
  transition: color 0.2s;
  outline: none;
  cursor: pointer;
}

.tab-button.active {
  color: #3b82f6;
  border-bottom-color: #3b82f6;
}

.tab-button:not(.active) {
  color: #6b7280;
}

.tab-button:not(.active):hover {
  color: #1f2937;
}

.tabss-content {
  padding: 1.5rem;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.tab-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Contenu des onglets */
.tab-section {
  margin-bottom: 1.5rem;
}

.tab-section-title {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .feature-list {
      grid-template-columns: 1fr 1fr;
  }
}

.feature-item {
  display: flex;
  align-items: flex-start;
}

.feature-icon {
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b82f6;
  margin-right: 0.5rem;
  margin-top: 0.125rem;
}

.feature-label {
  font-weight: 500;
}

.feature-value {
  color: #6b7280;
}

.financial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .financial-grid {
      grid-template-columns: 1fr 1fr;
  }
}

.financial-card {
  background-color: #f9fafb;
  padding: 1rem;
  border-radius: 0.5rem;
}

.financial-label {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.25rem;
}

.financial-value {
  font-size: 1.25rem;
  font-weight: 600;
}

/* Plan */
.plan-container {
  background-color: #f3f4f6;
  border-radius: 0.5rem;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.plan-image {
  position: relative;
  aspect-ratio: 4/3;
  background-color: white;
  border-radius: 0.5rem;
  overflow: hidden;
}

.plan-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.plan-actions {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  gap: 0.5rem;
}

.plan-button {
  background-color: white;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #374151;
  transition: background-color 0.2s;
}

.plan-button:hover {
  background-color: #f9fafb;
}

.plan-rooms {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .plan-rooms {
      grid-template-columns: repeat(4, 1fr);
  }
}

.plan-room {
  background-color: #f9fafb;
  padding: 1rem;
  border-radius: 0.5rem;
}

.plan-room-header {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.plan-room-color {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 9999px;
  margin-right: 0.5rem;
}

.plan-room-name {
  font-weight: 500;
}

.plan-room-size {
  font-size: 0.875rem;
  color: #6b7280;
}

/* Quartier */
.neighborhood-map {
  background-color: #f3f4f6;
  border-radius: 0.5rem;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.neighborhood-map-container {
  position: relative;
  height: 400px;
}

.neighborhood-map-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.neighborhood-map-fullscreen {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: white;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #374151;
  transition: background-color 0.2s;
}

.neighborhood-map-fullscreen:hover {
  background-color: #f9fafb;
}

.neighborhood-map-filters {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.neighborhood-map-filter {
  background-color: white;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #374151;
  transition: background-color 0.2s;
}

.neighborhood-map-filter:hover {
  background-color: #f9fafb;
}

.neighborhood-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .neighborhood-grid {
      grid-template-columns: 1fr 1fr;
  }
}

.neighborhood-place {
  display: flex;
  align-items: flex-start;
}

.neighborhood-place-icon {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  border-radius: 9999px;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.neighborhood-place-name {
  font-weight: 500;
}

.neighborhood-place-distance {
  font-size: 0.875rem;
  color: #6b7280;
}

.neighborhood-stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.neighborhood-stat {
  display: flex;
  flex-direction: column;
}

.neighborhood-stat-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.25rem;
}

.neighborhood-stat-label {
  font-size: 0.875rem;
  font-weight: 500;
}

.neighborhood-stat-value {
  font-size: 0.875rem;
  color: #6b7280;
}

.neighborhood-stat-bar {
  height: 0.5rem;
  background-color: #e5e7eb;
  border-radius: 0.25rem;
  overflow: hidden;
}

.neighborhood-stat-progress {
  height: 100%;
  background-color: #3b82f6;
  border-radius: 0.25rem;
}

.neighborhood-description {
  background-color: #f9fafb;
  padding: 1rem;
  border-radius: 0.5rem;
}







/* Biens similaires */
.similar {
  margin-bottom: 2rem;
}

.similar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.similar-title {
  font-size: 1.5rem;
  font-weight: 700;
}

.similar-link {
  color: #3b82f6;
  font-weight: 500;
  text-decoration: none;
  transition: text-decoration 0.2s;
}

.similar-link:hover {
  text-decoration: underline;
}

.similar-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .similar-grid {
      grid-template-columns: repeat(3, 1fr);
  }
}

.similar-card {
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  overflow: hidden;
}

.similar-card-image {
  position: relative;
  height: 12rem;
}

.similar-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.similar-card-price {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background-color: white;
  color: #3b82f6;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
}

.similar-card-content {
  padding: 1rem;
}

.similar-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.similar-card-address {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.similar-card-features {
  display: flex;
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.75rem;
}

.similar-card-feature {
  display: flex;
  align-items: center;
  margin-right: 0.75rem;
}

.similar-card-feature-icon {
  margin-right: 0.25rem;
}

.similar-card-link {
  color: #3b82f6;
  font-weight: 500;
  font-size: 0.875rem;
  text-decoration: none;
  transition: text-decoration 0.2s;
}

.similar-card-link:hover {
  text-decoration: underline;
}


/* Polices */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
}

@font-face {
  font-family: 'Pacifico';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');
}

/* Icônes */
@font-face {
  font-family: 'Remixicon';
  src: url('https://cdn.jsdelivr.net/npm/remixicon@4.5.0/fonts/remixicon.woff2') format('woff2');
  font-display: swap;
}

[class^="ri-"], [class*=" ri-"] {
  font-family: 'Remixicon' !important;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.ri-arrow-left-line:before { content: "\ea64"; }
.ri-search-line:before { content: "\f0d1"; }
.ri-user-line:before { content: "\f364"; }
.ri-map-pin-line:before { content: "\ee8b"; }
.ri-building-line:before { content: "\eac0"; }
.ri-home-4-line:before { content: "\ed5b"; }
.ri-hotel-bed-line:before { content: "\ed5f"; }
.ri-shower-line:before { content: "\f0e1"; }
.ri-car-line:before { content: "\eb3f"; }
.ri-calendar-line:before { content: "\eb0e"; }
.ri-phone-line:before { content: "\efce"; }
.ri-heart-line:before { content: "\ed2e"; }
.ri-share-line:before { content: "\f0d8"; }
.ri-checkbox-circle-line:before { content: "\eb82"; }
.ri-train-line:before { content: "\f2b7"; }
.ri-shopping-bag-line:before { content: "\f0e3"; }
.ri-restaurant-line:before { content: "\f00f"; }
.ri-school-line:before { content: "\f0b4"; }
.ri-zoom-in-line:before { content: "\f42e"; }
.ri-download-line:before { content: "\ec5e"; }
.ri-fullscreen-line:before { content: "\ed0e"; }
.ri-bus-line:before { content: "\eae5"; }
.ri-hospital-line:before { content: "\ed5a"; }
.ri-park-line:before { content: "\ef9b"; }
.ri-lightbulb-line:before { content: "\ee6c"; }
.ri-mail-line:before { content: "\eef3"; }
.ri-time-line:before { content: "\f2b4"; }
.ri-star-fill:before { content: "\f186"; }
.ri-star-half-fill:before { content: "\f187"; }
.ri-facebook-fill:before { content: "\ecbc"; }
.ri-instagram-fill:before { content: "\ee1e"; }
.ri-linkedin-fill:before { content: "\ee8a"; }
.ri-youtube-fill:before { content: "\f3a1"; }
.ri-visa-line:before { content: "\f2f2"; }
.ri-mastercard-line:before { content: "\eef5"; }
.ri-paypal-line:before { content: "\ef9d"; }
.ri-bank-card-line:before { content: "\ea8a"; }

.availability-section{
  margin: 20px 0;
}







/* SECTION AGENCE - FOND CLAIR ET ESPACEMENT */
.section-agence {
  background-color: transparent;
  padding: 60px 20px;
  text-align: center;

}

/* CONTENEUR CENTRAL */
.agence-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 15px;
}

/* CONTENU TEXTUEL */
.agence-texte {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.agence-texte a{
  margin: 10px 0;
}
/* ICÔNE DÉCORATIVE */
.agence-icone {
  font-size: 40px;
  color: #2979FF;
  margin-bottom: 10px;
}

/* TITRE PRINCIPAL */
.agence-titre {
  font-size: 2rem;
  font-weight: 700;
  color: #0A0A0A;
  margin-bottom: 15px;
}

/* SOUS-TITRE */
.agence-soustitre {
  font-size: 1.25rem;
  color: #3F3F3F;
  margin-bottom: 0;
  margin-bottom: 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .agence-titre {
    font-size: 1.5rem;
  }

  .agence-soustitre {
    font-size: 1rem;
  }

  .agence-icone {
    font-size: 32px;
  }
}



.hidden {
  opacity: 0;
  transition: all 0.8s ease-in-out;
}

.show {
  opacity: 1;
}

.hidden.slide-up {
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.8s ease-in-out;
}
.show.slide-up {
  opacity: 1;
  transform: translateY(0);
}

.hidden.zoom {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.6s ease-in-out;
}
.show.zoom {
  opacity: 1;
  transform: scale(1);
}

.hidden.slide-left {
  opacity: 0;
  transform: translateX(-100%);
  filter: blur(5px);
  transition: all 1s ease-in-out;
}
.show.slide-left {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}


.hidden.slide-right {
  opacity: 0;
  transform: translateX(100%);
  filter: blur(5px);
  transition: all 1s ease;
}
.show.slide-right {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}

