/* ============================================
   DESIGN SYSTEM — "Organic Luxe"
   With Visual Rhythm & Contrast
   ============================================ */

:root {
  /* --- Core Palette --- */
  --primary:           #E0DCD1;
  --primary-light:     #F2F0EA;
  --primary-dark:      #C7C2B2;
  --primary-glass:     rgba(224, 220, 209, 0.08);

  --secondary:         #465242;
  --secondary-hover:   #556351;
  --secondary-deep:    #364631;
  --secondary-muted:   rgba(70, 82, 66, 0.12);

  --dark:              #191919;
  --dark-soft:         #2A2A2A;
  --dark-glass:        rgba(25, 25, 25, 0.85);

  /* --- Semantic: Dark Surfaces --- */
  --bg-body:           #191919;
  --bg-surface:        #1F1F1F;
  --bg-elevated:       #262626;
  --bg-card:           rgba(224, 220, 209, 0.04);

  /* --- Semantic: Light Surface (Services) --- */
  --bg-light:          #E8E4D9;
  --bg-light-card:     #DDD8CB;
  --bg-light-elevated: #D4CFBF;

  /* --- Semantic: Green Tint (Brand) --- */
  --bg-green:          #1D221A;
  --bg-green-card:     rgba(70, 82, 66, 0.08);
  --bg-green-elevated: rgba(70, 82, 66, 0.12);

  /* --- Text: Dark Mode --- */
  --text-primary:      #E0DCD1;
  --text-secondary:    rgba(224, 220, 209, 0.65);
  --text-muted:        rgba(224, 220, 209, 0.4);
  --text-on-secondary: #F2F0EA;
  --text-dark:         #191919;

  /* --- Text: Light Mode --- */
  --text-light-main:   #191919;
  --text-light-sub:    #4A4A4A;
  --text-light-muted:  #7A7A7A;

  /* --- Accent --- */
  --accent:            #465242;
  --accent-hover:      #556351;
  --accent-glow:       rgba(70, 82, 66, 0.35);

  /* --- Borders --- */
  --border-subtle:     rgba(224, 220, 209, 0.06);
  --border-light:      rgba(224, 220, 209, 0.1);
  --border-medium:     rgba(224, 220, 209, 0.15);

  /* --- Borders: Light Mode --- */
  --border-dark-subtle: rgba(25, 25, 25, 0.06);
  --border-dark-light:  rgba(25, 25, 25, 0.1);

  /* --- Shadows --- */
  --shadow-sm:         0 2px 8px rgba(0, 0, 0, 0.15);
  --shadow-md:         0 8px 24px rgba(0, 0, 0, 0.2);
  --shadow-lg:         0 16px 48px rgba(0, 0, 0, 0.3);
  --shadow-glow:       0 0 30px rgba(70, 82, 66, 0.15);

  /* --- Shadows: Light Mode --- */
  --shadow-light-sm:   0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-light-md:   0 8px 24px rgba(0, 0, 0, 0.06);
  --shadow-light-lg:   0 16px 48px rgba(0, 0, 0, 0.08);

  /* --- Typography --- */
  --font-heading:      "Playfair Display", Georgia, serif;
  --font-body:         "Inter", "Roboto", system-ui, sans-serif;

  /* --- Spacing --- */
  --nav-height:        80px;

  /* --- Transitions --- */
  --ease-smooth:       cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce:       cubic-bezier(0.34, 1.56, 0.64, 1);
}


/* ============================================
   BASE RESET
   ============================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-body);
  font-family: var(--font-body);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}


/* ============================================
   NAVBAR
   ============================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 60px;
  height: var(--nav-height);

  background: rgba(25, 25, 25, 0.75);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);

  border-bottom: 1px solid var(--border-subtle);
  z-index: 999;

  transition: all 0.4s var(--ease-smooth);
}

.navbar.scrolled {
  padding: 0 60px;
  height: 65px;
  background: rgba(25, 25, 25, 0.92);
  box-shadow: var(--shadow-md);
}


/* ============================================
   LOGO
   ============================================ */

.logo img {
  width: 60px;
  object-fit: contain;
  position: absolute;
  left: 50px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s var(--ease-smooth);
}

.logo img:hover {
  transform: translateY(-50%) scale(1.05);
  filter: brightness(1.1);
}


/* ============================================
   NAV LINKS
   ============================================ */

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  height: 100%;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s var(--ease-smooth);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
  transition: width 0.3s var(--ease-smooth);
}

.nav-links a:hover {
  color: var(--text-primary);
  padding: 8px 0;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--text-primary);
}

.nav-links a.active::after {
  width: 100%;
  background: var(--secondary);
}



/* ============================================
   MOBILE MENU BUTTON
   ============================================ */

.menu-btn {
  display: none;
  color: var(--text-primary);
  font-size: 1.8rem;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.2s;
}

.menu-btn:hover {
  background: var(--primary-glass);
}

/* ============================================
   SERVICES DROPDOWN — SIMPLE + CLEAN
   ============================================ */

.dropdown {
  position: relative;
}

.drop-btn {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 8px 0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  transition: color 0.3s var(--ease-smooth);
  text-decoration: none;
}

.drop-btn:hover {
  color: var(--text-primary);
}

.arrow-down {
  display: none;
  transition: transform 0.3s var(--ease-smooth);
}

/* Hover bridge */
.dropdown::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 20px;
  background: transparent;
}

/* ============================================
   SUB MENU — DESKTOP
   ============================================ */

.sub-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%);

  min-width: 220px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 0.6rem;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  box-shadow: var(--shadow-lg);
  transition: all 0.3s var(--ease-smooth);
  z-index: 1000;

  list-style: none;
  margin: 0;
}

/* Hover bridge fo9 submenu */
.sub-menu::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
  background: transparent;
}

.dropdown:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.sub-menu li {
  list-style: none;

}

.sub-menu li a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.1rem;
  border-radius: 10px;
  color: var(--text-secondary);
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s var(--ease-smooth);
}

.sub-menu li a:hover {
  color: var(--text-primary);
  background: var(--secondary-muted);

}

/* Active state */
.sub-menu li a.active {
  color: var(--text-primary);
  background: var(--secondary-muted);
}

/* ============================================
   MOBILE — DROPDOWN ACCORDION
   ============================================ */

@media (max-width: 900px) {

  .arrow-down {
    display: block;
    flex-shrink: 0;
  }

  .dropdown.open .arrow-down {
    transform: rotate(180deg);
  }

  .drop-btn {
    width: 100%;
    padding: 12px 24px;
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    border-radius: 8px;
  }

  .sub-menu {
    position: static;
    transform: none;
    min-width: unset;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--ease-smooth);
  }

  .sub-menu::before {
    display: none;
  }

  .dropdown.open .sub-menu {
    max-height: 300px;
  }

  .sub-menu li a {
    padding: 0.7rem 1.5rem;
    margin: 0.15rem 0.5rem;
    border-radius: 10px;
    font-size: 0.95rem;
    background: rgba(224, 220, 209, 0.03);
    border: 1px solid var(--border-subtle);
  }

  .sub-menu li a:hover {
    background: var(--secondary-muted);
    border-color: rgba(70, 82, 66, 0.2);
  }
}

/* ============================================
   HERO SECTION — STYLE A: DARK IMMERSIVE
   ============================================ */

.hero_section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;

background:
linear-gradient(rgba(28, 27, 24, 0.7), rgb(28, 27, 24) 90%),
url("../img/backgroundEnhanced.jpg") no-repeat ;
background-size: cover;
}

.hero_section::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}


/* ============================================
   HERO CONTENT
   ============================================ */

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 100vw;
  padding: 0 2rem;
}


/* ============================================
   HERO BADGE
   ============================================ */

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--secondary-muted);
  border: 1px solid rgba(70, 82, 66, 0.25);
  margin-left: 35%;
  
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  margin-bottom: 2rem;

  animation: fadeInDown 0.8s var(--ease-smooth) forwards;
}

.hero-badge span {
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
  fill: var(--secondary);
}


/* ============================================
   HERO TITLE
   ============================================ */

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 1.8rem;
  font-weight: 700;
  text-align: center;
  animation: fadeInUp 0.9s var(--ease-smooth) 0.2s forwards;
  opacity: 0;
}

.hero-title .highlight {
  color: var(--secondary);
  position: relative;
  display: inline-block;
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--accent-glow);
  border-radius: 4px;
  z-index: -1;
}


/* ============================================
   HERO SUBTITLE
   ============================================ */

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto 3rem;
  font-weight: 300;
  line-height: 1.85;
  letter-spacing: 0.2px;

  animation: fadeInUp 0.9s var(--ease-smooth) 0.4s forwards;
  opacity: 0;
}


/* ============================================
   HERO BUTTONS
   ============================================ */

.hero-buttons {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;

  animation: fadeInUp 0.9s var(--ease-smooth) 0.6s forwards;
  opacity: 0;
}


/* ============================================
   GLOBAL BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.4rem;
  border-radius: 50px;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  transition: all 0.35s var(--ease-smooth);
}

/* Primary Button — Green Fill */
.btn-primary {
  background: var(--secondary);
  color: var(--primary-light);
  box-shadow: 0 4px 15px rgba(70, 82, 66, 0.2);
}

