:root {
  --primary-color:#6B8E23;
  --secondary-color:#F5F5DC;
  --accent-color:#8B4513;
  --light-color:#F9F9F9;
  --text-color:#333333;
  --green-darkest:#1a3a2a;
  --green-dark:#2d5a3d;
  --green-medium:#4a7c59;
  --green-cta:var(--primary-color);
  --green-light:#a8d5b5;
  --green-bg:#e8f5e9;
  --green-cta-alpha:rgba(107,142,35,0.25);
  --bg-warm:#f9f7f4;
  --bg-cream:#f4f1ea;
  --bg-breadcrumb:#f4f6f8;
  --border-gray:#dde3ea;
  --border-breadcrumb:#e0e4e8;
}
* {
  margin:0;
  padding:0;
  box-sizing:border-box;
}
html {
  scroll-behavior:smooth;
  font-size:16px;
}
body {
  font-family:'Lato',sans-serif;
  line-height:1.7;
  color:var(--text-color);
  overflow-x:hidden;
}
.skip-link {
  position:absolute;
  left:-999px;
  top:auto;
  opacity:0;
  z-index:9999;
  background:#fff;
  color:#333;
  padding:0.75rem 1rem;
  border:2px solid var(--primary-color);
  border-radius:8px;
  box-shadow:0 4px 12px rgba(0,0,0,0.2);
  transition:all .3s ease;
}
.skip-link:focus {
  left:1rem;
  top:1rem;
  opacity:1;
}
h1,h2,h3 {
  font-family:'Playfair Display',serif;
  font-weight:700;
  line-height:1.3;
  color:var(--text-color);
}
h1 {
  font-size:clamp(2rem,5vw,3.5rem);
  margin-bottom:1.5rem;
}
h2 {
  font-size:clamp(1.75rem,4vw,2.5rem);
  margin-bottom:1rem;
  position:relative;
  display:inline-block;
}
h2::after {
  content:'';
  position:absolute;
  bottom:-10px;
  left:0;
  width:60px;
  height:3px;
  background:var(--primary-color);
}
h3 {
  font-size:clamp(1.25rem,3vw,1.75rem);
  margin-bottom:0.75rem;
}
p {
  margin-bottom:1rem;
  font-size:1.1rem;
}
a {
  text-decoration:none;
  color:inherit;
  transition:all 0.3s ease;
}
.header {
  position:fixed;
  top:0;
  left:0;
  width:100%;
  background:rgba(255,255,255,0.98);
  box-shadow:0 2px 20px rgba(0,0,0,0.1);
  z-index:1000;
  padding:1rem 0;
  transition:all 0.3s ease;
}
.header.scrolled {
  padding:0.5rem 0;
  box-shadow:0 4px 30px rgba(0,0,0,0.15);
}
.nav-container {
  max-width:1400px;
  margin:0 auto;
  padding:0 2rem;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.logo-container {
  display:flex;
  align-items:center;
  gap:1rem;
}
.logo-container>a {
  display:flex;
  align-items:center;
  gap:1rem;
}
.logo {
  width:120px;
  height:120px;
  transition:transform 0.3s ease,width 0.3s ease,height 0.3s ease;
}
.logo:hover {
  transform:scale(1.05);
}
.header.scrolled .logo {
  width:60px;
  height:60px;
}
.logo-text {
  font-family:'Playfair Display',serif;
  font-size:1.5rem;
  font-weight:700;
  color:var(--primary-color);
  opacity:0;
  transform:translateY(-8px);
  transition:opacity 0.3s ease,transform 0.3s ease;
}
.header.scrolled .logo-text {
  opacity:1;
  transform:translateY(0);
}
.nav-menu {
  display:flex;
  list-style:none;
  gap:2.5rem;
  align-items:center;
}
.nav-link {
  font-weight:500;
  font-size:1.05rem;
  color:var(--text-color);
  position:relative;
  padding:0.5rem 0;
}
.nav-link::before {
  content:'';
  position:absolute;
  bottom:0;
  left:0;
  width:0;
  height:2px;
  background:var(--primary-color);
  transition:width 0.3s ease;
}
.nav-link:hover::before,.nav-link.active::before {
  width:100%;
}
.hamburger {
  display:none;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
  z-index:1001;
}
.hamburger span {
  width:30px;
  height:3px;
  background:var(--primary-color);
  transition:all 0.3s ease;
}
.hamburger.active span:nth-child(1) {
  transform:rotate(45deg) translate(8px,8px);
}
.hamburger.active span:nth-child(2) {
  opacity:0;
}
.hamburger.active span:nth-child(3) {
  transform:rotate(-45deg) translate(7px,-7px);
}
section {
  padding:5rem 2rem;
}
.container {
  max-width:1200px;
  margin:0 auto;
}
.section-title {
  text-align:center;
  margin-bottom:3rem;
}
.hero {
  position:relative;
  height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:white;
  padding:0;
  overflow:hidden;
}
.hero::before {
  content:'';
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:linear-gradient(to bottom,rgba(0,0,0,.55) 0%,rgba(0,0,0,.35) 50%,transparent 100%);
  z-index:1;
}
.hero-bg {
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:bottom;
  z-index:0;
}
.hero-content {
  position:relative;
  z-index:2;
  max-width:900px;
  padding:2rem;
  animation:fadeInUp 1s ease-out;
}
.hero h1 {
  color:white;
  text-shadow:0 2px 14px rgba(0,0,0,.7),0 1px 4px rgba(0,0,0,.5);
  margin-bottom:1.5rem;
}
.hero-subtitle {
  font-size:1.3rem;
  margin-bottom:2rem;
  font-weight:400;
  text-shadow:0 1px 8px rgba(0,0,0,.6);
}
.btn {
  display:inline-block;
  padding:1rem 2.5rem;
  background:var(--primary-color);
  color:white;
  border-radius:50px;
  font-weight:600;
  font-size:1.1rem;
  border:none;
  cursor:pointer;
  transition:all 0.3s ease;
  box-shadow:0 5px 15px rgba(0,0,0,0.2);
}
.btn:hover {
  transform:translateY(-3px);
  box-shadow:0 8px 25px rgba(0,0,0,0.3);
  background:var(--accent-color);
}
.btn-secondary {
  background:rgba(0,0,0,.28);
  border:2px solid white;
  margin-left:1rem;
  backdrop-filter:blur(6px);
}
.btn-secondary:hover {
  background:white;
  color:var(--primary-color);
}
.hero-icons {
  position:absolute;
  bottom:30px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:2rem;
  z-index:2;
}
@media (max-width:768px) {
  .hero-icons {
    display:none;
  }
}
.hero-icon {
  font-size:2rem;
  color:rgba(255,255,255,0.5);
  animation:float 3s ease-in-out infinite;
}
.hero-icon:nth-child(2) {
  animation-delay:1s;
}
.hero-icon:nth-child(3) {
  animation-delay:2s;
}
.presentation {
  background:var(--secondary-color);
}
.presentation-content {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:4rem;
  align-items:center;
}
.presentation-image {
  position:relative;
  align-self:start;
}
.presentation-image img {
  width:100%;
  height:auto;
  border-radius:15px;
  box-shadow:0 10px 40px rgba(0,0,0,0.2);
}
.presentation-text {
  padding:1rem;
}
.presentation-text p {
  text-align:justify;
  margin-bottom:1.5rem;
}
.signature {
  font-family:'Playfair Display',serif;
  font-style:italic;
  font-size:1.5rem;
  color:var(--primary-color);
  margin-top:2rem;
}
.credentials {
  display:flex;
  gap:2rem;
  margin-top:2rem;
  flex-wrap:wrap;
}
.credential-item {
  display:flex;
  align-items:center;
  gap:0.5rem;
}
.credential-item i {
  color:var(--primary-color);
  font-size:1.5rem;
}
.services {
  background:var(--light-color);
  position:relative;
}
.services-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:3rem;
  margin-top:3rem;
}
.service-card {
  background:white;
  padding:3rem 2rem;
  border-radius:15px;
  text-align:center;
  box-shadow:0 5px 25px rgba(0,0,0,0.1);
  transition:all 0.3s ease;
  position:relative;
  overflow:hidden;
}
.service-card::before {
  content:'';
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:5px;
  background:var(--primary-color);
  transform:scaleX(0);
  transition:transform 0.3s ease;
}
.service-card:hover {
  transform:translateY(-10px);
  box-shadow:0 15px 40px rgba(0,0,0,0.2);
}
.service-card:hover::before {
  transform:scaleX(1);
}
.service-icon {
  font-size:4rem;
  color:var(--primary-color);
  margin-bottom:1.5rem;
}
.service-card h3 {
  margin-bottom:1.5rem;
  color:var(--primary-color);
}
.service-list {
  list-style:none;
  text-align:left;
  margin:1.5rem 0;
}
.service-list li {
  padding:0.5rem 0;
  padding-left:1.5rem;
  position:relative;
}
.service-list li::before {
  content:'✓';
  position:absolute;
  left:0;
  color:var(--primary-color);
  font-weight:bold;
}
.carousel-container {
  position:relative;
  max-width:500px;
  max-height:850px;
  aspect-ratio:3/4;
  margin:0 auto;
  overflow:hidden;
  border-radius:20px;
  box-shadow:0 10px 50px rgba(0,0,0,0.3);
  background:transparent;
}
.carousel-wrapper {
  display:flex;
  transition:transform 0.5s ease-in-out;
  height:100%;
}
.carousel-slide {
  min-width:100%;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  background:transparent;
  height:100%;
}
.carousel-slide img {
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  border-radius:20px;
}
.carousel-caption {
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  background:linear-gradient(transparent,rgba(0,0,0,0.7));
  color:white;
  padding:2rem;
  text-align:center;
  border-radius:0 0 20px 20px;
  z-index:2;
}
.carousel-caption h3 {
  display:inline-block;
  background:rgba(255,255,255,0.5);
  color:#222;
  padding:0.5rem 1rem;
  border-radius:8px;
  box-shadow:0 2px 8px rgba(0,0,0,0.3);
  margin:0;
}
.carousel-controls {
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:100%;
  display:flex;
  justify-content:space-between;
  padding:0 1.5rem;
  z-index:3;
  pointer-events:none;
}
.carousel-btn {
  background:rgba(255,255,255,0.85);
  border:none;
  width:50px;
  height:50px;
  border-radius:50%;
  cursor:pointer;
  transition:all 0.3s ease;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.5rem;
  color:var(--primary-color);
  pointer-events:all;
  box-shadow:0 4px 12px rgba(0,0,0,0.2);
}
.carousel-btn:hover {
  background:white;
  transform:scale(1.1);
  box-shadow:0 6px 16px rgba(0,0,0,0.3);
}
.testimonials {
  background:var(--light-color);
}
.testimonials-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:2rem;
  margin-top:3rem;
}
.testimonial-card {
  background:white;
  padding:2.5rem;
  border-radius:15px;
  box-shadow:0 5px 20px rgba(0,0,0,0.1);
  position:relative;
  transition:all 0.3s ease;
}
.testimonial-card:hover {
  transform:translateY(-5px);
  box-shadow:0 10px 30px rgba(0,0,0,0.15);
}
.testimonial-card::before {
  content:'"';
  position:absolute;
  top:-20px;
  left:20px;
  font-size:5rem;
  color:var(--primary-color);
  opacity:0.2;
  font-family:'Playfair Display',serif;
}
.testimonial-header {
  display:flex;
  align-items:center;
  gap:1rem;
  margin-bottom:1.5rem;
}
.testimonial-image {
  width:60px;
  height:60px;
  border-radius:50%;
  object-fit:cover;
  border:3px solid var(--primary-color);
}
.testimonial-info h3 {
  margin:0;
  color:var(--primary-color);
  font-size:1.1rem;
}
.testimonial-info p {
  margin:0;
  font-size:0.9rem;
  color:#5E5E5E;
}
.stars {
  color:#FFD700;
  font-size:1.2rem;
  margin-bottom:1rem;
}
.stars a {
  display:inline-block;
  color:var(--primary-color);
  font-weight:700;
  cursor:pointer;
  background:transparent;
  border:none;
  padding:0;
  font-size:0.9rem;
  padding-left:10px;
  vertical-align:baseline;
  font-style:italic;
}
.testimonial-text {
  font-style:italic;
  line-height:1.8;
  color:#555;
  overflow:hidden;
  position:relative;
  transition:max-height 0.3s ease;
}
.testimonial-text.clamped {
  max-height:260px;
}
.testimonial-text.clamped::after {
  content:'';
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  height:3rem;
  background:linear-gradient(transparent,white);
}
.testimonial-text.expanded {
  max-height:1000px;
}
.read-more-btn {
  display:inline-block;
  color:var(--primary-color);
  font-weight:700;
  cursor:pointer;
  background:transparent;
  border:none;
  padding:0;
}
.contact {
  background:var(--secondary-color);
}
.contact-container {
  display:grid;
  grid-template-columns:1fr;
  gap:4rem;
  margin-top:3rem;
}
.contact-info {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:2rem;
}
.contact-item {
  display:flex;
  align-items:flex-start;
  gap:1.5rem;
  padding:1.5rem;
  background:white;
  border-radius:10px;
  box-shadow:0 3px 15px rgba(0,0,0,0.1);
  transition:all 0.3s ease;
}
.contact-item:hover {
  transform:translateX(5px);
  box-shadow:0 5px 20px rgba(0,0,0,0.15);
}
.contact-item i {
  font-size:2rem;
  color:var(--primary-color);
  min-width:40px;
}
.contact-item-content h3 {
  margin-bottom:0.5rem;
  font-size:1.2rem;
}
.contact-item-content p {
  margin:0;
  color:#666;
}
.contact-item-content a {
  color:var(--primary-color);
  font-weight:600;
}
.contact-item-content a:hover {
  text-decoration:underline;
}
.map-container {
  margin-top:3rem;
  border-radius:15px;
  overflow:hidden;
  box-shadow:0 5px 25px rgba(0,0,0,0.2);
  height:450px;
}
.map-container iframe {
  width:100%;
  height:100%;
  border:none;
}
.footer {
  background:#2c2c2c;
  color:white;
  padding:3rem 2rem 1.5rem;
}
.footer-content {
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:3rem;
  margin-bottom:2rem;
}
.footer-section h3 {
  color:#A0C040;
  margin-bottom:0.75rem;
}
.footer-section p,.footer-section a {
  color:#ccc;
  line-height:1.5;
  margin-bottom:0.2rem;
}
.footer-section a:hover {
  color:var(--primary-color);
}
.social-links {
  display:flex;
  gap:1rem;
  margin-top:1rem;
}
.social-link {
  display:flex;
  align-items:center;
  justify-content:center;
  width:45px;
  height:45px;
  background:rgba(255,255,255,0.1);
  border-radius:50%;
  transition:all 0.3s ease;
}
.social-link:hover {
  background:var(--primary-color);
  transform:translateY(-3px);
}
.social-link:hover i {
  color:#ffffff;
}
.social-link[aria-label="Facebook"] i {
  color:#1877F2;
}
.social-link[aria-label="Facebook"]:hover i {
  color:#0f5bd3;
}
.social-link i {
  font-size:1.3rem;
  color:white;
}
.footer-bottom {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:1.5rem;
  padding-top:2rem;
  border-top:1px solid rgba(255,255,255,0.1);
  color:#999;
}
.footer-logo {
  width:80px;
  height:80px;
  flex-shrink:0;
}
@keyframes fadeInUp {
from {
  opacity:0;
  transform:translateY(30px);
}
to {
  opacity:1;
  transform:translateY(0);
}

}
@keyframes float {
0%,100% {
  transform:translateY(0);
}
50% {
  transform:translateY(-20px);
}

}
.fade-in-up {
  animation:fadeInUp 0.8s ease-out forwards;
  opacity:0;
}
.scroll-to-top {
  position:fixed;
  bottom:30px;
  right:30px;
  width:50px;
  height:50px;
  background:var(--primary-color);
  color:white;
  border:none;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  opacity:0;
  visibility:hidden;
  transition:all 0.3s ease;
  z-index:999;
  box-shadow:0 5px 20px rgba(0,0,0,0.3);
}
.scroll-to-top.visible {
  opacity:1;
  visibility:visible;
}
.scroll-to-top:hover {
  transform:translateY(-5px);
  box-shadow:0 8px 25px rgba(0,0,0,0.4);
}
@media (max-width:1024px) {
.presentation-content,.contact-container,.contact-info {
  grid-template-columns:1fr;
  gap:2rem;
}
.services-grid {
  grid-template-columns:1fr;
}

}
@media (max-width:768px) {
/* CTA tel caché sur desktop */
.nav-menu-cta {
  display:none;
}

/* ===== MENU MOBILE ===== */
.nav-menu {
  position:fixed;
  right:-100%;
  top:0;
  bottom:0;
  flex-direction:column;
  align-items:flex-start;
  background:var(--green-darkest);
  width:82%;
  max-width:300px;
  text-align:left;
  transition:right 0.32s cubic-bezier(.4,0,.2,1);
  box-shadow:-6px 0 32px rgba(0,0,0,0.35);
  padding:0;
  gap:0;
  overflow-y:auto;
  z-index:999;
  list-style:none;
}
.nav-menu.active {
  right:0;
}
/* En-tête du panneau */
.nav-menu::before {
  content:'La Ferme du Buy';
  display:block;
  font-family:'Playfair Display',serif;
  font-size:1.05rem;
  color:var(--green-light);
  padding:1.5rem 1.4rem 1rem;
  border-bottom:1px solid rgba(255,255,255,.1);
  letter-spacing:.02em;
}
/* Items de premier niveau */
.nav-menu > li {
  width:100%;
  border-bottom:1px solid rgba(255,255,255,.07);
}
.nav-menu .nav-link {
  display:block;
  padding:.9rem 1.4rem;
  color:rgba(255,255,255,.88);
  font-size:1rem;
  font-weight:500;
  transition:background .15s,color .15s;
}
.nav-menu .nav-link:hover {
  background:rgba(255,255,255,.07);
  color:#fff;
}
.nav-menu .nav-link::before {
  display:none;
}
.hamburger {
  display:flex;
}
/* Overlay */
.nav-overlay {
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.5);
  z-index:998;
  backdrop-filter:blur(2px);
}
.nav-overlay.active {
  display:block;
}
.hero {
  height:80vh;
}
.hero-content {
  padding-top:5rem;
}
.btn-secondary {
  margin-left:0;
  margin-top:1rem;
}
section {
  padding:3rem 1rem;
}
h1 {
  font-size:2rem;
}
h2 {
  font-size:1.75rem;
}
.carousel-btn {
  width:40px;
  height:40px;
  font-size:1.2rem;
}
.carousel-controls {
  padding:0 1rem;
}
.carousel-caption {
  padding:1.5rem;
}
.carousel-caption h3 {
  padding:0.35rem 0.75rem;
  font-size:1rem;
}
.testimonials-grid {
  grid-template-columns:1fr;
}
.footer-content {
  grid-template-columns:1fr;
  gap:2rem;
}
section {
  padding:3rem 1rem;
}
/* CTA tel — visible dans le menu mobile */
.nav-menu-cta {
  display:block;
  margin-top:auto;
  padding:1.5rem 1.4rem 2rem;
  border-top:1px solid rgba(255,255,255,.12);
}
.nav-menu-cta a {
  display:flex;
  align-items:center;
  gap:.6rem;
  background:var(--primary-color);
  color:#fff;
  font-weight:700;
  font-size:1rem;
  padding:.85rem 1.2rem;
  border-radius:8px;
  justify-content:center;
  transition:background .2s;
}
.nav-menu-cta a:hover {
  background:#5a7a1a;
}

}
@media (max-width:480px) {
.logo {
  width:45px;
  height:45px;
}
.logo-text {
  font-size:1.2rem;
}
.carousel-btn {
  width:36px;
  height:36px;
  font-size:1rem;
}
.carousel-caption {
  padding:1rem;
}
.carousel-caption h3 {
  font-size:0.9rem;
}
.service-card,.testimonial-card {
  padding:2rem 1.5rem;
}

}
.service-area {
  background:white;
}
.zones-list {
  margin-top:2rem;
  border-top:1px solid rgba(0,0,0,0.08);
}
.zones-list__row {
  display:grid;
  grid-template-columns:200px 1fr;
  align-items:baseline;
  gap:1rem;
  padding:0.75rem 0;
  border-bottom:1px solid rgba(0,0,0,0.08);
}
.zones-list__row--main dt {
  font-weight:700;
  color:var(--primary-color);
}
.zones-list__row--main dd {
  color:var(--text-color);
}
.zones-list dt {
  font-weight:600;
  font-size:1rem;
  color:var(--text-color);
}
.zones-num {
  font-weight:400;
  font-size:0.88rem;
  color:#595959;
}
.zones-list dd {
  margin:0;
  color:#555;
  font-size:0.97rem;
}
.zones-footer {
  margin-top:1.5rem;
  color:#666;
  font-style:italic;
  font-size:0.97rem;
}
@media(max-width:600px) {
.zones-list__row {
  grid-template-columns:1fr;
  gap:0.2rem;
}
.zones-list dd {
  padding-left:0.5rem;
}

}
.service-pricing {
  margin:1.5rem 0;
  padding:1.25rem 1.5rem;
  background:var(--secondary-color);
  border-radius:10px;
  border-left:4px solid var(--primary-color);
  text-align:left;
}
.pricing-title {
  font-weight:700;
  font-size:0.8rem;
  text-transform:uppercase;
  letter-spacing:0.06em;
  color:var(--primary-color);
  margin-bottom:0.6rem;
}
.pricing-row {
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:0.35rem 0;
  border-bottom:1px dashed #ccc;
}
.pricing-row:last-of-type {
  border-bottom:none;
}
.pricing-label {
  font-size:0.92rem;
  color:#555;
}
.pricing-amount {
  font-weight:700;
  color:var(--primary-color);
  white-space:nowrap;
  margin-left:1rem;
  font-size:0.95rem;
}
.pricing-main {
  text-align:center;
  padding:0.25rem 0 0.5rem;
}
.pricing-amount-large {
  font-family:'Playfair Display',serif;
  font-size:2.4rem;
  font-weight:700;
  color:var(--primary-color);
}
.pricing-per {
  font-size:1rem;
  color:#5E5E5E;
  margin-left:0.2rem;
}
.pricing-note {
  font-size:0.82rem;
  color:#5E5E5E;
  font-style:italic;
  margin:0.6rem 0 0;
}
.presentation-image img {
  display:block;
}
.carousel-label {
  display:inline-block;
  background:rgba(255,255,255,0.5);
  color:#222;
  padding:0.5rem 1rem;
  border-radius:8px;
  box-shadow:0 2px 8px rgba(0,0,0,0.3);
  font-family:'Playfair Display',serif;
  font-weight:700;
  font-size:clamp(0.9rem,2vw,1rem);
}
.service-card {
  padding:1.75rem 1rem;
  display:flex;
  flex-direction:column;
}
.service-icon {
  font-size:2.5rem;
  margin-bottom:0.75rem;
}
.service-card h3 {
  margin-bottom:0.75rem;
}
.service-list {
  margin:0.75rem;
}
.service-list li {
  padding:0.25rem 0;
  padding-left:1.5rem;
}
.service-pricing {
  margin:0.85rem 0;
  padding:1rem 1.25rem;
}
.service-card .btn {
  margin-top:auto;
}
.pricing-main {
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0.75rem 0;
}
.service-cta-btn {
  margin-top:1rem;
}
.contact-reply {
  font-size:0.9rem;
  color:#999;
}
.footer-legal-info {
  margin-top:1rem;
}
.footer-credit {
  margin-top:0.5rem;
  font-size:0.9rem;
}

  /* ==================== NAV DROPDOWN ==================== */
