/* ====================================================
   FutureSEOTools — Footer Styles
   ==================================================== */
.site-footer {
  background: #0a1628;
  color: rgba(255,255,255,0.8);
  margin-top: auto;
}
.footer-top {
  background: #0f1f3a;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 40px 0;
}
.footer-top-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 768px) { .footer-top-inner { grid-template-columns: 1fr; gap: 32px; } }
.footer-logo .site-logo { font-size: 1.2rem; }
.footer-tagline {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 12px 0 16px;
  max-width: 380px;
}
.footer-contact-info p { font-size: 0.82rem; color: rgba(255,255,255,0.6); margin-bottom: 4px; }
.footer-contact-info a { color: rgba(255,255,255,0.75); text-decoration: none; }
.footer-contact-info a:hover { color: #fff; text-decoration: underline; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  transition: all 0.2s;
}
.social-link:hover { background: var(--primary, #1e40af); color: #fff; }
.footer-newsletter h4 { color: #fff; font-size: 1rem; margin-bottom: 6px; }
.footer-newsletter p { font-size: 0.82rem; color: rgba(255,255,255,0.6); margin-bottom: 14px; }
.newsletter-form { display: flex; gap: 8px; flex-wrap: wrap; }
.newsletter-form input {
  flex: 1;
  min-width: 200px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm, 6px);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 0.875rem;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form input:focus { outline: none; border-color: var(--primary); }

.footer-main { padding: 48px 0; }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
}
@media (max-width: 1200px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-col-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.9);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 6px; }
.footer-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-links a:hover { color: rgba(255,255,255,0.95); }
.footer-links a[href^="→"] { color: rgba(255,255,255,0.4); font-style: italic; }
.footer-links a[href^="→"]:hover { color: var(--accent, #06b6d4); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  background: #080f1e;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.45); }
.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-bottom strong { color: rgba(255,255,255,0.7); }
.footer-bottom-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-bottom-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.8); }
