@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');
@font-face {
  font-family: 'Abadi';
  src: url('../fonts/Abadi.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

 /* ============================================
   HEADER / NAVBAR - RESPONSIVE
   ============================================ */
 
/* ===== POLICE POUR LES LIENS DU MENU ===== */
.navbar ul li a {
  font-family: 'Aharoni', Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0.5px;
  font-weight: 600;
}

/* ===== NAVBAR PRINCIPALE ===== */
.navbar {
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

/* ===== CONTAINER DU NAVBAR ===== */
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 40px;
  max-width: 100%;
  position: relative;
}

/* ===== LOGO ===== */
.logo img {
  width: 120px;
  height: auto;
  transition: width 0.3s ease;
  display: block;
}

/* ===== MENU NAVIGATION ===== */
.navbar nav {
  display: flex;
  align-items: center;
}

.navbar ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 35px;
  margin: 0;
  padding: 0;
}

/* ===== LIENS DU MENU ===== */
.navbar ul li a {
  text-decoration: none;
  color: rgb(83, 78, 78);
  position: relative;
  transition: color 0.3s ease;
  display: inline-block;
  padding: 8px 0;
}

/* Effet de soulignement au survol */
.navbar ul li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #1e88e5;
  transition: width 0.3s ease;
}

.navbar ul li a:hover {
  color: #000000;
}

.navbar ul li a:hover::after {
  width: 100%;
}