.btn-primary:hover {
  background: var(--secondary-hover);
  transform: translateY(-3px);
  box-shadow:
    0 8px 25px rgba(70, 82, 66, 0.3),
    var(--shadow-glow);
}

.btn-primary:active {
  transform: translateY(-1px);
}

/* Outline Button — Bone Border */
.btn-outline {
  background: transparent;
  color: var(--secondary);
  border: 1.5px solid var(--secondary);
  transform: translateY(-5px);
}

.btn-outline:hover {
  border-color: var(--secondary);
  color: var(--secondary);
  background: var(--secondary-muted);
  transform: translateY(-10px);
}

.btn-outline:active {
  transform: translateY(-1px);
}

/* Outline on light backgrounds */
.btn-outline-light {
  background: transparent;
  color: var(--text-light-main);
  border: 1.5px solid var(--border-dark-light);
}

.btn-outline-light:hover {
  border-color: var(--secondary);
  color: var(--secondary);
  background: var(--secondary-muted);
  transform: translateY(-3px);
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s var(--ease-smooth);
}

.btn:hover svg {
  transform: translateX(3px);
}


/* ============================================
   STATS BAR — STYLE A: GLASS FLOATING
   ============================================ */

.stats-bar {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);

  padding: 1.5rem 2.5rem;

  position: absolute;
  left: 50%;
  bottom:-15%; 
  transform: translateX(-50% );
  z-index: 3;
  max-width: 1100px;
  min-width: 1100px;

  border-radius: 20px;

  box-shadow:
    var(--shadow-lg),
    inset 0 1px 0 rgba(224, 220, 209, 0.05);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  transition: box-shadow 0.3s var(--ease-smooth);
}

.stats-bar:hover {
  box-shadow:
    var(--shadow-lg),
    var(--shadow-glow),
    inset 0 1px 0 rgba(224, 220, 209, 0.05);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 0;
  text-align: center;
}

.stat-item {
  padding: 1rem 2rem;
  position: relative;
  transition: transform 0.3s var(--ease-smooth);
}

.stat-item:hover {
  transform: translateY(-4px);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -1px;
  transition: color 0.3s var(--ease-smooth);
}

.stat-item:hover .stat-number {
  color: var(--primary);
}

.stat-number .accent {
  color: var(--secondary);
  font-size: 0.75em;
  font-weight: 700;
  vertical-align: super;
  letter-spacing: 0;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.3s var(--ease-smooth);
}

.stat-item:hover .stat-label {
  color: var(--text-secondary);
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--border-light) 30%,
    var(--border-light) 70%,
    transparent
  );
  align-self: center;
  justify-self: center;
}


/* ============================================
   SERVICES SECTION — STYLE B: LIGHT SURFACE
   ============================================ */

.services-section {
  position: relative;
  padding: 8rem 2rem 6rem;
  overflow: hidden;

  /* THE CONTRAST SHIFT — Light bone surface */
  background: var(--bg-light);
  color: var(--text-light-main);
}

/* Divider line at top */
.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 5%,
    rgba(70, 82, 66, 0.827) 50%,
    transparent 95%
  );
}

.services-section .services-header {
    display: none;
    align-items: center;
    gap: 0.6rem;
    background: var(--secondary-muted);
    border: 1px solid rgba(70, 82, 66, 0.2);
    padding: 0.5rem 1.4rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

/* Badge — light mode */






/* Title — light mode */
.services-section .section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--text-light-main);
  font-weight: 700;
  line-height: 1.15;
  margin-top: 5.2rem;
  margin-bottom: 1.2rem;
  text-align: center;
}

.services-section .section-title .highlight {
  color: var(--secondary);
  position: relative;
  display: inline-block;
}

.services-section .section-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 6px;
  background: rgba(70, 82, 66, 0.2);
  border-radius: 4px;
  z-index: -1;
}

/* Subtitle — light mode */
.services-section .section-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--text-light-sub);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
  font-weight: 400;
  margin-bottom: 2rem;
  text-align: center;
}

/* Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

/* Card — light mode */
.service-card {
  background: var(--primary-light);
  border: 1px solid var(--border-dark-subtle);
  border-radius: 20px;
  padding: 2.5rem;

  display: flex;
  flex-direction: column;
  gap: 0;

  position: relative;
  overflow: hidden;

  box-shadow: var(--shadow-light-sm);
  transition: all 0.4s var(--ease-smooth);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--secondary),
    transparent
  );
  transition: width 0.5s var(--ease-smooth);
}

.service-card:hover {
  border-color: var(--border-dark-light);
  background: #F5F3ED;
  transform: translateY(-6px);
  box-shadow: var(--shadow-light-md);
}

.service-card:hover::before {
  width: 80%;
}

/* Featured card — light mode */
.service-card.featured {
  background: rgba(70, 82, 66, 0.06);
  border-color: rgba(70, 82, 66, 0.18);
}

.service-card.featured:hover {
  background: rgba(70, 82, 66, 0.1);
  border-color: rgba(70, 82, 66, 0.3);
  box-shadow: var(--shadow-light-lg);
}

.card-badge {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;

  background: var(--secondary);
  color: var(--primary-light);

  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;

  padding: 0.35rem 1rem;
  border-radius: 50px;
}

/* Icon — light mode */
.card-icon {
  width: 56px;
  height: 56px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(70, 82, 66, 0.08);
  border: 1px solid rgba(70, 82, 66, 0.12);
  border-radius: 14px;
  margin-bottom: 1.8rem;

  color: var(--secondary);

  transition: all 0.35s var(--ease-smooth);
}

.service-card:hover .card-icon {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--primary-light);
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(70, 82, 66, 0.2);
}

.card-content {
  flex: 1;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-light-main);
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.card-description {
  font-size: 0.92rem;
  color: var(--text-light-sub);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.card-features {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
  padding: 0;
}

.card-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;

  font-size: 0.85rem;
  color: var(--text-light-sub);
  font-weight: 400;
}

.card-features li svg {
  color: var(--secondary);
  flex-shrink: 0;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;

  color: var(--text-light-muted);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;

  padding-top: 1.2rem;
  border-top: 1px solid var(--border-dark-subtle);
  margin-top: auto;

  transition: all 0.3s var(--ease-smooth);
}

.card-link svg {
  transition: transform 0.3s var(--ease-smooth);
}

.card-link:hover {
  color: var(--secondary);
}

.card-link:hover svg {
  transform: translateX(5px);
}

.services-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 4rem;
  position: relative;
  z-index: 1;
}

.services-cta p {
  color: var(--text-light-muted);
  font-size: 0.95rem;
  font-weight: 400;
}


/* ============================================
   BRAND / TRUST — STYLE C: GREEN TINTED DARK
   ============================================ */

.brand-section {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  padding: 7rem 2rem;

  /* Green-tinted dark — completely different mood */
  background: var(--bg-green);

  /* Ambient glow */
  background-image:
    radial-gradient(
      ellipse 50% 40% at 80% 20%,
      rgba(70, 82, 66, 0.15) 0%,
      transparent 70%
    );
}

/* Grain texture */
.brand-section::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.brand-section > * {
  position: relative;
  z-index: 1;
}

.brand-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.5rem;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
}

/* Left panel */
.brand-main {
  position: relative;
  padding: 3rem;
  border-radius: 24px;
  background: rgba(70, 82, 66, 0.06);
  border: 1px solid rgba(70, 82, 66, 0.12);
  overflow: hidden;
}

.brand-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 82%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(70, 82, 66, 0.5),
    transparent
  );
}

.brand-section .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 1.3rem;
  border-radius: 999px;
  background: rgba(70, 82, 66, 0.12);
  border: 1px solid rgba(70, 82, 66, 0.2);
  margin-bottom: 1.5rem;
}

.brand-section .badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--secondary);
  box-shadow: 0 0 0 6px rgba(70, 82, 66, 0.15);
}

.brand-section .section-badge span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--primary-dark);
}

.brand-section .section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.08;
  color: var(--text-primary);
  margin-bottom: 1.3rem;
}

.brand-section .section-title .highlight {
  color: var(--secondary);
  position: relative;
}

.brand-section .section-title .highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 6px;
  background: rgba(70, 82, 66, 0.25);
  border-radius: 999px;
  z-index: -1;
}

.brand-lead {
  font-size: 1.08rem;
  line-height: 1.9;
  color: var(--text-primary);
  font-weight: 300;
  margin-bottom: 1.15rem;
}

