/* ============================================================
   VARIABLES & RESET
   ============================================================ */
:root {
  --green: #2E8B57;
  --green-dark: #1e6b3f;
  --green-light: #e8f5ee;
  --red: #C0392B;
  --orange: #E67E22;
  --dark: #1a1a2e;
  --dark2: #2c2c3e;
  --text: #2d2d2d;
  --text-light: #666;
  --border: #e0e0e0;
  --bg-light: #f7f9f7;
  --white: #fff;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, .08);
  --shadow-md: 0 6px 24px rgba(0, 0, 0, .12);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, .16);
  --radius: 10px;
  --transition: all .3s ease;
  --header-h: 84px;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.logo-name,
.btn,
.nav-menu>li>a {
  font-family: 'Outfit', sans-serif;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
  padding: .45rem 0;
}

.breadcrumb ol {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .3rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  font-size: .78rem;
  color: var(--text-light);
}

.breadcrumb li + li::before {
  content: '/';
  margin-right: .3rem;
  color: var(--border);
}

.breadcrumb li a {
  color: var(--text-light);
  text-decoration: none;
  transition: color .2s ease;
}

.breadcrumb li a:hover {
  color: var(--green);
}

.breadcrumb li[aria-current="page"] {
  color: var(--text);
  font-weight: 500;
}

.section-tag {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: .3rem .9rem;
  border-radius: 20px;
  margin-bottom: .8rem;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: .75rem 1.8rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: .95rem;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(46, 139, 87, .35);
}

.btn-secondary {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}

.btn-secondary:hover {
  background: var(--green);
  color: var(--white);
}

.btn-outline {
  background: rgba(255, 255, 255, .15);
  color: var(--white);
  border-color: rgba(255, 255, 255, .7);
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--green);
}

.btn-full {
  width: 100%;
  text-align: center;
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, .1);
  height: var(--header-h);
  transition: height .28s ease, box-shadow .28s ease, background .28s ease, backdrop-filter .28s ease;
}

.header.scrolled {
  height: 68px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .15);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.navbar {
  height: 100%;
}

.nav-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}

.logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  transition: height .28s ease;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -.5px;
  transition: font-size .28s ease;
}

.logo-sub {
  font-size: .62rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--red);
  font-weight: 700;
  transition: opacity .2s ease;
}

.header.scrolled .logo img {
  height: 42px;
}

.header.scrolled .logo-name {
  font-size: 1.2rem;
}

.header.scrolled .logo-sub {
  opacity: 0;
}

/* Nav menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.nav-menu>li {
  position: relative;
}

.nav-menu>li>a {
  display: block;
  padding: .6rem .85rem;
  font-weight: 700;
  font-size: .95rem;
  color: var(--dark);
  border-radius: 6px;
  transition: color .2s ease, background .2s ease;
  white-space: nowrap;
}

.nav-menu>li>a:hover,
.nav-menu>li>a.active {
  color: var(--green);
  background: var(--green-light);
}

.nav-cta {
  background: var(--green) !important;
  color: var(--white) !important;
  border-radius: 8px !important;
  padding: .65rem 1.4rem !important;
  margin-left: 1rem;
  font-weight: 700 !important;
  box-shadow: 0 4px 10px rgba(46, 139, 87, 0.25);
}

.nav-cta:hover {
  background: var(--green-dark) !important;
  box-shadow: 0 6px 14px rgba(46, 139, 87, 0.35);
}

/* Dropdown */
.has-dropdown::after {
  /* Invisible bridge: keeps hover state when moving mouse from link to dropdown */
  content: '';
  position: absolute;
  top: 100%;
  left: -8px;
  right: -8px;
  height: 14px;
  /* covers the 8px gap + margin */
  z-index: 99;
}

.dropdown {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  min-width: 220px;
  padding: .5rem 0;
  border: 1px solid var(--border);
  z-index: 100;
  transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
  transform: translateY(-4px);
}

