/* ==========================================================================
   CSS LEAFLIFE REBOOT - 100% FONCTIONNEL
   ========================================================================== */ :root {
  --clr-primary: #527a4d;
  --clr-primary-dark: #3a5736;
  --clr-accent: #ffcc4d;
  --clr-heading: #1e2d1b;
  --clr-text: #6b756a;
  --clr-bg-light: #f7f9f6;
  --clr-white: #ffffff;
  --clr-dark: #121a11;
  --transition: all 0.3s ease-in-out;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
/* Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--clr-text);
  line-height: 1.7;
  overflow-x: hidden;
}
h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
  color: var(--clr-heading);
  font-weight: 700;
  margin-bottom: 1em;
}
a {
  text-decoration: none;
  transition: var(--transition);
}
ul {
  list-style: none;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
}
.text-center {
  text-align: center;
}
/* Top Bar */
.top-bar {
  background: var(--clr-dark);
  color: #ccc;
  font-size: 13px;
  padding: 10px 0;
}
.info-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: 20px;
}
.info-item .material-symbols-outlined {
  color: var(--clr-accent);
  font-size: 18px;
}
.top-bar a {
  color: #ccc;
}
/* Main Header & Nav-Actions */
.main-header {
  background: var(--clr-white);
  padding: 15px 0;
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.logo-container {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
}
nav .logo-container {
  margin-bottom: 0
}
.main-icon {
  font-size: 45px !important;
  color: var(--clr-primary);
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-text .title {
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  color: var(--clr-heading);
}
.logo-text .subtitle {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--clr-primary);
  font-weight: 700;
  text-transform: uppercase;
}
/* LA PARTIE DEMANDÉE : Nav Actions côte à côte */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 40px;
}
.contact-call {
  display: flex;
  align-items: center;
  gap: 12px;
}
.icon-circle {
  background: red;
  color: #fff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 22px !important;
}
.call-info {
  display: flex;
  flex-direction: column;
}
.call-info small {
  font-size: 11px;
  color: var(--clr-text);
  font-weight: 600;
}
.call-info a {
  font-size: 18px;
  font-weight: 800;
  color: red;
  line-height: 1;
}
.btn-cta {
  background: var(--clr-primary);
  color: var(--clr-white);
  padding: 15px 30px;
  border-radius: 5px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
}
.btn-cta:hover {
  background: var(--clr-dark);
  transform: translateY(-3px);
}
/* Hero Section */
.main_style-leaflife {
  position: relative;
  height: 650px;
  display: flex;
  align-items: center;
  color: var(--clr-white);
  overflow: hidden;
}
.main_style-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.main_style-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main_style-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.main_style-content {
  max-width: 700px;
  position: relative;
  z-index: 1;
}
.main_style-content h1 {
  font-size: 56px;
  color: var(--clr-white);
  margin: 20px 0;
  line-height: 1.1;
}
.text-gradient {
  color: var(--clr-accent);
}
.main_style-btns {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}
.btn-primary {
  background: var(--clr-primary);
  color: var(--clr-white);
  padding: 16px 32px;
  border-radius: 5px;
  font-weight: 700;
}
.btn-outline {
  border: 2px solid var(--clr-white);
  color: var(--clr-white);
  padding: 14px 32px;
  border-radius: 5px;
  font-weight: 700;
}
.btn-primary:hover {
  background: var(--clr-white);
  color: var(--clr-primary);
}
.main_style-shape {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
}
.main_style-shape svg {
  width: 100%;
  height: 80px;
  fill: var(--clr-white);
}
/* Services & Features */
.features-grid {
  margin-top: -60px;
  position: relative;
  z-index: 10;
}
.f-card {
  background: var(--clr-white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  text-align: center;
}
.f-card.active {
  background: var(--clr-primary);
  color: var(--clr-white);
}
.f-card.active h3, .f-card.active p {
  color: var(--clr-white);
}
.f-card .material-symbols-outlined {
  font-size: 45px;
  color: var(--clr-primary);
  margin-bottom: 20px;
}
.f-card.active .material-symbols-outlined {
  color: var(--clr-white);
}
.services-main {
  padding: 120px 0;
  background: var(--clr-bg-light);
}
.service-box {
  background: var(--clr-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.service-box:hover {
  transform: translateY(-10px);
}
.s-img {
  height: 230px;
}
.s-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.s-content {
  padding: 30px;
  position: relative;
}
.s-icon {
  position: absolute;
  top: -30px;
  right: 20px;
  background: var(--clr-accent);
  color: var(--clr-dark);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 5px solid var(--clr-white);
}
.s-list {
  margin-top: 15px;
  border-top: 1px solid #eee;
  padding-top: 15px;
}
.s-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 5px;
}
.s-list .material-symbols-outlined {
  color: var(--clr-primary);
  font-size: 18px;
}
/* Footer */
.footer-leaflife {
  background: var(--clr-dark);
  color: #999;
  padding: 100px 0 0;
}
.footer-leaflife .white {
  color: var(--clr-white);
}
.footer-leaflife h4 {
  color: var(--clr-white);
  margin-bottom: 30px;
}
.footer-leaflife a {
  color: #999;
}
.footer-leaflife a:hover {
  color: var(--clr-primary);
}
.footer-copyright {
  margin-top: 80px;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  background: #527a4e;
  color: white
}
.maps iframe {
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    display: block;
}
.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
}
/* Responsive */
@media (max-width: 991px) {
  .nav-actions {
    display: none;
  }
  .grid-3, .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .main_style-content h1 {
    font-size: 42px;
  }
}
@media (max-width: 768px) {
  .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
  .top-bar {
    display: none;
  }
}