/* =============================================================
   TGVC FOOTER — matches current site (tf10 styles)
   ============================================================= */

.site-footer {
  background: var(--navy);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: #c8d6e0;
  padding: 40px 5% 0;
}

.tf10-wrap { max-width: 1400px; margin: 0 auto; }

.tf10-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 0 50px;
}

/* Left column */
.tf10-left {
  flex: 0 0 38%;
  max-width: 38%;
  display: flex;
  flex-direction: column;
}
.tf10-companyname {
  font-family: var(--font-body);
  font-size: 24px;
  color: var(--gold);
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 22px;
  display: block;
}
.tf10-tagline {
  color: rgba(255,255,255,0.85);
  font-size: 14.5px;
  line-height: 1.85;
  font-weight: 400;
  display: block;
  margin: 0;
}
.tf10-tagline strong { font-weight: 700; color: #fff; }
.tf10-spacer { display: block; height: 40px; }
.tf10-contacts { display: flex; flex-direction: column; gap: 10px; }
.tf10-citem {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #c8d6e0;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: color 0.2s;
}
a.tf10-citem:hover { color: var(--gold); }
.tf10-cicon {
  width: 34px; height: 34px; min-width: 34px;
  border: 1.5px solid rgba(253,202,33,0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: transparent;
}
.tf10-cicon svg {
  width: 14px; height: 14px;
  fill: none; stroke: var(--gold);
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

/* Right nav grid */
.tf10-right {
  flex: 0 0 57%;
  max-width: 57%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 0 20px;
}
.tf10-navcol { display: flex; flex-direction: column; }
.tf10-navtitle {
  font-size: 15px;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  display: block;
  line-height: 1.4;
}
.tf10-navgap { display: block; height: 22px; }
.tf10-navlist { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
.tf10-navlist li { list-style: none; display: block; }
.tf10-navlist a {
  color: #c8d6e0;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: color 0.2s;
  display: inline-block;
}
.tf10-navlist a:hover { color: #fff; }

/* Badges */
.tf10-badges {
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}
.tf10-badge {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
}
.tf10-badge svg {
  width: 18px; height: 18px;
  stroke: var(--gold); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}
.tf10-badge strong { color: var(--gold); font-weight: 700; }

/* Bottom bar */
.tf10-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.tf10-copy { font-size: 13px; color: rgba(255,255,255,0.4); }
.tf10-legal { display: flex; gap: 35px; align-items: center; }
.tf10-legal a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}
.tf10-legal a:hover { color: #fff; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) and (min-width: 769px) {
  .site-footer { padding: 30px 4% 0; }
  .tf10-top { flex-direction: column; gap: 35px; }
  .tf10-left { flex: 0 0 100%; max-width: 100%; }
  .tf10-spacer { height: 20px; }
  .tf10-right { flex: 0 0 100%; max-width: 100%; grid-template-columns: 1fr 1fr 1fr; gap: 30px 40px; }
  .tf10-badges { gap: 30px; }
  .tf10-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .tf10-legal { justify-content: center; }
}

@media (max-width: 768px) {
  /* Footer still shows on mobile for our rebuild (current site hides it) */
  .site-footer { padding: 30px 16px 0; }
  .tf10-top { flex-direction: column; gap: 28px; }
  .tf10-left { flex: 0 0 100%; max-width: 100%; }
  .tf10-right { flex: 0 0 100%; max-width: 100%; grid-template-columns: 1fr 1fr; gap: 24px 20px; }
  .tf10-badges { gap: 18px; justify-content: flex-start; }
  .tf10-badge { white-space: normal; }
  .tf10-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .tf10-legal { justify-content: center; }
}