.has-dropdown:hover .dropdown {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.dropdown li a {
  display: block;
  padding: .6rem 1.2rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
}

.dropdown li a:hover {
  background: var(--green-light);
  color: var(--green);
  padding-left: 1.6rem;
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}

.menu-toggle span {
  width: 26px;
  height: 3px;
  background: var(--text);
  border-radius: 3px;
  transition: var(--transition);
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero-slider {
  position: relative;
  overflow: hidden;
  height: calc(100vh - var(--header-h));
  min-height: 480px;
  max-height: 750px;
  background: var(--dark);
}

.slides-wrapper {
  display: flex;
  height: 100%;
  transition: transform .6s cubic-bezier(.4, 0, .2, 1);
}

.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .75;
  animation: kenBurns 15s ease-out infinite alternate;
}

@keyframes kenBurns {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.1);
  }
}

.slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

.slide-content .container {
  max-width: 750px;
}

.slide-content h1,
.slide-content h2 {
  font-size: clamp(1.8rem, 5vw, 3.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .4);
}

.slide-content p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, .92);
  margin-bottom: 2rem;
  text-shadow: 0 1px 6px rgba(0, 0, 0, .3);
  max-width: 560px;
}

.slide-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Prev/Next */
.slide-prev,
.slide-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, .2);
  color: var(--white);
  border: none;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  backdrop-filter: blur(4px);
  z-index: 10;
}

.slide-prev {
  left: 20px;
}

.slide-next {
  right: 20px;
}

.slide-prev:hover,
.slide-next:hover {
  background: var(--green);
}

/* Dots */
.slide-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .5);
  border: none;
  transition: var(--transition);
}

.dot.active {
  background: var(--white);
  transform: scale(1.3);
}

/* ============================================================
   PILIERS
   ============================================================ */
.piliers {
  padding: 3rem 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.piliers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.pilier-card {
  text-align: center;
  padding: 1.8rem 1.5rem;
  border-radius: var(--radius);
  background: var(--bg-light);
  border: 1px solid transparent;
  transition: var(--transition);
}

.pilier-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(46, 139, 87, .15);
  border-color: transparent;
}

.pilier-icon {
  font-size: 2.5rem;
  margin-bottom: .8rem;
}

.pilier-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: .5rem;
}

.pilier-card p {
  font-size: .88rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: 5rem 0;
  background: var(--bg-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-content h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin: .6rem 0 1.2rem;
  line-height: 1.25;
}

.about-content p {
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.75;
}

.about-content .btn {
  margin-top: .75rem;
}

.about-imgs {
  position: relative;
}

.about-img-main {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.about-img-second {
  position: absolute;
  width: 55%;
  bottom: -2rem;
  right: -1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

/* ============================================================
   SAVOIR-FAIRE
   ============================================================ */
.savoir-faire {
  padding: 5rem 0;
  background: var(--white);
}

.savoir-faire h2 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: .5rem;
}

.sf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.sf-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid transparent;
  transition: var(--transition);
}

.sf-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(46, 139, 87, .15);
}

.sf-img-wrap {
  height: 230px;
  overflow: hidden;
}

.sf-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.sf-card:hover .sf-img-wrap img {
  transform: scale(1.05);
}

.sf-body {
  padding: 1.5rem;
}

.sf-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: .7rem;
}

.sf-body p {
  font-size: .93rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ============================================================
   GALERIE
   ============================================================ */
.galerie {
  padding: 3rem 0;
  background: var(--dark);
}

.galerie-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 6px;
}

.galerie-item {
  overflow: hidden;
}

.galerie-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.galerie-item:hover img {
  transform: scale(1.07);
}

.galerie-large {
  grid-row: 1 / 3;
}

/* ============================================================
   PRODUITS
   ============================================================ */
.produits {
  padding: 5rem 0;
  background: var(--bg-light);
}

.produits h2 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  margin: .5rem 0 .5rem;
}

.produits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

.produit-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid transparent;
  transition: var(--transition);
}

