.footer-primary {
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  /* FIX 1: Removed background-color black from here so the top remains transparent */
}

/* --- 1. DECORATION CONTAINER --- */
.footer-decoration {
  position: relative;
  width: 100%;
  /* Height = Lowest point of geometry (Left Side: H + 2T + Mesh) */
  height: 281px;
  background-color: transparent;
}

/* --- 2. THE BLUE BAR (TOPMOST, Z-3) --- */
.footer-bar-blue {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #07272D;
  z-index: 3;
  pointer-events: none;
  clip-path: polygon(0 85px, calc(100% - 185px) 85px, 100% 0, 100% 18px, calc(100% - 185px) 103px, 0 103px);
}

/* --- 3. THE GREEN BAR (MIDDLE, Z-2) --- */
.footer-bar-green {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #43976A;
  z-index: 2;
  pointer-events: none;
  clip-path: polygon(0 103px, calc(100% - 185px) 103px, 100% 18px, 100% 36px, calc(100% - 185px) 121px, 0 121px);
}

/* --- 4. THE MESH IMAGE STRIP (Z-1) --- */
.footer-mesh-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  clip-path: polygon(0 121px, calc(100% - 185px) 121px, 100% 36px, 100% 196px, calc(100% - 185px) 281px, 0 281px);
}

.footer-mesh-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* --- 5. NEW: THE BLACK FILLER LAYER (Z-0) --- */
/* This layer fills the space *under* the mesh strip to connect with the content area */
.footer-black-filler {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  z-index: 0; /* Lowest layer */
  clip-path: polygon(0 281px, calc(100% - 185px) 281px, 100% 196px, 100% 100%, 0 100%);
}

/* --- 6. CONTENT AREA --- */
.footer-content-area {
  /* FIX 2: Ensure background is black here */
  background-color: #000000;
  color: white;
  padding: 3rem 2rem;
  /* Ensure z-index is higher than decoration to be clickable */
  position: relative;
  z-index: 10;
  /* Pull up slightly to ensure perfect seam if sub-pixel rendering causes a hairline gap */
  margin-top: -1px;
  padding-top: calc(3rem + 1px);
}

.footer-content-area h1 {
  font-size: 3.2em;
  line-height: 1.1;
}

/* --- MOBILE ADJUSTMENTS --- */
@media (max-width: 768px) {
  .footer-decoration {
    height: 200px;
  }
}