.brand-text {
  font-size: 0.98rem;
  line-height: 1.9;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.brand-quote {
  margin: 1.8rem 0;
  padding: 1.25rem 1.35rem;
  border-radius: 18px;
  background: rgba(70, 82, 66, 0.1);
  border: 1px solid rgba(70, 82, 66, 0.2);
  color: var(--primary-light);
  line-height: 1.8;
  font-size: 0.95rem;
  font-style: italic;
}

/* Pillars */
.brand-pillars {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.brand-pillars li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 1rem 1.05rem;
  border-radius: 16px;
  background: rgba(70, 82, 66, 0.04);
  border: 1px solid rgba(70, 82, 66, 0.1);
  color: var(--text-secondary);
  line-height: 1.7;
  transition: all 0.3s var(--ease-smooth);
}

.brand-pillars li:hover {
  border-color: rgba(70, 82, 66, 0.2);
  background: rgba(70, 82, 66, 0.08);
  transform: translateY(-2px);
}

.brand-pillars strong {
  color: var(--text-primary);
  font-weight: 600;
}

.pillar-dot {
  width: 10px;
  height: 10px;
  margin-top: 0.5rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--secondary);
  box-shadow: 0 0 0 6px rgba(70, 82, 66, 0.15);
}

/* Right side */
.brand-aside {
  display: grid;
  gap: 1rem;
}

.brand-intro-card {
  padding: 1.5rem;
  border-radius: 20px;
  background: rgba(70, 82, 66, 0.06);
  border: 1px solid rgba(70, 82, 66, 0.1);
}

.mini-label {
  display: inline-block;
  margin-bottom: 0.7rem;
  color: var(--secondary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.brand-intro-card p {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 0.95rem;
}

.value-card {
  padding: 1.45rem;
  border-radius: 20px;
  background: rgba(70, 82, 66, 0.05);
  border: 1px solid rgba(70, 82, 66, 0.1);
  transition: all 0.35s var(--ease-smooth);
}

.value-card:hover {
  transform: translateY(-4px);
  border-color: rgba(70, 82, 66, 0.2);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.value-index {
  margin-bottom: 0.65rem;
  color: var(--secondary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.value-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--text-primary);
  margin-bottom: 0.55rem;
  line-height: 1.3;
}

.value-card p {
  color: var(--text-secondary);
  font-size: 0.93rem;
  line-height: 1.75;
}

/* CTA box */
.brand-cta-box {
  padding: 1.6rem;
  border-radius: 20px;
  background: rgba(70, 82, 66, 0.1);
  border: 1px solid rgba(70, 82, 66, 0.2);
}

.brand-cta-box p {
  color: var(--text-primary);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.brand-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}





/* ============================================
   SHARED ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(70, 82, 66, 0.4);
  }
  50% {
    opacity: 0.8;
    box-shadow: 0 0 0 6px rgba(70, 82, 66, 0);
  }
}


/* ============================================
   SHARED SECTION COMPONENTS
   ============================================ */

/* Section badge — default (dark mode) */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--secondary-muted);
  border: 1px solid rgba(70, 82, 66, 0.2);
  padding: 0.5rem 1.4rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--secondary);
  display: inline-block;
  animation: pulse 2s infinite;
}

.section-badge span {
  color: var(--primary-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Section title — default (dark mode) */
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.section-title .highlight {
  color: var(--secondary);
  position: relative;
  display: inline-block;
}

.section-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--accent-glow);
  border-radius: 4px;
  z-index: -1;
}

/* Section subtitle — default (dark mode) */
.section-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
  font-weight: 300;
}


/* ============================================
   RESPONSIVE — NAVBAR
   ============================================ */

@media (max-width: 900px) {
  .navbar {
    padding: 0 24px;
  }

  .logo img {
    left: 24px;
    width: 50px;
  }

  .contact_item {
    right: 70px;
    padding: 8px 20px;
    font-size: 0.72rem;
  }

  .menu-btn {
    display: block;
    position: absolute;
    right: 20px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--bg-surface);
    border-left: 1px solid var(--border-subtle);
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 100px;
    gap: 8px;
    transition: right 0.4s var(--ease-smooth);
    box-shadow: var(--shadow-lg);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 1rem;
    padding: 12px 40px;
    width: 100%;
    border-radius: 8px;
    text-align: center;
  }

  .nav-links a:hover {
    background: var(--secondary-muted);
  }

  .nav-links a::after {
    display: none;
  }

  .dropdown-menu {
    position: static;
    transform: none;
    min-width: unset;
    flex-direction: column;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 10px 20px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    gap: 20px;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 0 16px;
  }

  .logo img {
    left: 16px;
    width: 45px;
  }

  .hero-content {
    padding: 0 1.2rem;
  }

  .contact_item {
    display: none;
  }
}


/* ============================================
   RESPONSIVE — STATS
   ============================================ */

@media (max-width: 900px) {
  .stats-bar {
    display: none;
  }
}

@media (max-width: 480px) {
  .stats-bar {
  display: none;
  }

}


/* ============================================
   RESPONSIVE — SERVICES (LIGHT)
   ============================================ */

@media (max-width: 900px) {
  .services-section {
    padding: 5rem 1.5rem 4rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .service-card {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .services-section {
    padding: 4rem 1rem 3rem;
  }

  .service-card {
    padding: 1.5rem;
    border-radius: 16px;
  }

  .card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    margin-bottom: 1.2rem;
  }

  .card-title {
    font-size: 1.15rem;
  }

  .services-cta {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .card-badge {
    font-size: 0.62rem;
    padding: 0.3rem 0.8rem;
  }
}


/* ============================================
   RESPONSIVE — BRAND (GREEN)
   ============================================ */

@media (max-width: 980px) {
  .brand-grid {
    grid-template-columns: 1fr;
  }

  .brand-section {
    padding: 5rem 1.5rem;
  }

  .brand-main {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .brand-section {
    padding: 4rem 1rem;
  }

  .brand-main,
  .brand-intro-card,
  .value-card,
  .brand-cta-box {
    border-radius: 16px;
  }

  .brand-main {
    padding: 1.5rem;
  }

  .brand-actions {
    flex-direction: column;
  }

  .brand-actions .btn {
    width: 100%;
    justify-content: center;
  }
}





/* ============================================
   ZONES SECTION — HOME PAGE
   ============================================ */

.zones-section {
  width: 100%;
  background-color: var(--bg-coverage);
  padding: 7rem 2rem;
}

.zones-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.zones-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Grid dyal les cartes */
.zones-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

/* Kol carte dyal région */
.zone-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.35s var(--ease-smooth);
}

.zone-card:hover {
  border-color: var(--border-light);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

/* Header dyal la carte */
.zone-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-subtle);
}

.zone-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--secondary-muted);
  color: var(--secondary);
  flex-shrink: 0;
}

.zone-card-header h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

/* Les liens dyal les villes */
.zone-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.zone-city-link {
  display: inline-flex;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: rgba(224, 220, 209, 0.04);
  border: 1px solid var(--border-subtle);
  transition: all 0.25s var(--ease-smooth);
}

.zone-city-link:hover {
  color: var(--primary-light);
  background: var(--secondary);
  border-color: var(--secondary);
  transform: translateY(-2px);
}

/* Description */
.zone-description {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* CTA f le7t */
.zones-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
}

.zones-cta p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .zones-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .zones-section {
    padding: 5rem 1.5rem;
  }

  .zones-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .zone-card {
    padding: 1.5rem;
  }

  .zones-cta {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
/* ============================================
   CITY PAGE — COMPLETE STYLES
   ============================================ */

/* ============================================
   CITY HERO — Background: Dark #1C1B18
   ============================================ */

.city-hero {
  width: 100%;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-hero);
  padding: 10rem 2rem 6rem;
}

.city-hero-inner {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.city-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  color: var(--text-primary);
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 1.8rem;
}

.city-title .highlight {
  color: var(--secondary);
  position: relative;
  display: inline-block;
}

.city-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--accent-glow);
  border-radius: 4px;
  z-index: -1;
}

.city-lead {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: var(--text-secondary);
  line-height: 1.9;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}

.city-actions {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}


/* ============================================
   CITY SERVICES — Background: Light #E6E1D5
   ============================================ */

.city-services {
  width: 100%;
  background-color: var(--bg-services);
  padding: 6rem 2rem;
}

.city-services-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.city-services-inner > h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--text-dark-main);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.city-services-inner > p {
  color: var(--text-dark-sub);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 3rem;
  max-width: 750px;
}

.city-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.city-service-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-lt-subtle);
  border-radius: 20px;
  padding: 2.2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-smooth);
}

/* Hover glow line */
.city-service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 0.5s var(--ease-smooth);
}

.city-service-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lt-md);
  border-color: var(--border-lt-light);
  background: var(--bg-light-card-hover);
}

.city-service-item:hover::before {
  width: 70%;
}

.city-service-item h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--text-dark-main);
  margin-bottom: 0.8rem;
  line-height: 1.35;
  font-weight: 700;
}

.city-service-item p {
  color: var(--text-dark-sub);
  font-size: 0.95rem;
  line-height: 1.75;
  margin: 0;
}


/* ============================================
   CITY WHY — Background: Green Tint #242821
   ============================================ */

.city-why {
  width: 100%;
  background-color: var(--bg-brand);
  padding: 6rem 2rem;
}

.city-why-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.city-why-inner > h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--text-primary);
  margin-bottom: 3rem;
  line-height: 1.2;
  max-width: 800px;
}

