/* GFB Core — footer.css */

.gfbf-footer *, .gfbf-footer *::before, .gfbf-footer *::after {
  box-sizing: border-box; margin: 0; padding: 0;
}

/* ── Shell ────────────────────────────────────────────────── */
.gfbf-footer {
  background: var(--gfbf-bg, #1a1a2e);
  color: var(--gfbf-text, #a0aab4);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ── Main row ─────────────────────────────────────────────── */
.gfbf-inner {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.75rem 1.25rem 2.25rem;
}

/* ── Brand column ─────────────────────────────────────────── */
.gfbf-brand {
  flex: 0 0 220px;
  max-width: 220px;
}

.gfbf-brand-logo {
  display: inline-block;
  margin-bottom: 0.9rem;
  text-decoration: none;
}

.gfbf-brand-logo img { display: block; }

/* Text logo fallback */
.gfbf-text-logo { display: flex; align-items: center; gap: 0.5rem; }
.gfbf-logo-icon {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  background: var(--gfbf-accent, #2ecc71);
  color: #fff; border-radius: 50%; font-size: 0.9rem; flex-shrink: 0;
}
.gfbf-logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.gfbf-logo-l1 { font-size: 0.95rem; font-weight: 700; color: var(--gfbf-heading, #fff); letter-spacing: 0.04em; }
.gfbf-logo-l2 { font-size: 0.62rem; font-weight: 600; color: var(--gfbf-accent, #2ecc71); letter-spacing: 0.08em; text-transform: uppercase; }

.gfbf-tagline {
  color: var(--gfbf-text, #a0aab4);
  font-size: 0.82rem;
  line-height: 1.55;
  margin-bottom: 1.1rem;
}

/* Social icons */
.gfbf-social { display: flex; gap: 0.45rem; flex-wrap: wrap; }
.gfbf-social-link {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.07);
  color: var(--gfbf-text, #a0aab4);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.gfbf-social-link svg { width: 15px; height: 15px; }
.gfbf-social-link:hover { background: var(--gfbf-accent, #2ecc71); color: #fff; }

/* ── Columns wrapper ──────────────────────────────────────── */
.gfbf-cols {
  flex: 1;
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  align-items: flex-start;
}

/* ── Individual column ────────────────────────────────────── */
.gfbf-col {
  flex: 1;
  min-width: 130px;
}

.gfbf-col-heading {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gfbf-heading, #ffffff);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Column link list */
.gfbf-col-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.gfbf-nav-link {
  color: var(--gfbf-text, #a0aab4);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.15s, padding-left 0.15s;
  display: inline-block;
}
.gfbf-nav-link:hover, .gfbf-nav-link.gfbf-active {
  color: var(--gfbf-accent, #2ecc71);
  padding-left: 3px;
}

/* Contact column */
.gfbf-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.gfbf-contact-list .gfbf-contact-icon {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gfbf-accent, #2ecc71);
  width: 15px;
  height: 15px;
}

.gfbf-contact-list .gfbf-address-line {
  color: var(--gfbf-text, #a0aab4);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* ── Bottom bar ───────────────────────────────────────────── */
.gfbf-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
}
.gfbf-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 2rem;
}
.gfbf-disclaimer {
  flex: 1;
  font-size: 0.75rem;
  color: rgba(160,170,180,0.55);
  line-height: 1.5;
}
.gfbf-copy {
  flex-shrink: 0;
  font-size: 0.78rem;
  color: rgba(160,170,180,0.45);
  white-space: nowrap;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .gfbf-inner {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 1.25rem 1.5rem;
  }
  .gfbf-brand { flex: none; max-width: 100%; }
  .gfbf-cols { gap: 1.75rem; }
  .gfbf-col { min-width: calc(50% - 1rem); }
}

@media (max-width: 480px) {
  .gfbf-col { min-width: 100%; }
  .gfbf-bottom-inner { flex-direction: column-reverse; align-items: flex-start; gap: 0.35rem; }
  .gfbf-copy { white-space: normal; }
}