.nav-item-dropdown {
  position:relative;
}

.nav-dropdown-toggle {
  background:none;
  border:none;
  cursor:pointer;
  font-family:inherit;
  font-size:1.05rem;
  font-weight:500;
  color:var(--text-color);
  padding:.5rem 0;
  display:inline-flex;
  align-items:center;
  gap:.3rem;
  line-height:1;
}

.nav-dropdown-toggle::before {
  content:'';
  position:absolute;
  bottom:0;
  left:0;
  width:0;
  height:2px;
  background:var(--primary-color);
  transition:width 0.3s ease;
}

.nav-dropdown-toggle:hover::before,.nav-dropdown-toggle.active::before {
  width:100%;
}

.dropdown-arrow {
  font-size:.65em;
  display:inline-block;
  transition:transform .25s ease;
  margin-top:.05em;
}

.nav-item-dropdown:hover .dropdown-arrow,.nav-item-dropdown.open .dropdown-arrow {
  transform:rotate(180deg);
}

.nav-submenu {
  display:none;
  position:absolute;
  top:100%;
  left:50%;
  transform:translateX(-50%);
  list-style:none;
  z-index:200;
  background:#fff;
  border-radius:10px;
  box-shadow:0 8px 24px rgba(0,0,0,.13);
  border:1px solid #e4e9e4;
  min-width:230px;
  padding:.4rem 0;
}

