/* ═══════════════════════════════════════════════════════
   GDATA GROUP — footer.css
   Scope: Footer block + social icons
   ═══════════════════════════════════════════════════════ */

footer {
  background: var(--bg-card);
  padding: 3rem 0 1.5rem;
}

footer .footer-contents {
  display: flex;
  padding: 65px 80px 65px 80px;
  justify-content: center;
  align-items: flex-start;
  gap: 64px;
}

.footer-tagline {
   color: #64748B;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    font-size: 13px;
}

.footer-heading {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; 
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: .5rem;
}

.footer-links a {
    color: #64748B;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.footer-links a:hover {
  color: var(--accent-light);
  padding-left: 5px;
}

.footer-address {
    color: #64748B;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    font-size: 13px;
}

.footer-bottom {
  border-top: 1px solid #282E39;
  margin-top: 20px;
  padding-top: 1.2rem;
  font-size: var(--text-xs);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
}

.footer-bottom span {
  color: #64748B;
font-family: "Space Grotesk";
font-size: 12px;
font-style: normal;
font-weight: 400;
line-height: 16px; 
}

.icon-footer {
  margin-right: 10px !important;
}

.footer-bottom .social-icon-footer {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}


.social-icon:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 14px var(--accent-glow);
  transform: translateY(-2px);
}

form {
    display: flex;
   
    gap: 8px;
}

form .email-input {
  display: flex;
width: 217px;
height: 40px;
padding: 10px 12px;
flex-direction: column;
align-items: flex-start;
flex-shrink: 0;
  border-radius: 8px;
  border: 1px solid #282E39;
  background: rgba(16, 22, 34, 0.36);
}

form .btn-gdata {
    border-radius: 8px;
    background: #0d59f2 ;
    display: flex;
    padding: 8px;

}

form .btn-gdata:hover {
    background: var(--accent-light);
    color: #fff;
}

form .btn-gdata .send-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
}