.city-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.city-why-item {
  background: rgba(70, 82, 66, 0.06);
  border: 1px solid rgba(70, 82, 66, 0.12);
  border-radius: 18px;
  padding: 1.8rem;
  transition: all 0.35s var(--ease-smooth);
}

.city-why-item:hover {
  transform: translateY(-5px);
  border-color: rgba(70, 82, 66, 0.25);
  background: rgba(70, 82, 66, 0.1);
  box-shadow: var(--shadow-md);
}

.city-why-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--secondary);
  margin-bottom: 0.7rem;
  font-weight: 700;
}

.city-why-item p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.75;
  margin: 0;
}


/* ============================================
   ZONES SECTION — LIGHT BACKGROUND
   ============================================ */

.zones-section {
  width: 100%;
  background-color: var(--bg-services);
  padding: 7rem 2rem;
}

.zones-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.zones-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

/* Badge override — light */
.zones-section .section-badge {
  background: rgba(70, 82, 66, 0.1);
  border-color: rgba(70, 82, 66, 0.18);
}

.zones-section .section-badge span {
  color: var(--secondary-deep);
}

/* Title override — light */
.zones-section .section-title {
  color: var(--text-dark-main);
}

.zones-section .section-title .highlight::after {
  background: rgba(70, 82, 66, 0.18);
}

/* Subtitle override — light */
.zones-section .section-subtitle {
  color: var(--text-dark-sub);
  font-weight: 400;
}

/* ============================================
   ZONES GRID
   ============================================ */

.zones-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}

/* ============================================
   ZONE CARD — clickable
   ============================================ */

.zone-card {
  display: flex;
  flex-direction: column;
  background: transparent;
  border: 1px solid var(--bg-light-card);
  border-radius: 18px;
  padding: 1.5rem;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.35s var(--ease-smooth);
  cursor: pointer;
  color: var(--primary-dark)
}

/* Hover glow line */
.zone-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 0.4s var(--ease-smooth);
}

.zone-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-lt-light);
  background: var(--bg-light-card-hover);
  box-shadow: var(--shadow-lt-md);
}

.zone-card:hover::before {
  width: 70%;
}

/* Top — icon + name */
.zone-card-top {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.8rem;
}

.zone-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(70, 82, 66, 0.08);
  border: 1px solid rgba(70, 82, 66, 0.1);
  color: var(--secondary);
  flex-shrink: 0;
  transition: all 0.3s var(--ease-smooth);
}

.zone-card:hover .zone-icon {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--primary-light);
  box-shadow: 0 4px 14px rgba(70, 82, 66, 0.2);
}

.zone-card-top h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark-main);
  margin: 0;
  line-height: 1.3;
}

/* Description */
.zone-card-desc {
  font-size: 0.88rem;
  color: var(--text-dark-muted);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

/* Arrow */
.zone-card-arrow {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 1rem;
  color: var(--text-dark-muted);
  transition: all 0.3s var(--ease-smooth);
}

.zone-card-arrow svg {
  transition: transform 0.3s var(--ease-smooth);
}

.zone-card:hover .zone-card-arrow {
  color: var(--secondary);
}

.zone-card:hover .zone-card-arrow svg {
  transform: translateX(4px);
}

/* ============================================
   BOTTOM CTA
   ============================================ */

.zones-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem;
  border-radius: 18px;
  background: rgba(70, 82, 66, 0.06);
  border: 1px solid rgba(70, 82, 66, 0.12);
}

.zones-bottom-text {
  flex: 1;
}

.zones-note {
  color: var(--text-dark-sub);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .zones-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .zones-section {
    padding: 5rem 1.5rem;
  }

  .zones-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }

  .zones-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1.2rem;
    padding: 1.5rem;
  }

  .zones-bottom .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .zones-section {
    padding: 4rem 1rem;
  }

  .zones-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .zone-card {
    padding: 1.2rem;
    border-radius: 14px;
  }

  .zone-card-top h3 {
    font-size: 1rem;
  }

  .zones-bottom {
    padding: 1.2rem;
    border-radius: 14px;
  }
}
/* ============================================
   ZONES SECTION — TAGS STYLE (LIGHT BG)
   ============================================ */

.zones-section {
  width: 100%;
  background-color: var(--bg-services);
  padding: 7rem 2rem;
}

.zones-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.zones-header {
  text-align: center;
  margin-bottom: 3.5rem;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.zones-section .section-badge {
  background: rgba(70, 82, 66, 0.1);
  border-color: rgba(70, 82, 66, 0.18);
}

.zones-section .section-badge span {
  color: var(--secondary-deep);
}

.zones-section .section-title {
  color: var(--text-dark-main);
}

.zones-section .section-title .highlight::after {
  background: rgba(70, 82, 66, 0.18);
}

.zones-section .section-subtitle {
  color: var(--text-dark-sub);
  font-weight: 400;
}

/* ============================================
   TAGS GRID
   ============================================ */

.zones-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

/* ============================================
   SINGLE TAG
   ============================================ */

.zone-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;

  padding: 0.55rem 1.1rem;
  border-radius: 999px;

  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;

  background: var(--bg-light-card);
  border: 1px solid var(--border-lt-subtle);

  transition: all 0.3s var(--ease-smooth);
}

.zone-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--secondary);
  opacity: 0.4;
  flex-shrink: 0;
  transition: all 0.3s var(--ease-smooth);
}

.zone-tag:hover {
  color: var(--primary);
  background: var(--secondary);
  border-color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(70, 82, 66, 0.2);
}

.zone-tag:hover .zone-tag-dot {
  background: var(--primary-light);
  opacity: 1;
}

/* Hidden */
.zone-tag.is-hidden {
  display: none;
}

/* ============================================
   COUNTER
   ============================================ */

.zones-count {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-dark-muted);
  margin-bottom: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* ============================================
   TOGGLE BUTTON
   ============================================ */

.zones-showmore-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.zones-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;

  padding: 0.75rem 1.8rem;
  border-radius: 999px;

  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.3px;

  color: var(--text-dark-sub);
  background: transparent;
  border: 1.5px solid var(--border-lt-medium);

  cursor: pointer;
  transition: all 0.35s var(--ease-smooth);
}

.zones-toggle-btn:hover {
  color: var(--secondary);
  border-color: var(--secondary);
  background: rgba(70, 82, 66, 0.06);
  transform: translateY(-2px);
}

.zones-toggle-icon {
  transition: transform 0.35s var(--ease-smooth);
}

.zones-toggle-btn.is-expanded .zones-toggle-icon {
  transform: rotate(180deg);
}

/* ============================================
   BOTTOM CTA
   ============================================ */

.zones-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;

  padding: 2rem;
  border-radius: 18px;

  background: rgba(70, 82, 66, 0.06);
  border: 1px solid rgba(70, 82, 66, 0.12);
}

.zones-note {
  color: var(--text-dark-sub);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
  .zones-section {
    padding: 5rem 1.5rem;
  }

  .zones-tags {
    gap: 0.5rem;
  }

  .zone-tag {
    font-size: 0.8rem;
    padding: 0.5rem 0.9rem;
  }

  .zones-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1.2rem;
    padding: 1.5rem;
  }

  .zones-bottom .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .zones-section {
    padding: 4rem 1rem;
  }

  .zone-tag {
    font-size: 0.78rem;
    padding: 0.45rem 0.8rem;
  }

  .zones-bottom {
    padding: 1.2rem;
    border-radius: 14px;
  }
}
/* aboout page */
/* ============================================
   ABOUT HERO — DARK + IMAGE BACKGROUND
   ============================================ */

.about-hero {
  width: 100%;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background-color: var(--bg-hero);
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;

background:
linear-gradient(rgba(28, 27, 24, 0.822), rgb(28, 27, 24) 90%),
url("../img/about/about-bg.jpeg") no-repeat ;
background-size: cover;
background-position: 30% 70%;

}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  pointer-events: none;
   filter: blur(8px);
  transform: scale(1.05);

  z-index: 0;

}
.about-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 10rem 2rem 5rem;
}

.about-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  color: var(--text-primary);
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 1.8rem;
}

.about-title .highlight {
  color: var(--secondary);
  position: relative;
  display: inline-block;
}

.about-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--accent-glow);
  border-radius: 4px;
  z-index: -1;
}

.about-lead {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: var(--text-secondary);
  line-height: 1.9;
  max-width: 720px;
  margin: 0 auto;
  font-weight: 300;
}


/* ============================================
   ABOUT STORY — LIGHT
   ============================================ */

.about-story {
  width: 100%;
  background-color: var(--bg-services);
  padding: 6rem 2rem;
}

.about-story-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

.about-story-content .mini-label {
  color: var(--secondary);
}

.about-story-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--text-dark-main);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.about-story-content p {
  color: var(--text-dark-sub);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 1rem;
}

.about-story-image {
  position: relative;
  border-radius: 24px;
  overflow: visible;
  z-index: 1;
}

.about-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 24px;
  position: relative;
  z-index: 2;
  transition: transform 0.5s var(--ease-smooth);
}