.nav-item-dropdown::after {
  content:'';
  position:absolute;
  top:100%;
  left:0;
  right:0;
  height:10px;
}

.nav-item-dropdown:hover .nav-submenu,.nav-item-dropdown.open .nav-submenu {
  display:block;
}

.nav-submenu-link {
  display:flex;
  align-items:center;
  gap:.55rem;
  padding:.6rem 1.2rem;
  color:#333;
  text-decoration:none;
  font-size:.93rem;
  white-space:nowrap;
  transition:background .15s,color .15s;
}
.nav-submenu-link.active {
  color:#4a7c59;
  font-weight:700;
  background:#f0f5eb;
}
.nav-submenu-link.active::after {
  content:'';
  display:block;
  height:2px;
  background:#4a7c59;
  margin-top:2px;
  border-radius:2px;
}
.nav-submenu-link svg {
  flex-shrink:0;
  width:1em;
  height:1em;
  vertical-align:middle;
}
.nav-submenu-link i,.nav-submenu-link svg {
  display:inline-flex;
  width:1.2em;
  justify-content:center;
  margin-right:0;
}

.nav-submenu-link:hover {
  background:#f0f5ef;
  color:#4a7c59;
}

.nav-submenu li:first-child .nav-submenu-link {
  font-weight:600;
  color:#4a7c59;
  border-bottom:1px solid #e8ede8;
  padding-bottom:.7rem;
}