/* ===== BOUTON CONTACT SPÉCIAL ===== */
.navbar ul li a.btn-contact {
  background: linear-gradient(135deg, #1e88e5, #1565c0);
  color: #fff;
  padding: 10px 25px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.navbar ul li a.btn-contact::after {
  display: none;
}

.navbar ul li a.btn-contact:hover {
  background: linear-gradient(135deg, #1565c0, #0d47a1);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(30, 136, 229, 0.4);
}

/* ===== MENU BURGER (caché par défaut sur desktop) ===== */
.navbar-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  padding: 5px;
  background: transparent;
  border: none;
  z-index: 1001;
}

.navbar-toggle span {
  width: 25px;
  height: 3px;
  background: #333;
  border-radius: 3px;
  transition: all 0.3s ease;
  display: block;
}

/* Animation du burger quand le menu est ouvert */
.navbar-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggle.active span:nth-child(2) {
  opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* ===== OVERLAY POUR FERMER LE MENU ===== */
.navbar-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.navbar-overlay.active {
  display: block;
  opacity: 1;
}

/* ===== MEDIA QUERIES - TABLETTES ===== */
@media (max-width: 1024px) {
  .navbar .container {
    padding: 10px 30px;
  }

  .navbar ul {
    gap: 25px;
  }

  .navbar ul li a {
    font-size: 15px;
  }

  .logo img {
    width: 110px;
  }

  .navbar ul li a.btn-contact {
    padding: 9px 22px;
    font-size: 15px;
  }
}

/* ===== MEDIA QUERIES - PETITE TABLETTE ===== */
@media (max-width: 900px) {
  .navbar .container {
    padding: 12px 25px;
  }

  .navbar ul {
    gap: 20px;
  }

  .navbar ul li a {
    font-size: 14px;
  }

  .logo img {
    width: 105px;
  }
}

/* ===== MEDIA QUERIES - MOBILE ===== */
@media (max-width: 768px) {
  .navbar .container {
    padding: 15px 20px;
  }

  .logo img {
    width: 100px;
  }

  /* Afficher le bouton burger */
  .navbar-toggle {
    display: flex;
  }

  /* Menu mobile - Slide depuis la droite */
  .navbar nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: #fff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    padding-top: 80px;
    overflow-y: auto;
  }

  .navbar nav.active {
    right: 0;
  }

  /* Liste verticale */
  .navbar ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
    align-items: stretch;
  }

  .navbar ul li {
    width: 100%;
    border-bottom: 1px solid #eee;
  }

  .navbar ul li:last-child {
    border-bottom: none;
  }

  /* Liens en pleine largeur */
  .navbar ul li a {
    display: block;
    padding: 18px 30px;
    width: 100%;
    font-size: 16px;
    text-align: left;
  }

  /* Effet de survol adapté au mobile */
  .navbar ul li a::after {
    display: none;
  }

  .navbar ul li a:hover,
  .navbar ul li a:active {
    background: #f8f9fa;
    color: #1e88e5;
  }

  /* Bouton contact adapté au mobile */
  .navbar ul li a.btn-contact {
    background: linear-gradient(135deg, #1e88e5, #1565c0);
    color: #fff;
    border-radius: 0;
    font-weight: 700;
    margin: 15px 20px;
    padding: 15px 25px;
    text-align: center;
    border-radius: 25px;
  }

  .navbar ul li a.btn-contact:hover {
    background: linear-gradient(135deg, #1565c0, #0d47a1);
    transform: none;
    box-shadow: 0 5px 15px rgba(30, 136, 229, 0.4);
  }

  /* Conteneur du bouton contact sans bordure */
  .navbar ul li:has(.btn-contact) {
    border-bottom: none;
  }
}

/* ===== MEDIA QUERIES - PETIT MOBILE ===== */
@media (max-width: 480px) {
  .navbar .container {
    padding: 12px 15px;
  }

  .logo img {
    width: 85px;
  }

  /* Menu prend plus de place sur petit écran */
  .navbar nav {
    width: 85%;
    max-width: 280px;
  }

  .navbar ul li a {
    padding: 16px 25px;
    font-size: 15px;
  }

  .navbar ul li a.btn-contact {
    margin: 12px 15px;
    padding: 14px 22px;
    font-size: 15px;
  }

  .navbar-toggle span {
    width: 22px;
    height: 2.5px;
  }
}

/* ===== MEDIA QUERIES - TRÈS PETIT MOBILE ===== */
@media (max-width: 360px) {
  .navbar .container {
    padding: 10px 12px;
  }

  .logo img {
    width: 75px;
  }

  .navbar nav {
    width: 90%;
    max-width: 260px;
    padding-top: 70px;
  }

  .navbar ul li a {
    padding: 14px 20px;
    font-size: 14px;
  }

  .navbar ul li a.btn-contact {
    margin: 10px 12px;
    padding: 12px 20px;
    font-size: 14px;
  }

  .navbar-toggle span {
    width: 20px;
    height: 2px;
  }
}

/* ===== ORIENTATION PAYSAGE MOBILE ===== */
@media (max-width: 768px) and (orientation: landscape) {
  .navbar nav {
    padding-top: 60px;
    max-height: 100vh;
  }

  .navbar ul li a {
    padding: 12px 25px;
    font-size: 14px;
  }

  .navbar ul li a.btn-contact {
    margin: 10px 15px;
    padding: 12px 20px;
  }
}

/* ===== AMÉLIORATION DE L'ACCESSIBILITÉ ===== */
@media (prefers-reduced-motion: reduce) {
  .navbar nav,
  .navbar-toggle span,
  .navbar ul li a,
  .navbar ul li a::after,
  .navbar-overlay,
  .logo img {
    transition: none;
  }
}

/* Focus visible pour navigation au clavier */
.navbar ul li a:focus,
.navbar-toggle:focus {
  outline: 3px solid #1e88e5;
  outline-offset: 2px;
}

/* États actifs */
.navbar ul li a:active {
  transform: scale(0.98);
}

@media (max-width: 768px) {
  .navbar ul li a:active {
    transform: none;
  }
}

/* ===== AMÉLIORATION POUR ÉCRANS TACTILES ===== */
@media (hover: none) and (pointer: coarse) {
  /* Désactiver les effets de survol sur tactile */
  .navbar ul li a:hover::after {
    width: 0;
  }

  .navbar ul li a.btn-contact:hover {
    transform: none;
  }

  /* Zone tactile minimale de 44px */
  .navbar-toggle {
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* ===== OPTIMISATION PERFORMANCE ===== */
.navbar nav {
  will-change: right;
}

.navbar nav:not(.active) {
  will-change: auto;
}

/* ===== CORRECTIFS POUR IOS SAFARI ===== */
@supports (-webkit-touch-callout: none) {
  /* Fix pour iOS Safari */
  .navbar nav {
    -webkit-overflow-scrolling: touch;
  }

  .navbar-toggle {
    -webkit-tap-highlight-color: transparent;
  }

  .navbar ul li a {
    -webkit-tap-highlight-color: rgba(30, 136, 229, 0.1);
  }
}

/* ===== SCROLLBAR PERSONNALISÉ POUR MENU MOBILE ===== */
@media (max-width: 768px) {
  .navbar nav::-webkit-scrollbar {
    width: 6px;
  }

  .navbar nav::-webkit-scrollbar-track {
    background: #f1f1f1;
  }

  .navbar nav::-webkit-scrollbar-thumb {
    background: #1e88e5;
    border-radius: 3px;
  }

  .navbar nav::-webkit-scrollbar-thumb:hover {
    background: #1565c0;
  }
}

/* ===== ÉTAT ACTIF DE LA PAGE (OPTIONNEL) ===== */
.navbar ul li a.active {
  color: #1e88e5;
  font-weight: 700;
}

.navbar ul li a.active::after {
  width: 100%;
}

@media (max-width: 768px) {
  .navbar ul li a.active {
    background: #f0f8ff;
  }
}

/* ===== OPTIMISATION POUR GRANDS ÉCRANS ===== */
@media (min-width: 1440px) {
  .navbar .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 12px 50px;
  }

  .logo img {
    width: 140px;
  }

  .navbar ul {
    gap: 40px;
  }

  .navbar ul li a {
    font-size: 17px;
    padding: 10px 0;
  }

  .navbar ul li a.btn-contact {
    padding: 12px 30px;
    font-size: 16px;
  }
}

.footer {
  background: #f0f0f2;
  color: #333;
  font-family: 'Poppins', sans-serif;
  padding: 50px 100px 20px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-section {
  flex: 1;
  min-width: 220px;
}

/* --- alignement icône + titre --- */
.footer-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.footer-title i {
  color: #007bff; /* bleu */
  font-size: 20px;
}

.footer-section h4 {
  font-weight: 600;
  margin: 0;
  font-size: 16px;
}

.footer-section p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}
.footer-address .map-link {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.footer-address .map-link:hover {
    text-decoration: underline;
    cursor: pointer;
}


/* --- icônes sociales --- */
.social-links {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #007bff;
  font-size: 18px;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #0056b3;
}

.footer hr {
  margin: 40px 0 20px;
  border: none;
  border-top: 1px solid #eee;
}

.footer-bottom {
  text-align: center;
  font-size: 14px;
  color: #666;
}

.footer-bottom a {
  color: #007bff;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}




/* === HERO AVEC VIDÉO === */
.hero-real-estate {
  position: relative;
  height: 90vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%; /* prend toute la largeur de l'écran */
  height: 400vh; /* prend toute la hauteur de la fenêtre */
  object-fit: contain; /* ✅ Affiche toute la vidéo, sans zoom ni recadrage */
  transform: translate(-50%, -50%);
  z-index: 1;
  background-color: black;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  padding: 0 20px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: #dcdcdc;
  margin-bottom: 15px;
}

.hero-tagline {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 30px;
}

.hero-buttons .btn {
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 1rem;
  margin: 0 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background-color: #1e88e5;
  color: white;
  border: none;
}

.btn-primary:hover {
  background-color: #1565c0;
}

.btn-secondary {
  border: 2px solid #fff;
  background: transparent;
  color: white;
}

.btn-secondary:hover {
  background-color: #fff;
  color: #1e88e5;
}







/* Animations */
@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(30px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}
/* Index */
/* Variables CSS */
:root {
  --primary-color: #1a365d;
  --secondary-color: #2d3748;
  --accent-color: #e53e3e;
  --light-color: #f7fafc;
  --dark-color: #2d3748;
  --text-color: #4a5568;
  --white: #ffffff;
}

/* Reset et base */
/* * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
} */

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

Hero Section Immobilier
.hero-real-estate {
  position: relative;
  height: 50vh;
  background: #2485cf;
  color: #f0f3f5;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(71, 64, 74, 0.4);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 300;
}

.hero-tagline {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  font-style: italic;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}



/* Sections communes */
.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  color: #1e88e5;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 3rem;
  color: var(--text-color);
}

.text-center {
  text-align: center;
}

/* Section Introduction */
.introduction {
  padding: 80px 0;
  background: var(--white);
}

.intro-content h2 {
  font-size: 4rem; /* ou 7rem si tu veux encore plus grand */
  margin-bottom: 1.5rem;
  line-height: 1; /* 🔹 réduit l’espace entre les lignes */
  color: var(--primary-color);
  text-align: center;
}

.intro-content p {
  font-size: 1.5rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: rgb(12, 104, 196);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--text-color);
}

/* //////////////////////  categories  //////////////////////  */
/* Section Références */
.categories {
  padding: 80px 0;
  background: var(--light-color);
}

.projects-grid1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.project-card1 {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px #1e88e5;
  transition: transform 0.3s ease;
}

.project-card1:hover {
  transform: translateY(-5px);
}

.project-image1 {
  height: 500px; /* 🔹 tu peux mettre 800px si tu veux plus grand */
  position: relative;
  overflow: hidden;
}

.project-image1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.project-card1:hover .project-image img {
  transform: scale(1.05);
}

/* 🔹 Le texte directement au-dessus de l’image, sans fond */
.project-content1 {
  position: absolute;
  bottom: 30px; /* distance du bas de l’image */
  left: 30px;   /* distance du bord gauche */
  z-index: 2;
  color: #ffffff; /* texte blanc pour être visible sur l’image */
  text-shadow: 0 2px 10px rgba(0,0,0,0.4); /* petit effet lisible */
}

.project-content1 h3 {
  font-size: 2rem; /* 🔹 plus grand titre */
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.project-content1 p {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.project-type1 {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(30,136,229,0.9); /* léger badge coloré */
  color: #fff;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}


/* //////////////////////  categories  //////////////////////  */

/* Section Services */
.services-real-estate {
  padding: 80px 0;
  background-color: #f8f8f8;
  text-align: center;
}

.services-real-estate .section-title {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #1e88e5;
}

.services-real-estate .section-subtitle {
  color: #777;
  margin-bottom: 40px;
  font-size: 1.1rem;
}

/* === SERVICES - 4 PAR LIGNE - MÊME DESIGN === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card .service-icon {
  font-size: 2.5rem;
  color: #e53e3e;
  margin-bottom: 15px;
}

.service-card h3 {
  margin-bottom: 15px;
  color: #222;
  font-size: 1.3rem;
}

.service-card p {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 15px;
  flex-grow: 1;
}

.service-features {
  list-style: none;
  padding: 0;
  color: #555;
  text-align: left;
  margin-top: -20px;
}

.service-features li {
  margin-bottom: 5px;
  padding-left: 0;
  padding-bottom: 8px; /* Ajout d'espace pour le trait */
  border-bottom: 1px solid rgb(205, 197, 197); /* Trait sous chaque élément */
}

/* Pour le dernier élément, on peut enlever le trait si souhaité */
.service-features li:last-child {
  border-bottom: none;
  
}

.service-features li:before {
  content: none;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .services-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 25px;
  }
}

@media (max-width: 768px) {
  .services-grid {
      grid-template-columns: 1fr;
      gap: 20px;
  }

  .service-card {
      padding: 25px;
  }
}

/* Section Clients */
.clients-section {
  padding: 120px 6%;
  background: var(--light-color);
  display: flex;
  justify-content: center;
  align-items: center;
}

.clients-container {
  display: flex;
  align-items: center;
  gap: 80px;
  flex-wrap: wrap;
}

/* Image agrandie et stylisée */
.clients-image {
  flex: 1.2;
  height: 300px; /* Taille augmentée */
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.clients-image:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.clients-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
 /* remplissage complet */
  border-radius: 20px;
}

/* Texte */
.clients-text {
  flex: 1;
  min-width: 400px;
}

.clients-text h2 {
  font-size: 2.3rem;
  color: var(--primary-color);
  margin-bottom: 1.2rem;
  font-weight: 700;
}

.clients-text p {
  color: var(--text-color);
  line-height: 1.8;
  font-size: 1.15rem;
  margin-bottom: 1rem;
  text-align: justify;
}

/* Responsive */
@media (max-width: 992px) {
  .clients-container {
    flex-direction: column;
    text-align: center;
  }

  .clients-image {
    height: 400px;
    flex: unset;
  }

  .clients-text h2 {
    font-size: 2rem;
  }

  .clients-text p {
    font-size: 1rem;
  }
}
/* Fin Section Clients */
/* Section about */
.lifestyle-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 100px 8%;
  background: #f5f5f5;
  gap: 60px;
  flex-wrap: wrap;
}

/* Texte à gauche */
.lifestyle-text {
  flex: 1;
  min-width: 350px;
  text-align: justify;
  
}



.lifestyle-text h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.lifestyle-text h2 span {
  color: var(--accent-color);
}

.lifestyle-text p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #333;
}

/* Vidéo à droite */
.lifestyle-video {
  flex: 1;
  min-width: 400px;
  max-width: 700px;
  height: 500px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.lifestyle-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.4s ease;
}

.lifestyle-video video:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 900px) {
  .lifestyle-section {
    flex-direction: column-reverse;
    text-align: center;
  }

  .lifestyle-video {
    width: 100%;
    height: 400px;
  }
}









.image-text-section {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f5f5f5; /* gris très clair */
  padding: 100px 5%;
  gap: 50px;
}

.image-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-container img {
  width: 90%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.text-container {
  flex: 1;
  padding: 0 40px;
  color: #333;
}
/*nous creeron votre experience*/
.text-container h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.3;
  color: #1b1141;
}

.text-container p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
  text-align: justify;
}
.text-container h2 span {
  color:  var(--accent-color);                /* couleur pour plus qun */
  /* font-weight: 700; */
}

/* Section about */

/* Section Références */
.references {
  padding: 80px 0;
  background: var(--light-color);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.project-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px #1e88e5;
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
}

.project-image {
  height: 300px;
  background: var(--dark-color);
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.05);
}