.produit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(46, 139, 87, .15);
}

.produit-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.produit-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.produit-card:hover .produit-img-wrap img {
  transform: scale(1.06);
}

.produit-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--orange);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  padding: .25rem .7rem;
  border-radius: 20px;
}

.produit-body {
  padding: 1.5rem;
}

.produit-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .6rem;
}

.produit-body>p {
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.produit-features {
  border-top: 1px solid var(--border);
  padding-top: .9rem;
}

.produit-features li {
  font-size: .85rem;
  color: var(--text-light);
  padding: .3rem 0 .3rem 1.3rem;
  position: relative;
}

.produit-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* ============================================================
   ENTRETIEN
   ============================================================ */
.entretien {
  padding: 5rem 0;
  background: var(--white);
}

.entretien h2 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  margin: .5rem 0 .5rem;
}

.entretien-intro {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: center;
  margin: 3rem 0;
}

.entretien-intro-img img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.entretien-intro-text h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 1rem;
}

.entretien-intro-text p {
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: .9rem;
}

.forfaits-title {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin: 2.5rem 0 1.5rem;
}

.forfaits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.forfait-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: var(--transition);
}

.forfait-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.forfait-icon {
  font-size: 2rem;
  margin-bottom: .7rem;
}

.forfait-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: .8rem;
}

.forfait-card ul {
  padding: 0;
}

.forfait-card li {
  font-size: .85rem;
  color: var(--text-light);
  padding: .3rem 0 .3rem 1.2rem;
  position: relative;
  border-bottom: 1px dashed var(--border);
}

.forfait-card li:last-child {
  border-bottom: none;
}

.forfait-card li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--green);
  font-size: .8rem;
}

.entretien-cta {
  text-align: center;
  margin-top: 3rem;
  background: var(--green-light);
  padding: 2.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(46, 139, 87, .2);
}

.entretien-cta p {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 1.2rem;
}

/* ============================================================
   LOCATION
   ============================================================ */
.location {
  padding: 5rem 0;
  background: var(--bg-light);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.location-img img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.location-content h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin: .5rem 0 1rem;
}

.location-content>p {
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.location-cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
  margin-bottom: 1.5rem;
}

.loc-cat {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: .6rem .9rem;
  font-size: .88rem;
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
}

.loc-cat:hover {
  border-color: var(--green);
  color: var(--green);
}

.loc-cat span {
  display: block;
  font-size: 1.3rem;
  margin-bottom: .2rem;
}

.location-avantages {
  margin-bottom: 1.8rem;
}

.location-avantages li {
  padding: .45rem 0;
  color: var(--text-light);
  font-size: .93rem;
  border-bottom: 1px dashed var(--border);
}

.location-avantages li:last-child {
  border: none;
}

/* ============================================================
   PIECES
   ============================================================ */
.pieces {
  padding: 5rem 0;
  background: var(--dark);
}

.pieces h2 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  margin: .5rem 0 .5rem;
}

.pieces .section-subtitle {
  color: rgba(255, 255, 255, .65);
}

.pieces .section-tag {
  background: rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .8);
}

.pieces-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.pieces-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}

.pieces-card:hover {
  background: rgba(255, 255, 255, .1);
  border-color: var(--green);
  transform: translateY(-4px);
}

.pieces-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.pieces-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .75rem;
}

.pieces-card p {
  font-size: .9rem;
  color: rgba(255, 255, 255, .65);
  line-height: 1.7;
}

/* ============================================================
   PARTENAIRES
   ============================================================ */
.partenaires {
  padding: 4rem 0;
  background: var(--white);
}

.partenaires h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: .5rem;
}

.partenaires-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.2rem;
  margin-top: 2.5rem;
}

.partenaire-item {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  transition: var(--transition);
}

.partenaire-item:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-sm);
  transform: scale(1.04);
}

.partenaire-item img {
  max-height: 52px;
  max-width: 130px;
  width: auto;
  object-fit: contain;
  filter: grayscale(30%);
  transition: var(--transition);
}