.about-story-image::after {
  content: "";
  position: absolute;
  inset: 0;

  transform: translate(15px, 15px);

  background-color: var(--bg-light-card);
  opacity: 0.1;
  border-radius: 24px;

  z-index: 1;
}
.about-story-image:hover img {
  transform: scale(1.03);
}
@media (max-width: 768px) {
  .about-story-image , .about-approach-image {
    width: 50%;
    margin: auto;
  }

  .about-story-image::after{
    display: none;
  }
}

/* Stats */
.about-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.about-stat {
background: rgba(22, 44, 15, 0.138);
border-radius: 16px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(5px);
-webkit-backdrop-filter: blur(5px);
border: 1px solid rgba(255, 255, 255, 0.3);

  /* border-radius: 18px; */
  padding: 1.8rem;
  text-align: center;
  transition: all 0.35s var(--ease-smooth);
}

.about-stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lt-md);
  border-color: var(--border-lt-light);
}

.about-stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-dark-main);
  display: block;
  margin-bottom: 0.3rem;
  letter-spacing: -1px;
}

.about-stat-number em {
  font-style: normal;
  color: var(--secondary);
  font-size: 1.3rem;
}

.about-stat-label {
  font-size: 0.78rem;
  color: var(--text-dark-muted);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}


/* ============================================
   ABOUT APPROACH — GREEN DARK
   ============================================ */

.about-approach {
  width: 100%;
  background-color: var(--bg-light);
  padding: 6rem 2rem;
}

.about-approach-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-approach-content .mini-label {
  color: var(--secondary);
}

.about-approach-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--accent);
  line-height: 1.2;
  margin-bottom: 2rem;
}

.approach-steps {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.approach-step {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.2rem;
  border-radius: 16px;
  background: rgba(70, 82, 66, 0.723);
  border: 1px solid rgba(70, 82, 66, 0.08);
  transition: all 0.3s var(--ease-smooth);
}

.approach-step:hover {
  border-color: rgba(34, 40, 32, 0.2);
  background: rgba(27, 31, 25, 0.723);
  transform: translateX(6px);
  box-shadow: var(--bg-elevated)   0 2px 5px; 
  transform: scale(1.03);
}

.step-number {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(202, 215, 197, 0.1);
  
}


.approach-step h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.approach-step p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
  margin: 0;
}

.about-approach-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: #364631a3 0 0 5px;
}

.about-approach-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 24px;
  transition: transform 0.5s var(--ease-smooth);
}

.about-approach-image:hover img {
  transform: scale(1.03);
}


/* ============================================
   ABOUT VALUES — LIGHT
   ============================================ */

.about-values {
  width: 100%;
  background-color: var(--bg-services);
  padding: 6rem 2rem;
}

.about-values-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.about-values-header {
  margin-bottom: 3rem;
  max-width: 600px;
}

.about-values-header .mini-label {
  color: var(--secondary);
}

.about-values-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--text-dark-main);
  line-height: 1.2;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.about-value-card {
  /* background: var(--bg-elevated);
  border: 1px solid var(--border-lt-subtle); */
  
background: rgba(85, 99, 81, 0.42);
border-radius: 16px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(7.4px);
-webkit-backdrop-filter: blur(7.4px);
border: 1px solid rgba(85, 99, 81, 0.4);
  border-radius: 18px;
  padding: 2rem;
  transition: all 0.35s var(--ease-smooth);
}

.about-value-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-lt-light);
  box-shadow: var(--shadow-lt-md);
}

.about-value-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(70, 82, 66, 0.08);
  color: var(--secondary);
  margin-bottom: 1.2rem;
  transition: all 0.3s var(--ease-smooth);
}

.about-value-card:hover .about-value-icon {
  background: var(--secondary);
  color: var(--primary-light);
  box-shadow: 0 6px 18px rgba(70, 82, 66, 0.2);
}

.about-value-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-dark-main);
  margin-bottom: 0.7rem;
}

.about-value-card p {
  color: var(--text-dark-sub);
  font-size: 0.92rem;
  line-height: 1.75;
  margin: 0;
}


/* ============================================
   ABOUT ENGAGEMENT — GREEN DARK
   ============================================ */

.about-engagement {
  width: 100%;
  background-color: var(--bg-brand);
  padding: 6rem 2rem;
}

.about-engagement-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-engagement-image {
  border-radius: 24px;
  overflow: hidden;
}

.about-engagement-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 24px;
  transition: transform 0.5s var(--ease-smooth);
}

.about-engagement-image:hover img {
  transform: scale(1.03);
}

.about-engagement-content .mini-label {
  color: var(--secondary);
}

.about-quote {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--primary-light);
  line-height: 1.8;
  padding: 1.5rem;
  border-radius: 18px;
  background: rgba(70, 82, 66, 0.08);
  border: 1px solid rgba(70, 82, 66, 0.15);
  margin-bottom: 1.5rem;
}

.about-engagement-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.about-engagement-content p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.85;
  margin: 0;
}


/* ============================================
   ABOUT CTA — DARK
   ============================================ */

.about-cta {
  width: 100%;
  background-color: var(--bg-coverage);
  padding: 6rem 2rem;
  text-align: center;
}

.about-cta-inner {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}

.about-cta-inner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--text-primary);
  margin-bottom: 1.2rem;
  line-height: 1.2;
}

.about-cta-inner p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}


/* ============================================
   ABOUT — RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
  .about-hero-inner {
    padding: 8rem 1.5rem 4rem;
  }

  .about-story { padding: 5rem 1.5rem; }
  .about-story-inner { grid-template-columns: 1fr; gap: 2rem; }
  .about-stats-row { grid-template-columns: repeat(2, 1fr); }

  .about-approach { padding: 5rem 1.5rem; }
  .about-approach-inner { grid-template-columns: 1fr; gap: 2rem; }
  .about-approach-image { order: -1; }

  .about-values { padding: 5rem 1.5rem; }
  .about-values-grid { grid-template-columns: repeat(2, 1fr); }

  .about-engagement { padding: 5rem 1.5rem; }
  .about-engagement-inner { grid-template-columns: 1fr; gap: 2rem; }

  .about-cta { padding: 5rem 1.5rem; }
}

@media (max-width: 600px) {
  .about-hero-inner { padding: 7rem 1rem 3rem; }
  .about-hero { min-height: auto; }

  .about-story { padding: 4rem 1rem; }
  .about-stats-row { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
  .about-stat { padding: 1.2rem; border-radius: 14px; }
  .about-stat-number { font-size: 1.8rem; }

  .about-approach { padding: 4rem 1rem; }
  .approach-step { padding: 1rem; }

  .about-values { padding: 4rem 1rem; }
  .about-values-grid { grid-template-columns: 1fr; }
  .about-value-card { padding: 1.5rem; border-radius: 14px; }

  .about-engagement { padding: 4rem 1rem; }
  .about-quote { padding: 1.2rem; font-size: 1rem; }

  .about-cta { padding: 4rem 1rem; }
  .about-cta .btn { width: 100%; max-width: 300px; justify-content: center; }

  .about-story-image img,
  .about-approach-image img,
  .about-engagement-image img {
    border-radius: 18px;
  }
}
/* ============================================
   CONTACT HERO — DARK
   ============================================ */

.contact-hero {
  width: 100%;
  background-color: var(--bg-hero);
  padding: 10rem 2rem 5rem;
  background:
linear-gradient(rgba(28, 27, 24, 0.822), rgb(28, 27, 24) 90%),
url("../img/contact/salle-contact.jpg") no-repeat ;
background-size: cover;

background-position: center;
}

.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  pointer-events: none;
   filter: blur(8px);
  transform: scale(1.05);
  z-index: 0;

}

.contact-hero-inner {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.contact-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  color: var(--text-primary);
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.contact-title .highlight {
  color: var(--secondary);
  position: relative;
  display: inline-block;
}

.contact-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--accent-glow);
  border-radius: 4px;
  z-index: -1;
}

.contact-lead {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: var(--text-secondary);
  line-height: 1.9;
  font-weight: 300;
}


/* ============================================
   CONTACT METHODS — LIGHT
   ============================================ */

.contact-methods {
  width: 100%;
  background-color: var(--bg-services);
  padding: 6rem 2rem;
}

.contact-methods-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-methods-header {
  margin-bottom: 3rem;
  max-width: 600px;
}

.contact-methods-header .mini-label {
  color: var(--secondary);
}

.contact-methods-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--text-dark-main);
  line-height: 1.2;
}

.contact-methods-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

/* Contact Card */
.contact-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 2rem;
  border-radius: 20px;
  background: var(--bg-light-card);
  border: 1px solid var(--border-lt-subtle);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-smooth);
  cursor: pointer;
  color: var(--accent);
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 0.4s var(--ease-smooth);
}

.contact-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-lt-light);
  box-shadow: var(--shadow-lt-md);
  background: var(--bg-light-card-hover);
}

.contact-card:hover::before {
  width: 70%;
}

.contact-card--static {
  cursor: default;
}

.contact-card--static:hover {
  transform: none;
  box-shadow: none;
}

/* Icon */
.contact-card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(70, 82, 66, 0.08);
  border: 1px solid rgba(70, 82, 66, 0.1);
  color: var(--secondary);
  flex-shrink: 0;
  transition: all 0.3s var(--ease-smooth);
}

