/* ============================================================
   LUNA CUSTOM HOMES — Footer
   ============================================================ */

footer {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.footer-inner {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 20px 0;
  display: flex;
  flex-wrap: wrap;
}

/* Left column: logo + contacts + social */
.footer-left {
  display: flex;
  flex-direction: column;
  width: 40%;
  padding-bottom: 80px;
}
.footer-logo-area {
  margin-bottom: 50px;
}
.footer-logo-area img {
  width: 137px; height: 90px;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
}
.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.fc-label {
  display: block;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}
.fc-value {
  display: block;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 15px;
  line-height: 160%;
  color: var(--white);
  transition: opacity .25s;
}
a.fc-value:hover { opacity: .7; }

/* Social icons */
.footer-social-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}
.social-icon {
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: opacity .3s var(--ease);
}
.social-icon:hover { opacity: .55; }
.social-icon svg { fill: currentColor; }

/* Right: map */
.footer-map-area {
  width: 60%;
  min-height: 400px;
  position: relative;
  overflow: hidden;
}
.footer-map-area iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 400px;
}

/* Bottom bar */
.footer-bar {
  width: 100%;
  height: 51px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,.06);
  margin-top: auto;
}
.footer-copy,
.footer-dev {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14px;
  line-height: 160%;
  color: rgba(255,255,255,.6);
}
.footer-dev { text-align: right; }
.footer-dev a {
  color: rgba(255,255,255,.6);
  transition: color .25s;
}
.footer-dev a:hover { color: var(--white); }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .footer-left { width: 100%; padding-bottom: 2rem; }
  .footer-logo-area { margin-bottom: 30px; }
  .footer-contacts { gap: 20px; }
  .footer-social-row { margin-top: 30px; }
  .footer-map-area { width: 100%; min-height: 200px; }
  .footer-map-area iframe { min-height: 200px; }
  .footer-bar {
    padding: 1.5rem 0;
    flex-direction: column;
    align-items: flex-start;
    gap: .5rem;
    height: auto;
  }
  .footer-dev { text-align: left; }
}