.project-content {
  padding: 1.5rem;
}

.project-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.project-content p {
  margin-bottom: 1rem;
  color: var(--text-color);
}

.project-type {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: var(--accent-color);
  color: var(--white);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.btn-outline {
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  transition: all 0.3s ease;
  border-radius: 10px;
  height: 40px;
}

.btn-outline:hover {
  background: var(--accent-color);
  color: #fff;
  box-shadow: 0 8px 25px var(--accent-color);
  transform: translateY(-3px);
}


/* Section CTA */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--white);
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}
.btn-light {
  background: linear-gradient(135deg, var(--primary-color), #1e88e5);
  color: #fff;
  padding: 14px 40px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(30, 136, 229, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-light::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transition: all 0.5s ease;
}

.btn-light:hover::before {
  left: 100%;
}

.btn-light:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(30, 136, 229, 0.45);
}


/* Responsive */
@media (max-width: 768px) {
  .hero-title {
      font-size: 2.5rem;
  }
  
  .hero-subtitle {
      font-size: 1.2rem;
  }
  
  .section-title {
      font-size: 2rem;
  }
  
  .hero-buttons {
      flex-direction: column;
      align-items: center;
  }
  
  .btn {
      width: 200px;
  }
  
  .stats-grid {
      grid-template-columns: 1fr;
  }
  
  .projects-grid {
      grid-template-columns: 1fr;
  }
}