.contact-card:hover .contact-card-icon {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--primary-light);
  box-shadow: 0 6px 18px rgba(70, 82, 66, 0.2);
}

.contact-card-icon--whatsapp {
  background: rgba(37, 211, 102, 0.08);
  border-color: rgba(37, 211, 102, 0.15);
  color: #25d366;
}

.contact-card:hover .contact-card-icon--whatsapp {
  background: #25d366;
  border-color: #25d366;
  color: #fff;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.25);
}

/* Body */
.contact-card-body {
  flex: 1;
}

.contact-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--text-dark-main);
  margin-bottom: 0.35rem;
}

.contact-card-value {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 0.3rem;
}

.contact-card-body p {
  color: var(--text-dark-muted);
  font-size: 0.88rem;
  line-height: 1.5;
  margin: 0;
}

/* Arrow */
.contact-card-arrow {
  color: var(--text-dark-muted);
  flex-shrink: 0;
  transition: all 0.3s var(--ease-smooth);
}

.contact-card-arrow svg {
  transition: transform 0.3s var(--ease-smooth);
}

.contact-card:hover .contact-card-arrow {
  color: var(--secondary);
}

.contact-card:hover .contact-card-arrow svg {
  transform: translateX(4px);
}


/* ============================================
   SCHEDULE — GREEN DARK
   ============================================ */

.contact-schedule {
  width: 100%;
  background-color: var(--bg-brand);
  padding: 6rem 2rem;
}

.contact-schedule-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

/* Schedule Card */
.schedule-card {
  padding: 2.5rem;
  border-radius: 24px;
  background: rgba(70, 82, 66, 0.06);
  border: 1px solid rgba(70, 82, 66, 0.12);
}

.schedule-card .mini-label {
  color: var(--secondary);
}

.schedule-card h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 2rem;
}

.schedule-table {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 1.5rem;
}

.schedule-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(70, 82, 66, 0.1);
}

.schedule-row:last-child {
  border-bottom: none;
}

.schedule-day {
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 500;
}

.schedule-time {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 600;
}

.schedule-row--highlight .schedule-day {
  color: var(--secondary);
}

.schedule-row--highlight .schedule-time {
  color: var(--secondary);
  font-style: italic;
}

.schedule-note {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 1rem;
  border-radius: 12px;
  background: rgba(70, 82, 66, 0.06);
  border: 1px solid rgba(70, 82, 66, 0.1);
}

.schedule-note svg {
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 2px;
}

.schedule-note span {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* Trust side */
.schedule-trust {
  padding: 2.5rem;
  border-radius: 24px;
  background: rgba(70, 82, 66, 0.06);
  border: 1px solid rgba(70, 82, 66, 0.12);
}

.schedule-trust .mini-label {
  color: var(--secondary);
}

.schedule-trust h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.schedule-trust p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 1rem;
}

.trust-badges {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.trust-badge-item svg {
  color: var(--secondary);
  flex-shrink: 0;
}

.trust-badge-item span {
  color: var(--text-primary);
  font-size: 0.9rem;
  font-weight: 500;
}


/* ============================================
   CONTACT CTA — DARK
   ============================================ */

.contact-cta {
  width: 100%;
  background-color: var(--bg-coverage);
  padding: 6rem 2rem;
  text-align: center;
}

.contact-cta-inner {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}

.contact-cta-inner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.contact-cta-inner p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.contact-cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* WhatsApp button */
.btn-whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:active {
  transform: translateY(-1px);
}

.btn-whatsapp svg {
  fill: #fff;
}


/* ============================================
   CONTACT — RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
  .contact-hero { padding: 8rem 1.5rem 4rem; }
  .contact-methods { padding: 5rem 1.5rem; }
  .contact-methods-grid { grid-template-columns: 1fr; }
  .contact-schedule { padding: 5rem 1.5rem; }
  .contact-schedule-inner { grid-template-columns: 1fr; }
  .contact-cta { padding: 5rem 1.5rem; }
}

@media (max-width: 600px) {
  .contact-hero { padding: 7rem 1rem 3rem; }
  .contact-methods { padding: 4rem 1rem; }
  .contact-card { padding: 1.5rem; border-radius: 16px; }
  .contact-card-icon { width: 48px; height: 48px; border-radius: 12px; }
  .contact-schedule { padding: 4rem 1rem; }
  .schedule-card { padding: 1.5rem; border-radius: 18px; }
  .schedule-trust { padding: 1.5rem; border-radius: 18px; }
  .contact-cta { padding: 4rem 1rem; }
  .contact-cta-actions { flex-direction: column; align-items: center; }
  .contact-cta-actions .btn { width: 100%; max-width: 300px; justify-content: center; }
}
/* footer */
/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  width: 100%;
  position: relative;
  padding: 0 2rem 2rem;
  background-color: var(--bg-footer, #161513);
  border-top: 1px solid var(--border-subtle);
  margin-top: 0;
}

.footer-main {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 0;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
}

/* Brand */
.footer-brand {
  padding-right: 1rem;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1.2rem;
}

.footer-logo img {
  width: 120px;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s var(--ease-smooth);
}

.footer-logo:hover img {
  transform: scale(1.04);
}

.footer-brand-text {
  color: var(--text-secondary);
  line-height: 1.85;
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-contact-list a,
.footer-contact-list span {
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: color 0.25s var(--ease-smooth);
}

.footer-contact-list a:hover {
  color: var(--secondary);
}

/* Columns */
.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-title {
  color: var(--text-primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  background: none;
  border: none;
  padding: 0;
  cursor: default;
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
}

.footer-toggle-icon {
  display: none;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-links li {
  list-style: none;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  transition: all 0.25s var(--ease-smooth);
}

.footer-links a:hover {
  color: var(--text-primary);
  padding-left: 4px;
}

/* Bottom */
.footer-bottom {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.82rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: var(--text-muted);
  font-size: 0.82rem;
  transition: color 0.25s var(--ease-smooth);
}

.footer-bottom-links a:hover {
  color: var(--secondary);
}


/* ============================================
   FOOTER TABLET
   ============================================ */

@media (max-width: 900px) {
  .site-footer {
    padding: 0 1.5rem 1.5rem;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.5rem;
    padding: 2.5rem 0;
  }

  .footer-brand {
    grid-column: 1 / -1;
    padding-right: 0;
  }
}


/* ============================================
   FOOTER MOBILE ACCORDION
   ============================================ */

@media (max-width: 600px) {
  .site-footer {
    padding: 0 1rem 1rem;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 2rem 0 1rem;
  }

  /* Brand compact */
  .footer-brand {
    padding-bottom: 1.5rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-subtle);
  }

  .footer-logo img {
    width: 90px;
  }

  .footer-brand-text {
    font-size: 0.85rem;
    margin-bottom: 1rem;
    line-height: 1.7;
  }

  .footer-contact-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.4rem 1rem;
  }

  .footer-contact-list a,
  .footer-contact-list span {
    font-size: 0.82rem;
  }

  /* Columns accordion */
  .footer-column {
    border-bottom: 1px solid var(--border-subtle);
  }

  .footer-column:last-child {
    border-bottom: none;
  }

  .footer-title {
    cursor: pointer;
    padding: 1rem 0;
    margin-bottom: 0;
  }

  /* Show toggle icon on mobile */
  .footer-toggle-icon {
    display: block;
    color: var(--text-muted);
    transition: transform 0.3s var(--ease-smooth);
    flex-shrink: 0;
  }

  /* Rotate when open */
  .footer-toggle[aria-expanded="true"] .footer-toggle-icon {
    transform: rotate(180deg);
  }

  /* Hide links by default */
  .footer-collapse {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--ease-smooth),
                padding 0.35s var(--ease-smooth);
    padding: 0;
  }

  /* Show when expanded */
  .footer-toggle[aria-expanded="true"] + .footer-collapse {
    max-height: 300px;
    padding-bottom: 1rem;
  }

  .footer-links {
    gap: 0.5rem;
  }

  .footer-links a {
    font-size: 0.88rem;
    padding: 0.3rem 0;
    display: block;
  }

  /* Bottom bar */
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.8rem;
    padding-top: 1.2rem;
  }

  .footer-bottom p {
    font-size: 0.78rem;
  }

  .footer-bottom-links {
    gap: 0.8rem;
  }

  .footer-bottom-links a {
    font-size: 0.78rem;
  }
  
}

/* ============================================
   PAGE 1: RÉPARATION (rp-)
   Layout: Image gauche + Text droite
   Approach: Cards grid
   FAQ: Accordion
   ============================================ */

/* Hero */
.rp-hero {
  width: 100%;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background-color: #1C1B18;
}

.rp-hero-bg {
  position: absolute;
  inset: 0;

}

.rp-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 10rem 2rem 5rem;
}

.rp-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  color: var(--text-primary);
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 1.8rem;
}

.rp-hero-title .highlight {
  color: var(--secondary);
}

.rp-hero-text {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: var(--text-secondary);
  line-height: 1.9;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

/* Content — side by side */
.rp-content {
  width: 100%;
  background-color: var(--bg-light);
  padding: 6rem 2rem;
}

.rp-content-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.rp-content-image {
  border-radius: 24px;
  overflow: hidden;
}

.rp-content-image img {
  width: 100%;
  min-height: 450px;
  object-fit: cover;
  border-radius: 24px;
  transition: transform 0.5s var(--ease-smooth);
}

.rp-content-image:hover img {
  transform: scale(1.03);
}

.rp-content-text .mini-label { color: var(--secondary); }
.rp-content-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--text-light-main);
  margin-bottom: 1.5rem;
}
.rp-content-text p {
  color: var(--text-light-sub);
  line-height: 1.85;
  margin-bottom: 1rem;
}

.rp-points {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.rp-points li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-light-sub);
  font-size: 0.95rem;
}
.rp-points li svg { color: var(--secondary); flex-shrink: 0; }

/* Approach — cards */
.rp-approach {
  width: 100%;
  background-color: var(--bg-green);
  padding: 6rem 2rem;
}

.rp-approach-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.rp-approach-header { margin-bottom: 3rem; max-width: 700px; }
.rp-approach-header .mini-label { color: var(--secondary); }
.rp-approach-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--text-primary);
}

.rp-approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.rp-approach-card {
  padding: 2rem;
  border-radius: 20px;
  background: rgba(70, 82, 66, 0.05);
  border: 1px solid rgba(70, 82, 66, 0.1);
  transition: all 0.35s var(--ease-smooth);
}

.rp-approach-card:hover {
  transform: translateY(-5px);
  border-color: rgba(70, 82, 66, 0.22);
  box-shadow: var(--shadow-md);
}

.rp-approach-num {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.rp-approach-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.rp-approach-card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.75;
}

/* FAQ — accordion */
.rp-faq {
  width: 100%;
  background-color: var(--bg-light);
  padding: 6rem 2rem;
}

.rp-faq-inner {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.rp-faq-header { text-align: center; margin-bottom: 3rem; }
.rp-faq-header .mini-label { color: var(--secondary); }
.rp-faq-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--text-light-main);
}

/* CTA */
.rp-cta {
  width: 100%;
  background-color: #1E1D1A;
  padding: 6rem 2rem;
  text-align: center;
}

.rp-cta-inner { max-width: 750px; margin: 0 auto; }
.rp-cta-inner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--text-primary);
  margin-bottom: 1.2rem;
}
.rp-cta-inner p {
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
  line-height: 1.85;
}


/* ============================================
   PAGE 2: INSTALLATION (ins-)
   Layout: Text gauche + Image droite
   Approach: Timeline vertical
   FAQ: Cards grid
   ============================================ */

/* Hero */
.ins-hero {
  width: 100%;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background-color: #1C1B18;
}

.ins-hero-bg {
  position: absolute;
  inset: 0;
}
.ins-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
}

.ins-hero-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: repeating-linear-gradient(
    -45deg, transparent, transparent 40px,
    rgba(224, 220, 209, 0.5) 40px, rgba(224, 220, 209, 0.5) 41px
  );
  pointer-events: none;
}

.ins-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 10rem 2rem 5rem;
}

.ins-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  color: var(--text-primary);
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 1.8rem;
}
.ins-hero-title .highlight { color: var(--secondary); }
.ins-hero-text {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: var(--text-secondary);
  line-height: 1.9;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

/* Content — reversed */
.ins-content {
  width: 100%;
  background-color: var(--bg-light);
  padding: 6rem 2rem;
}

.ins-content-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.ins-content-text .mini-label { color: var(--secondary); }
.ins-content-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--text-light-main);
  margin-bottom: 1.5rem;
}
.ins-content-text p {
  color: var(--text-light-sub);
  line-height: 1.85;
  margin-bottom: 1rem;
}

.ins-points {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.ins-points li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-light-sub);
  font-size: 0.95rem;
}
.ins-points li svg { color: var(--secondary); flex-shrink: 0; }

.ins-content-image { border-radius: 24px; overflow: hidden; }
.ins-content-image img {
  width: 100%;
  min-height: 450px;
  object-fit: cover;
  border-radius: 24px;
  transition: transform 0.5s var(--ease-smooth);
}
.ins-content-image:hover img { transform: scale(1.03); }

/* Approach — timeline */
.ins-approach {
  width: 100%;
  background-color: var(--bg-green);
  padding: 6rem 2rem;
}

.ins-approach-inner {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.ins-approach-header { margin-bottom: 3rem; }
.ins-approach-header .mini-label { color: var(--secondary); }
.ins-approach-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--text-primary);
}

.ins-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 40px;
}

/* Vertical line */
.ins-timeline::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(70, 82, 66, 0.2);
}

.ins-timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem 0;
  position: relative;
}

.ins-timeline-marker {
  position: absolute;
  left: -40px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--primary-light);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  z-index: 1;
}

.ins-timeline-content h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}
.ins-timeline-content p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.75;
}

/* FAQ — cards grid */
.ins-faq {
  width: 100%;
  background-color: var(--bg-light);
  padding: 6rem 2rem;
}

.ins-faq-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.ins-faq-header { margin-bottom: 3rem; }
.ins-faq-header .mini-label { color: var(--secondary); }
.ins-faq-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--text-light-main);
}

.ins-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.ins-faq-card {
  background: var(--bg-light-card);
  border: 1px solid var(--border-dark-subtle);
  border-radius: 18px;
  padding: 2rem;
  transition: all 0.35s var(--ease-smooth);
}

.ins-faq-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-light-md);
}

.ins-faq-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--text-light-main);
  margin-bottom: 0.7rem;
}
.ins-faq-card p {
  color: var(--text-light-sub);
  font-size: 0.92rem;
  line-height: 1.75;
}

/* CTA */
.ins-cta {
  width: 100%;
  background-color: #1E1D1A;
  padding: 6rem 2rem;
  text-align: center;
}
.ins-cta-inner { max-width: 750px; margin: 0 auto; }
.ins-cta-inner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--text-primary);
  margin-bottom: 1.2rem;
}
.ins-cta-inner p {
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
}


/* ============================================
   PAGE 3: MOTORISATION (mot-)
   Layout: Full width image + stacked text
   Approach: Horizontal steps
   FAQ: Minimal accordion
   ============================================ */

/* Hero */
.mot-hero {
  width: 100%;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background-color: #1C1B18;
}

.mot-hero-bg {
  position: absolute;
  inset: 0;
}
.mot-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}

.mot-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 10rem 2rem 5rem;
}

.mot-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  color: var(--text-primary);
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 1.8rem;
}
.mot-hero-title .highlight { color: var(--secondary); }
.mot-hero-text {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: var(--text-secondary);
  line-height: 1.9;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

/* Content — stacked */
.mot-content {
  width: 100%;
  background-color: var(--bg-light);
  padding: 6rem 2rem;
}

.mot-content-inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.mot-content-image {
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 3rem;
}
.mot-content-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 24px;
  transition: transform 0.5s var(--ease-smooth);
}
.mot-content-image:hover img { transform: scale(1.02); }

.mot-content-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}
.mot-content-text .mini-label { color: var(--secondary); }
.mot-content-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--text-light-main);
  margin-bottom: 1.5rem;
}
.mot-content-text p {
  color: var(--text-light-sub);
  line-height: 1.85;
  margin-bottom: 1rem;
  text-align: left;
}

.mot-points-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.mot-point {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 1.2rem;
  border-radius: 14px;
  background: var(--bg-light-card);
  border: 1px solid var(--border-dark-subtle);
  transition: all 0.3s var(--ease-smooth);
}

.mot-point:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-light-sm);
}

.mot-point svg { color: var(--secondary); flex-shrink: 0; }
.mot-point span { color: var(--text-light-sub); font-size: 0.92rem; font-weight: 500; }

/* Approach — horizontal */
.mot-approach {
  width: 100%;
  background-color: var(--bg-green);
  padding: 6rem 2rem;
}

.mot-approach-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.mot-approach-header { text-align: center; margin-bottom: 3.5rem; }
.mot-approach-header .mini-label { color: var(--secondary); }
.mot-approach-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--text-primary);
}

.mot-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.mot-step {
  text-align: center;
  padding: 2rem;
  position: relative;
}

.mot-step-num {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--primary-light);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
}

.mot-step-line {
  width: 100%;
  height: 2px;
  background: rgba(70, 82, 66, 0.15);
  position: absolute;
  top: calc(2rem + 26px);
  left: 50%;
  z-index: 0;
}

.mot-step:last-child .mot-step-line { display: none; }

.mot-step h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.mot-step p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* FAQ — minimal */
.mot-faq {
  width: 100%;
  background-color: var(--bg-light);
  padding: 6rem 2rem;
}

.mot-faq-inner {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.mot-faq-header { text-align: center; margin-bottom: 3rem; }
.mot-faq-header .mini-label { color: var(--secondary); }
.mot-faq-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--text-light-main);
}

.mot-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* CTA */
.mot-cta {
  width: 100%;
  background-color: #1E1D1A;
  padding: 6rem 2rem;
  text-align: center;
}
.mot-cta-inner { max-width: 750px; margin: 0 auto; }
.mot-cta-inner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--text-primary);
  margin-bottom: 1.2rem;
}
.mot-cta-inner p {
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
}


