
        :root {
            --primary-color: #FFC107; /* Jaune vif */
            --secondary-color: #4CAF50; /* Vert */
            --dark-green: #2E7D32; /* Vert foncé */
            --light-yellow: #FFF9C4; /* Jaune clair */
            --accent-color: #FF9800; /* Orange */
            --text-color: #333;
            --light-gray: #f5f5f5;
            --white: #ffffff;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

       /* Général */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: rgba(255, 255, 0, 0.479);
  color: #333;
  scroll-behavior: smooth;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Header */
header {
  position: fixed;
  color: #FFC107;
  top: 0;
  width: 100%;
  background: var(--primary-yellow);
  display: flex;
  justify-content: center;
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.header-container {
  width: 100%;
  max-width: 1200px;
  padding: 10px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 65px;
  transition: height 0.3s ease;
}
  /* Styles supplémentaires pour le menu déroulant */
        .navbar-right {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        
        .menu-container {
            position: relative;
        }
        
        .grid-icon {
            font-size: 28px;
            cursor: pointer;
            color: #2c3e50;
            transition: all 0.3s;
        }
        
        .grid-icon:hover {
            color: #27ae60;
            transform: scale(1.1);
        }
        
        .dropdown {
            position: absolute;
            top: 100%;
            right: 0;
            background: white;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            width: 300px;
            padding: 15px;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
        }
        
        .dropdown.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .app-list {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
        }
        
        .app-list li {
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .app-icon {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 80px;
            height: 80px;
            background: rgba(39, 174, 96, 0.1);
            border-radius: 10px;
            text-decoration: none;
            color: #2c3e50;
            font-weight: 500;
            text-align: center;
            transition: all 0.3s;
            padding: 5px;
            font-size: 14px;
        }
        
        .app-icon:hover {
            background: #27ae60;
            color: white;
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3);
        }
        
        /* Ajustements pour le header */
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .nav-links {
            display: flex;
            gap: 25px;
        }
        
        @media (max-width: 960px) {
            .nav-links {
                display: none;
            }
            
            .dropdown {
                right: auto;
                left: 50%;
                transform: translateX(-50%) translateY(10px);
            }
            
            .dropdown.active {
                transform: translateX(-50%) translateY(0);
            }
        }

/* Navigation */
nav {
  flex-grow: 1;
  text-align: right;
  color: black;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  font-weight: 500;
  padding: 8px 12px;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #00a86b;
}

/* Dropdown */
.has-dropdown > a {
  display: flex;
  align-items: center;
  gap: 5px;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 38px;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border-radius: 6px;
  padding: 10px 0;
  z-index: 999;
  min-width: 180px;
}

.dropdown-menu li {
  padding: 8px 20px;
}

.dropdown-menu li a:hover {
  color: #00a86b;
}

.dropdown-menu.active {
  display: block;
}

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: url(../Follio/Img/VAJ7.jpeg) center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 80px;
  position: relative;
  color:#2E7D32;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 40px;
  border-radius: 12px;
}

.hero-content h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
}

.cta-button {
  padding: 12px 25px;
  background: #00a86b;
  color: white;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s;
}

.cta-button:hover {
  background: #008c5c;
}

/* Scroll Down Icon */
.scroll-down {
  position: absolute;
  bottom: 20px;
  font-size: 24px;
  cursor: pointer;
  color: white;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* Welcome Section */
.welcome-section {
  padding: 80px 20px;
  text-align: center;
}

.welcome-title {
  font-size: 32px;
  margin-bottom: 10px;
}

.welcome-subtitle {
  font-size: 20px;
  margin-bottom: 20px;
}

.welcome-content {
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.7;
}

/*Clinr Service*/
/* Section des propriétés */
.properties-section {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.properties-section .section-title h2 {
  font-size: 2rem;
  color: #222;
  margin-bottom: 10px;
}

.properties-section .section-title p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 40px;
}

/* Grille responsive */
.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Carte de propriété */
.property-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.property-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Image */
.property-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.property-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.property-card:hover .property-image img {
  transform: scale(1.1);
}

/* Infos */
.property-info {
  padding: 20px;
  text-align: left;
}

.property-info h3 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 8px;
}

.property-info p {
  font-size: 0.95rem;
  color: #666;
}


/* Services */
.services-section {
  padding: 80px 20px;
  background-color: #fff;
  text-align: center;
}

.section-title h2 {
  font-size: 30px;
  margin-bottom: 10px;
}

.section-title p {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: #f3f3f3;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-icon {
  font-size: 36px;
  margin-bottom: 15px;
  color: #00a86b;
}

/* Properties */
.properties-section {
  padding: 80px 20px;
  background-color: #fff;
  text-align: center;
}

.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.property-card-simple {
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.property-card-simple:hover {
  transform: scale(1.02);
}

.property-image {
  height: 100%;
  background-size: cover;
  background-position: center;
}

/* Client Services */
.client-services {
  padding: 80px 20px;
  background-color: #f9f9f9;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.service-item {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.service-item h3 {
  margin: 15px 0;
}

.service-item i {
  font-size: 36px;
  color: #00a86b;
}

/* Footer */
footer {
  background-color:  #2E7D32;
  color: #fff;
  padding: 40px 20px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-column {
  flex: 1 1 300px;
}

.social-icons img {
  width: 30px;
  margin-right: 10px;
}

.footer-links {
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links i {
  margin-right: 8px;
}

.contact-box ul {
  padding: 0;
}

.contact-box li {
  margin-bottom: 10px;
}

footer .copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #444;
  font-size: 14px;
  margin-top: 30px;
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #00a86b;
  color: white;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 20px;
  display: none;
  z-index: 1000;
  transition: background 0.3s;
}

.back-to-top:hover {
  background: #008c5c;
}

.back-to-top.show {
  display: flex;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 20px;
    background: white;
    position: absolute;
    top: 70px;
    right: 30px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-radius: 10px;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: block;
    color: #333;
  }
}

   /* Ajout des couleurs jaune et vert */
        :root {
            --primary-yellow: #FFC107;
            --light-yellow: #FFF9C4;
            --dark-yellow: #FFA000;
            --primary-green: #4CAF50;
            --light-green: #C8E6C9;
            --dark-green: #2E7D32;
            --accent-color: #FF9800;
            --text-color: #333;
            --light-gray: #f5f5f5;
            --white: #ffffff;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        /* Application des couleurs */
        .cta-button {
            background: var(--primary-green);
            color: white;
        }
        
        .cta-button:hover {
            background: var(--dark-green);
        }
        
        .service-card {
            border-top: 4px solid var(--primary-yellow);
        }
        
        .service-icon {
            color: var(--primary-green);
        }
        
        .section-title h2 {
            color: var(--dark-green);
            position: relative;
            padding-bottom: 15px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--primary-yellow);
        }
        
        .service-title {
            color: var(--dark-green);
        }
        
        .property-card-simple:hover {
            box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
        }
        
        .service-item {
            border-left: 4px solid var(--primary-yellow);
        }
        
        .client-services .service-item .service-icon {
            color: var(--primary-yellow);
        }
        
        .back-to-top {
            background: var(--primary-green);
        }
        
        .back-to-top:hover {
            background: var(--dark-green);
        }
        
        /* Animation pour les textes des services */
        .service-card {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }
        
        .service-card.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Animation spécifique pour chaque carte */
        .service-card:nth-child(1) { transition-delay: 0.1s; }
        .service-card:nth-child(2) { transition-delay: 0.2s; }
        .service-card:nth-child(3) { transition-delay: 0.3s; }
        .service-card:nth-child(4) { transition-delay: 0.4s; }
        .service-card:nth-child(5) { transition-delay: 0.5s; }
        .service-card:nth-child(6) { transition-delay: 0.6s; }
        
        /* Animation pour les titres */
        .welcome-title, .section-title h2 {
            position: relative;
            overflow: hidden;
        }
        
        .welcome-title::after, .section-title h2::after {
            animation: underline 1.5s ease-out;
        }
        
        @keyframes underline {
            0% { width: 0; }
            100% { width: 80px; }
        }
        
        /* Effet de surbrillance sur les titres */
        .service-title {
            position: relative;
            display: inline-block;
        }
        
        .service-title::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--primary-yellow);
            transition: width 0.3s ease;
        }
        
        .service-card:hover .service-title::after {
            width: 100%;
        }
        
        /* Animation pour le bouton */
        .cta-button {
            position: relative;
            overflow: hidden;
        }
        
        .cta-button::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }
        
        .cta-button:hover::after {
            width: 300px;
            height: 300px;
        }
        
        /* Animation pour les icônes */
        .service-card:hover .service-icon {
            animation: bounce 0.5s;
        }
        
        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }