/* ==========================================================
   VEDAAY SKILLS — Footer
   Ported from main_vedaay_site.html (<footer>)
   ========================================================== */

.site-footer {
  background: var(--navy);
  padding: 70px 0 30px;
  color: rgba(255, 255, 255, 0.6);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 36px;
  margin-bottom: 50px;
}

.footer-logo img {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 14px;
}
.footer-logo .brand-text {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 14px;
  display: block;
}
.footer-about {
  font-size: 13px;
  max-width: 250px;
  margin-bottom: 18px;
}

.footer-col h5 {
  color: var(--white);
  font-size: 12.5px;
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-col a {
  display: block;
  font-size: 13.5px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.55);
}
.footer-col a:hover {
  color: var(--orange);
}

/* ===== NEWSLETTER ===== */
.newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
.newsletter-form input {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 11px 13px;
  color: var(--white);
  font-size: 13.5px;
  font-family: "Inter";
}
.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.newsletter-form button {
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 700;
  font-size: 13.5px;
  cursor: pointer;
}
.newsletter-form button:hover {
  background: #e64e00;
}
.newsletter-msg {
  font-size: 12px;
  margin-top: 8px;
  min-height: 16px;
  color: var(--success);
}
.newsletter-msg.error {
  color: #f87171;
}

/* ===== BOTTOM BAR ===== */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a:hover {
  color: var(--orange);
}