.partenaire-item:hover img {
  filter: none;
}

/* ============================================================
   MAGASINS
   ============================================================ */
.magasins {
  padding: 5rem 0;
  background: var(--bg-light);
}

.magasins h2 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: .5rem;
}

.magasins-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 3rem;
}

.magasin-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.magasin-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.magasin-photo {
  height: 220px;
  overflow: hidden;
}

.magasin-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.magasin-body {
  padding: 1.8rem;
}

.magasin-body h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 1.2rem;
  padding-bottom: .8rem;
  border-bottom: 2px solid var(--green-light);
}

.magasin-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.magasin-info-grid h4 {
  font-size: .85rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .3rem;
}

.magasin-info-grid p {
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.6;
}

.magasin-info-grid a {
  color: var(--green);
  font-weight: 600;
}

.magasin-info-grid a:hover {
  color: var(--red);
}

.horaires {
  margin-bottom: 1.4rem;
}

.horaires h4 {
  font-size: .85rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .5rem;
}

.horaires-table {
  width: 100%;
  font-size: .85rem;
  border-collapse: collapse;
}

.horaires-table td {
  padding: .3rem .4rem;
  color: var(--text-light);
}

.horaires-table td:first-child {
  font-weight: 600;
  color: var(--text);
}

.horaires-table tr.ferme td {
  color: #aaa;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: 5rem 0;
  background: var(--white);
}

.contact h2 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: .5rem;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3.5rem;
  margin-top: 3rem;
}

.contact-block {
  margin-bottom: 1.8rem;
}

.contact-block h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .5rem;
}

.contact-block p {
  font-size: .93rem;
  color: var(--text-light);
  line-height: 1.7;
}

.contact-block a {
  color: var(--green);
  font-weight: 600;
}

.contact-block a:hover {
  color: var(--red);
}

.social-links {
  display: flex;
  gap: .7rem;
  flex-wrap: wrap;
  margin-top: .5rem;
}

.social-btn {
  background: var(--bg-light);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: .85rem;
  font-weight: 600;
  padding: .4rem 1rem;
  border-radius: 6px;
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.contact-form {
  background: var(--bg-light);
  padding: 2.2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: .88rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 7px;
  font-family: inherit;
  font-size: .95rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(46, 139, 87, .12);
}

.form-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  border-radius: 7px;
  padding: 1rem;
  margin-top: 1rem;
  font-weight: 600;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, .8);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.footer-brand p {
  font-size: .9rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.7;
  margin-top: 1rem;
}

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: .5rem;
}

.footer-col h4 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.footer-col a {
  font-size: .88rem;
  color: rgba(255, 255, 255, .55);
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--green);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: .85rem;
  color: rgba(255, 255, 255, .4);
}

.footer-bottom ul {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom a {
  font-size: .83rem;
  color: rgba(255, 255, 255, .4);
}

.footer-bottom a:hover {
  color: var(--green);
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(46, 139, 87, .4);
  z-index: 900;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--green-dark);
  transform: translateY(-3px);
}

/* ============================================================
   SECTION SUBTITLE GLOBAL
   ============================================================ */
.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 0;
}

/* ============================================================
   RESPONSIVE — TABLET (≤1024px)
   ============================================================ */