/* ============================================
   SHARED FAQ STYLES (used by rp- and mot-)
   ============================================ */

.rp-faq-list,
.mot-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.faq-item {
  background: var(--bg-light-card);
  border: 1px solid var(--border-dark-subtle);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s var(--ease-smooth);
}

.faq-item:hover {
  border-color: var(--border-dark-light);
}

.faq-item.open {
  border-color: rgba(70, 82, 66, 0.2);
  box-shadow: var(--shadow-light-md);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-light-main);
  text-align: left;
  transition: color 0.25s var(--ease-smooth);
}

.faq-question:hover { color: var(--secondary); }

.faq-question svg {
  flex-shrink: 0;
  color: var(--text-light-muted);
  transition: transform 0.3s var(--ease-smooth), color 0.3s var(--ease-smooth);
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
  color: var(--secondary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-smooth);
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 1.5rem 1.3rem;
  color: var(--text-light-sub);
  font-size: 0.95rem;
  line-height: 1.85;
  margin: 0;
}

/* Minimal style for motorisation FAQ */
.mot-faq-list .faq-item {
  border-radius: 0;
  border-left: none;
  border-right: none;
  border-top: none;
  background: transparent;
}

.mot-faq-list .faq-item:last-child {
  border-bottom: none;
}

.mot-faq-list .faq-item.open {
  box-shadow: none;
}


/* ============================================
   ALL 3 PAGES — RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
  .rp-hero-inner,
  .ins-hero-inner,
  .mot-hero-inner {
    padding: 8rem 1.5rem 4rem;
  }

  .rp-hero, .ins-hero, .mot-hero { min-height: auto; }

  .rp-content-inner,
  .ins-content-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .rp-content-image { order: -1; }
  .rp-content-image img,
  .ins-content-image img { min-height: 300px; }

  .rp-approach-grid { grid-template-columns: 1fr; }
  .ins-faq-grid { grid-template-columns: 1fr; }
  .mot-steps { grid-template-columns: 1fr; gap: 1rem; }
  .mot-step-line { display: none; }
  .mot-points-grid { grid-template-columns: 1fr; }

  .ins-timeline { padding-left: 30px; }
  .ins-timeline-marker { left: -30px; width: 32px; height: 32px; font-size: 0.8rem; }

  .rp-content, .ins-content, .mot-content { padding: 5rem 1.5rem; }
  .rp-approach, .ins-approach, .mot-approach { padding: 5rem 1.5rem; }
  .rp-faq, .ins-faq, .mot-faq { padding: 5rem 1.5rem; }
  .rp-cta, .ins-cta, .mot-cta { padding: 5rem 1.5rem; }
}

@media (max-width: 600px) {
  .rp-hero-inner,
  .ins-hero-inner,
  .mot-hero-inner {
    padding: 7rem 1rem 3rem;
  }

  .rp-content, .ins-content, .mot-content { padding: 4rem 1rem; }
  .rp-content-image img,
  .ins-content-image img {
    min-height: 250px;
    border-radius: 18px;
  }

  .mot-content-image img {
    height: 250px;
    border-radius: 18px;
  }

  .rp-approach, .ins-approach, .mot-approach { padding: 4rem 1rem; }
  .rp-approach-card { padding: 1.5rem; border-radius: 16px; }
  .ins-timeline-item { padding: 1rem 0; }

  .rp-faq, .ins-faq, .mot-faq { padding: 4rem 1rem; }
  .faq-item { border-radius: 12px; }
  .faq-question { padding: 1.1rem 1.2rem; font-size: 0.92rem; }
  .faq-answer p { padding: 0 1.2rem 1.1rem; font-size: 0.9rem; }
  .ins-faq-card { padding: 1.5rem; border-radius: 14px; }

  .rp-cta, .ins-cta, .mot-cta { padding: 4rem 1rem; }
  .rp-cta .btn, .ins-cta .btn, .mot-cta .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .mot-point { padding: 0.8rem 1rem; border-radius: 12px; }
}

/* blog */
/* ============================================
   BLOG PAGE
   ============================================ */

/* Hero */
.blog-hero {
  width: 100%;
  background-color: #1C1B18;
  padding: 10rem 2rem 5rem;
}

.blog-hero-inner {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.blog-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  color: var(--text-primary);
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.blog-hero-title .highlight { color: var(--secondary); }

.blog-hero-text {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: var(--text-secondary);
  line-height: 1.9;
  max-width: 650px;
  margin: 0 auto;
}

/* Grid */
.blog-grid-section {
  width: 100%;
  background-color: var(--bg-light);
  padding: 6rem 2rem;
}

.blog-grid-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* Card */
.blog-card {
  background: var(--bg-light-card);
  border: 1px solid var(--border-dark-subtle);
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--ease-smooth);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-light-md);
  border-color: var(--border-dark-light);
}

.blog-card-image {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-smooth);
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--secondary);
  color: var(--primary-light);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
}

.blog-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-date {
  font-size: 0.78rem;
  color: var(--text-light-muted);
  margin-bottom: 0.6rem;
}

.blog-card-body h2 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--text-light-main);
  line-height: 1.35;
  margin-bottom: 0.7rem;
}

.blog-card-body p {
  color: var(--text-light-sub);
  font-size: 0.9rem;
  line-height: 1.7;
  flex: 1;
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  color: var(--secondary);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.25s var(--ease-smooth);
}

.blog-card-link svg {
  transition: transform 0.25s var(--ease-smooth);
}

.blog-card:hover .blog-card-link svg {
  transform: translateX(4px);
}

/* CTA */
.blog-cta {
  width: 100%;
  background-color: #1E1D1A;
  padding: 6rem 2rem;
  text-align: center;
}

.blog-cta-inner { max-width: 750px; margin: 0 auto; }

.blog-cta-inner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--text-primary);
  margin-bottom: 1.2rem;
}

.blog-cta-inner p {
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
}


/* ============================================
   ARTICLE PAGE
   ============================================ */

/* Hero */
.art-hero {
  width: 100%;
  background-color: #1C1B18;
  padding: 10rem 2rem 4rem;
}

.art-hero-inner {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.art-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 2rem;
  transition: color 0.25s var(--ease-smooth);
}

.art-back:hover { color: var(--secondary); }

.art-back svg {
  transition: transform 0.25s var(--ease-smooth);
}

.art-back:hover svg {
  transform: translateX(-4px);
}

.art-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.art-category {
  background: var(--secondary);
  color: var(--primary-light);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
}

.art-date {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.art-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--text-primary);
  line-height: 1.15;
  font-weight: 700;
}

/* Image */
.art-image-section {
  width: 100%;
  background-color: var(--bg-light);
  padding: 0 2rem;
}

.art-image-inner {
  width: 100%;
  max-width: 900px;
  margin: -3rem auto 0;
  border-radius: 24px;
  overflow: hidden;
}

.art-image-inner img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
  border-radius: 24px;
}

/* Content */
.art-content {
  width: 100%;
  background-color: var(--bg-light);
  padding: 4rem 2rem 6rem;
}

.art-content-inner {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}

.art-content-inner h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--text-light-main);
  margin: 2.5rem 0 1rem;
  line-height: 1.3;
}

.art-content-inner h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--secondary);
  margin: 2rem 0 0.7rem;
}

.art-content-inner p {
  color: var(--text-light-sub);
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 1.2rem;
}

.art-content-inner strong {
  color: var(--text-light-main);
}

/* CTA */
.art-cta {
  width: 100%;
  background-color: #1E1D1A;
  padding: 6rem 2rem;
  text-align: center;
}

.art-cta-inner { max-width: 750px; margin: 0 auto; }

.art-cta-inner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--text-primary);
  margin-bottom: 1.2rem;
}

.art-cta-inner p {
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
}

.art-cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}


/* ============================================
   BLOG + ARTICLE — RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
  .blog-hero { padding: 8rem 1.5rem 4rem; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid-section { padding: 5rem 1.5rem; }

  .art-hero { padding: 8rem 1.5rem 3rem; }
  .art-image-inner img { height: 350px; }
  .art-content { padding: 3rem 1.5rem 5rem; }
}

@media (max-width: 600px) {
  .blog-hero { padding: 7rem 1rem 3rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-grid-section { padding: 4rem 1rem; }
  .blog-card-image { height: 200px; }
  .blog-cta { padding: 4rem 1rem; }
  .blog-cta .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .art-hero { padding: 7rem 1rem 2.5rem; }
  .art-image-inner {
    margin-top: -2rem;
    border-radius: 18px;
  }
  .art-image-inner img {
    height: 250px;
    border-radius: 18px;
  }
  .art-content { padding: 2.5rem 1rem 4rem; }
  .art-content-inner h3 { font-size: 1.2rem; }
  .art-content-inner p { font-size: 0.98rem; }
  .art-cta { padding: 4rem 1rem; }
  .art-cta-actions { flex-direction: column; align-items: center; }
  .art-cta-actions .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}