/* ═══════════════════════════════════════════
   Elite Living 360 — Footer Styles
   ═══════════════════════════════════════════ */

.site-footer {
  margin-top: 32px;
  background: linear-gradient(180deg, rgba(12, 16, 32, .95), rgba(8, 10, 22, .98));
  border-top: 1px solid rgba(201, 169, 110, .12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 -4px 32px rgba(0, 0, 0, .25);
  padding: 48px 0 0;
}

.footer-inner {
  width: min(1220px, 92vw);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 40px;
}

.footer-brand .f-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-brand .f-logo-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(201, 169, 110, .15), rgba(201, 169, 110, .06));
  border: 1px solid rgba(201, 169, 110, .30);
  color: #C9A96E;
  font-weight: 900;
  font-size: 14px;
}

.footer-brand .f-logo b {
  font-size: 16px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.footer-brand .f-logo small {
  display: block;
  color: rgba(201, 169, 110, .60);
  font-size: 11px;
  margin-top: 2px;
  letter-spacing: .4px;
}

.footer-brand .f-desc {
  color: var(--muted2);
  font-size: 13px;
  line-height: 1.75;
  margin-bottom: 18px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .10);
  color: rgba(255, 255, 255, .65);
  font-size: 16px;
  transition: all .25s;
  text-decoration: none;
}

.footer-social a:hover {
  background: rgba(201, 169, 110, .12);
  border-color: rgba(201, 169, 110, .30);
  color: #C9A96E;
}

.footer-links h4 {
  font-size: 13px;
  font-weight: 800;
  color: #C9A96E;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, .60);
  font-size: 13px;
  text-decoration: none;
  transition: color .2s;
}

.footer-links a:hover {
  color: #C9A96E;
}

.footer-contact h4 {
  font-size: 13px;
  font-weight: 800;
  color: #C9A96E;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.footer-contact .fc-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-contact .fc-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .10);
  color: rgba(201, 169, 110, .70);
  font-size: 15px;
  flex-shrink: 0;
}

.footer-contact .fc-label {
  font-size: 11px;
  color: var(--muted2);
}

.footer-contact .fc-val {
  font-size: 13px;
  color: rgba(255, 255, 255, .80);
  font-weight: 600;
}

.footer-bottom {
  margin-top: 28px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted2);
  font-size: 12px;
}

/* ── Responsive ── */
@media(max-width:880px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