@media(max-width:1024px) {
  .piliers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-imgs {
    display: none;
  }

  .sf-grid {
    grid-template-columns: 1fr 1fr;
  }

  .produits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .forfaits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partenaires-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .entretien-intro {
    grid-template-columns: 1fr;
  }

  .entretien-intro-img {
    display: none;
  }

  .location-grid {
    grid-template-columns: 1fr;
  }

  .location-img {
    display: none;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤768px)
   ============================================================ */
@media(max-width:768px) {
  :root {
    --header-h: 72px;
  }

  /* NAV MOBILE */
  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    gap: .5rem;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .3s ease;
    z-index: 999;
    box-shadow: var(--shadow-lg);
  }

  .nav-menu.open {
    transform: translateX(0);
  }

  .nav-menu>li>a {
    padding: 1rem;
    font-size: 1rem;
    border-bottom: 1px solid var(--border);
  }

  .nav-cta {
    margin-top: .5rem;
    text-align: center;
  }

  .dropdown {
    position: static;
    box-shadow: none;
    border: none;
    padding-left: 1rem;
    visibility: visible;
    opacity: 1;
    transform: none;
    max-height: none;
    border-top: 1px solid var(--border);
    margin-top: .25rem;
  }

  /* HERO */
  .hero-slider {
    height: 70vw;
    min-height: 320px;
  }

  .slide-content h1,
  .slide-content h2 {
    font-size: 1.5rem;
  }

  .slide-content p {
    font-size: .9rem;
  }

  .slide-btns {
    flex-direction: column;
  }

  .btn {
    text-align: center;
  }

  .slide-prev,
  .slide-next {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  /* SECTIONS */
  .piliers-grid {
    grid-template-columns: 1fr;
  }

  .sf-grid {
    grid-template-columns: 1fr;
  }

  .produits-grid {
    grid-template-columns: 1fr;
  }

  .forfaits-grid {
    grid-template-columns: 1fr;
  }

  .pieces-grid {
    grid-template-columns: 1fr;
  }

  .partenaires-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .magasins-grid {
    grid-template-columns: 1fr;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .galerie-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .galerie-large {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .galerie-item {
    height: 180px;
  }

  /* MAGASINS */
  .magasin-info-grid {
    grid-template-columns: 1fr;
  }

  /* SECTION TITRES */
  h2 {
    font-size: 1.7rem !important;
  }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (≤480px)
   ============================================================ */
@media(max-width:480px) {
  .container {
    padding: 0 16px;
  }

  .logo-name {
    font-size: 1.2rem;
  }

  .logo img {
    height: 36px;
  }

  .hero-slider {
    height: 80vw;
  }

  .partenaires-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .galerie-item {
    height: 140px;
  }

  section {
    padding: 3rem 0;
  }
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  margin-top: var(--header-h);
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, .72) 0%, rgba(0, 0, 0, .42) 60%, rgba(0, 0, 0, .2) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  color: #fff;
}

.page-hero-content h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: .75rem;
  max-width: 700px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, .3);
}

.page-hero-content p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .88);
  max-width: 560px;
  line-height: 1.6;
}

@media(max-width:768px) {
  .page-hero {
    height: 280px;
  }

  .page-hero-content h1 {
    font-size: 1.6rem;
  }
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  padding: 12px 0;
  background: #f8fafc;
  border-bottom: 1px solid #f1f5f9;
  font-size: .82rem;
  color: #94a3b8;
}

.breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb ol li {
  list-style: none;
}

.breadcrumb a {
  color: #64748b;
  transition: color .2s;
}

.breadcrumb a:hover {
  color: var(--green);
}

.breadcrumb .sep {
  color: #cbd5e1;
}

.breadcrumb [aria-current] {
  color: var(--green);
  font-weight: 600;
}

/* Fil d'Ariane intégré dans le page-hero (bas de l'image) */
.page-hero-crumb {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: rgba(0, 0, 0, .30);
  padding: .45rem 0;
}

.page-hero-crumb ol {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: .78rem;
  color: rgba(255, 255, 255, .78);
}

.page-hero-crumb ol li {
  list-style: none;
}

.page-hero-crumb ol li+li::before {
  content: '›';
  margin-right: 4px;
  color: rgba(255, 255, 255, .45);
}

.page-hero-crumb a {
  color: rgba(255, 255, 255, .92);
  font-weight: 600;
  transition: color .2s;
}

.page-hero-crumb a:hover {
  color: #fff;
}

