/* ============================================================
   7 CENTRAL — FOOTER STYLESHEET
   ============================================================ */

/* ── Footer ── */
#footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.8);
  position: relative;
  overflow: hidden;
}
#footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}

/* ── Newsletter Band ── */
.footer-newsletter {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  padding: 60px 0;
}
.footer-newsletter-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-newsletter h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 6px;
}
.footer-newsletter p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
}
.newsletter-form {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  border-radius: 980px;
  border: 1.5px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);
  padding: 5px 5px 5px 18px;
  gap: 0;
  min-width: 340px;
  box-shadow: 0 4px 24px rgba(26,26,26,0.15);
}
.newsletter-form input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--white);
  padding: 7px 0;
  min-width: 0;
}
.newsletter-form input::placeholder {
  color: rgba(255,255,255,0.65);
}
.newsletter-form button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px 9px 16px;
  background: var(--charcoal);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 980px;
  cursor: pointer;
  transition: background .22s, color .22s, transform .18s;
  white-space: nowrap;
  flex-shrink: 0;
}
.newsletter-form button .nl-arrow {
  width: 22px;
  height: 22px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .22s, transform .22s;
}
.newsletter-form button:hover { background: var(--gold); color: var(--white); }
.newsletter-form button:hover .nl-arrow { background: rgba(255,255,255,0.25); transform: rotate(45deg); }
.newsletter-form button:active { transform: scale(0.97); }

/* ── Main Footer ── */
.footer-main {
  padding: 80px 0 56px;
}
.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 48px;
}

/* Footer Brand Column */
.footer-brand .logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.footer-logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
}
.footer-logo-text .main {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
}
.footer-logo-text .sub {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 28px;
}

/* ── "A project of" badge — 7Central, Faisal Movers & DHA Multan, one row ── */
.project-of-badge {
  margin-bottom: 28px;
}
.project-of-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 10px;
}
.project-of-logos {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 12px 18px;
  width: fit-content;
}
.project-of-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Wordmark logos (7 Central, Faisal Movers) share the same rendered height for visual parity */
.project-of-img {
  height: 30px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: opacity 0.25s;
}

/* 7 Central SVG — invert to white on dark bg */
.project-of-7c {
  filter: brightness(0) invert(1);
  opacity: 0.85;
  max-width: 100px;
}
.project-of-logos:hover .project-of-7c { opacity: 1; }

/* Faisal Movers — invert to white */
.project-of-fm {
  filter: brightness(0) invert(1);
  opacity: 0.85;
  max-width: 100px;
}
.project-of-logos:hover .project-of-fm { opacity: 1; }

/* Divider between logos */
.project-of-divider {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.18);
  margin: 0 16px;
  flex-shrink: 0;
}

/* DHA Multan seal — a circular crest reads visually smaller than the wordmarks
   at an equal height, so it's sized a touch taller for balanced parity.
   Keep its native colours (not inverted). */
.project-of-dha-img {
  height: 40px;
  max-width: 40px;
  filter: none;
  opacity: 1;
}


.footer-socials {
  display: flex;
  gap: 10px;
}
.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  transition: all 0.25s;
  text-decoration: none;
}
.social-icon:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

/* Footer Columns */
.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a::before {
  content: '';
  width: 14px;
  height: 1px;
  background: var(--gold);
  opacity: 0;
  transition: all 0.2s;
  flex-shrink: 0;
}
.footer-links a:hover { color: rgba(255,255,255,0.9); padding-left: 4px; }
.footer-links a:hover::before { opacity: 1; }

/* Contact Info */
.footer-contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  align-items: flex-start;
}
.footer-contact-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(184,150,62,0.12);
  border: 1px solid rgba(184,150,62,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--gold-light);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-detail .label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  display: block;
  margin-bottom: 3px;
}
.footer-contact-detail .value {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
}

/* ── Footer Bottom ── */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 24px 0;
}
.footer-bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-copyright {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}
.footer-copyright a { color: var(--gold-light); transition: color 0.2s; }
.footer-copyright a:hover { color: var(--gold); }
.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-legal a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--gold-light); }

/* ── Responsive ── */
