/* ==============================================
   FOOTER.CSS
   TechMishra Theme v3.0
   ============================================== */

.site-footer {
  background: #030712;
  color: var(--white);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* ── Brand Column ── */
.footer-brand {}
.footer-logo {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  display: block;
  text-decoration: none;
}
.footer-logo span { color: var(--accent); }
.footer-logo img  { height: 44px; width: auto; }

.footer-desc {
  font-size: 14px;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 22px;
}

.footer-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-social {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all var(--transition);
  color: #94A3B8;
  text-decoration: none;
}
.footer-social:hover { background: var(--accent); border-color: var(--accent); color: white; }
.footer-social svg   { width: 16px; height: 16px; }

/* ── Nav Columns ── */
.footer-heading {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #64748B;
  margin-bottom: 18px;
}
.footer-links {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links li a {
  font-size: 14px;
  color: #475569;
  transition: color var(--transition);
  text-decoration: none;
}
.footer-links li a:hover { color: var(--white); }

/* ── Contact Column ── */
.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item {}
.footer-contact-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #64748B;
  margin-bottom: 3px;
}
.footer-contact-link {
  font-size: 14px;
  font-weight: 600;
  color: #64748B;
  transition: color var(--transition);
  text-decoration: none;
  display: block;
}
.footer-contact-link:hover { color: var(--white); }

.footer-available {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #6EE7B7;
  font-weight: 500;
}
.footer-available-dot {
  width: 8px; height: 8px;
  background: #10B981;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

/* ── Bottom Bar ── */
.footer-bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: #374151;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { color: #374151; line-height: 1.5; }
.footer-bottom a { color: var(--accent); text-decoration: none; }
.footer-bottom a:hover { color: #60A5FA; }

.footer-bottom-links {
  display: flex;
  gap: 20px;
  align-items: center;
}
.footer-bottom-links a {
  font-size: 12px;
  color: #374151;
  text-decoration: none;
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: var(--white); }