.page-hero-crumb .active {
  color: #fff;
  font-weight: 600;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-item {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  transition: box-shadow .2s;
}

.faq-item.open {
  box-shadow: var(--shadow-md);
  border-color: #d1fae5;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: .92rem;
  font-weight: 600;
  color: var(--text);
  transition: color .2s;
}

.faq-question:hover,
.faq-item.open .faq-question {
  color: var(--green);
}

.faq-icon {
  width: 24px;
  height: 24px;
  background: #f0fdf4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  transition: transform .3s, background .2s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--green);
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 1rem 1.5rem 1.5rem;
  font-size: .88rem;
  color: #64748b;
  line-height: 1.75;
  border-top: 1px solid #f1f5f9;
}

/* Alias pour pages secondaires (faq-trigger / faq-content pattern) */
.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  transition: color .2s;
}

.faq-trigger:hover,
.faq-trigger.active {
  color: var(--green);
}

.faq-icon {
  font-size: 1.1rem;
  transition: transform .3s;
  flex-shrink: 0;
}

.faq-trigger.active .faq-icon {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.faq-content.active {
  max-height: 600px;
}

.faq-content p,
.faq-content ul {
  padding: .2rem 1.5rem 1.2rem;
  font-size: .88rem;
  color: #64748b;
  line-height: 1.75;
  border-top: 1px solid #f1f5f9;
  margin: 0;
}

/* ============================================================
   STEPS / HOW IT WORKS
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.step {
  text-align: center;
}

.step-number {
  width: 52px;
  height: 52px;
  background: var(--green);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 6px 20px rgba(46, 139, 87, .3);
}

.step h3 {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: .4rem;
}

.step p {
  font-size: .83rem;
  color: #64748b;
}

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

@media(max-width:480px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   FEATURE / AVANTAGES CARDS
   ============================================================ */
.avantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.avantage-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: center;
  transition: var(--transition);
}

.avantage-card:hover {
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.avantage-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.avantage-card h3 {
  font-size: 1rem;
  margin-bottom: .5rem;
}

.avantage-card p {
  font-size: .85rem;
  color: #64748b;
}

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

/* ============================================================
   CTA ENTRETIEN — Bande pleine largeur avec background image
   ============================================================ */
.cta-entretien {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
  color: #fff;
}

.cta-entretien-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(.45);
  z-index: 0;
}

.cta-entretien-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.cta-entretien h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: #fff;
  margin-bottom: 1rem;
}

.cta-entretien p {
  color: rgba(255, 255, 255, .88);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.cta-entretien .btn-outline {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
  padding: .75rem 1.75rem;
  border-radius: 6px;
  font-weight: 600;
  display: inline-block;
  transition: background .2s, color .2s;
}

.cta-entretien .btn-outline:hover {
  background: #fff;
  color: var(--green);
}

/* ============================================================
   NAV EXTRA — Téléphones + Réseaux sociaux
   ============================================================ */
.nav-extra {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: .75rem;
}

.nav-phones {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.nav-phone-link {
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  color: var(--text);
  font-size: .72rem;
  line-height: 1.3;
  white-space: nowrap;
  transition: color .2s;
}

.nav-phone-link:hover {
  color: var(--green);
}

.nav-ph-ico {
  width: 11px;
  height: 11px;
  fill: var(--green);
  flex-shrink: 0;
}

.nav-phone-city {
  font-weight: 700;
  font-size: .6rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #94a3b8;
  display: block;
  line-height: 1;
}

.nav-phone-num {
  font-weight: 700;
  font-size: .77rem;
  letter-spacing: .01em;
  display: block;
  line-height: 1.2;
}

.nav-social {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.nav-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #475569;
  transition: background .2s, color .2s, transform .15s;
  flex-shrink: 0;
}

.nav-social-link:hover {
  background: var(--green);
  color: #fff;
  transform: scale(1.15);
}

.nav-social-link svg {
  width: 9px;
  height: 9px;
  fill: currentColor;
}

@media(max-width:900px) {
  .nav-extra {
    display: none;
  }
}