.nav-submenu li:first-child .nav-submenu-link:hover {
  background:#e8f5e9;
}

@media(max-width:768px) {

/* Bouton "Services" dans le menu mobile */
.nav-dropdown-toggle {
  width:100%;
  justify-content:flex-start;
  padding:.9rem 1.4rem;
  color:rgba(255,255,255,.88);
  font-size:1rem;
  font-weight:500;
}
.nav-dropdown-toggle:hover {
  background:rgba(255,255,255,.07);
  color:#fff;
}
.nav-dropdown-toggle::before {
  display:none;
}
.nav-dropdown-toggle .dropdown-arrow {
  display:none;
}

/* Label "Services" au-dessus du sous-menu */
.nav-item-dropdown > .nav-dropdown-toggle {
  color:var(--green-light);
  font-size:.75rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.1em;
  padding:.9rem 1.4rem .4rem;
  pointer-events:none;
}

/* Sous-menu Services */
.nav-submenu {
  position:static;
  transform:none;
  box-shadow:none;
  border:none;
  border-radius:0;
  background:transparent;
  min-width:0;
  padding:0 0 .5rem;
  margin:0;
  display:block;
  border-bottom:1px solid rgba(255,255,255,.07);
}

.nav-item-dropdown:hover .nav-submenu {
  display:block;
}

.nav-submenu li:first-child .nav-submenu-link {
  font-weight:500;
  color:rgba(255,255,255,.7);
  border-bottom:none;
  padding-bottom:.55rem;
}

.nav-submenu-link {
  padding:.55rem 1.4rem .55rem 2rem;
  font-size:.95rem;
  white-space:normal;
  color:rgba(255,255,255,.8);
  border-left:2px solid rgba(255,255,255,.0);
}

.nav-submenu-link:hover {
  background:rgba(255,255,255,.07);
  color:#fff;
  border-left-color:var(--green-light);
}

.nav-submenu-link.active {
  color:var(--green-light);
  font-weight:600;
  background:rgba(255,255,255,.05);
  border-left-color:var(--green-light);
}

.nav-submenu-link i,
.nav-submenu-link svg {
  opacity:.7;
}

}

  /* ==================== COOKIE BANNER ==================== */
#cookie-banner {
  position:fixed;
  bottom:0;
  left:0;
  right:0;
  background:#1a3a2a;
  color:#fff;
  padding:1rem 1.5rem;
  z-index:9999;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:.75rem;
  font-family:inherit;
  font-size:.9rem;
  line-height:1.5;
  box-shadow:0 -2px 12px rgba(0,0,0,.25);
  transform:translateY(0);
  transition:transform .35s ease;
}

#cookie-banner p {
  margin:0;
  flex:1 1 300px;
}

#cookie-banner a {
  color:#a8d5b5;
  text-decoration:underline;
}

#cookie-banner .cookie-btns {
  display:flex;
  gap:.5rem;
  flex-shrink:0;
}

#cookie-banner button {
  border:none;
  padding:.5rem 1.1rem;
  border-radius:4px;
  cursor:pointer;
  font-size:.875rem;
  font-weight:700;
}

#cookie-accept {
  background:#6B8E23;
  color:#fff;
}

#cookie-accept:hover {
  background:#5a7a1a;
}

#cookie-refuse {
  background:transparent;
  color:#fff;
  border:1px solid rgba(255,255,255,.5);
}

#cookie-refuse:hover {
  background:rgba(255,255,255,.1);
}

