/* Weazy SaaS Footer - Modern Tech Company Design */
#footer.footer-saas {
  background: #0f172a;
  color: #94a3b8;
  margin-top: 0;
}

#footer.footer-saas .footer-cta {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 48px 0;
}

#footer.footer-saas .footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

#footer.footer-saas .footer-cta h3 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 4px 0;
}

#footer.footer-saas .footer-cta p {
  color: #94a3b8;
  margin: 0;
  font-size: 0.95rem;
}

#footer.footer-saas .footer-cta .btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: #fff !important;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

#footer.footer-saas .footer-cta .btn-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 25px -5px rgba(99, 102, 241, 0.4);
  color: #fff !important;
}

#footer.footer-saas .footer-top {
  border: none;
  padding: 64px 0 48px;
}

#footer.footer-saas .footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
  gap: 48px;
  max-width: 1200px;
}

@media (max-width: 992px) {
  #footer.footer-saas .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 576px) {
  #footer.footer-saas .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
}

#footer.footer-saas .footer-brand {
  padding-right: 24px;
}

#footer.footer-saas .footer-brand .logo {
  margin-bottom: 16px;
  display: inline-block;
}

#footer.footer-saas .footer-brand .logo img {
  height: 36px;
  width: auto;
  max-width: 140px;
}

#footer.footer-saas .footer-brand .tagline {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 280px;
}

#footer.footer-saas .footer-brand .social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

#footer.footer-saas .footer-brand .social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  color: #94a3b8;
  transition: all 0.2s;
}

#footer.footer-saas .footer-brand .social-links a:hover {
  background: rgba(99, 102, 241, 0.2);
  border-color: rgba(99, 102, 241, 0.4);
  color: #fff;
}

#footer.footer-saas .footer-col h6 {
  color: #f1f5f9;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

#footer.footer-saas .footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer.footer-saas .footer-col ul li {
  margin-bottom: 12px;
}

#footer.footer-saas .footer-col ul li:last-child {
  margin-bottom: 0;
}

#footer.footer-saas .footer-col ul li a {
  color: #94a3b8;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.2s;
}

#footer.footer-saas .footer-col ul li a:hover {
  color: #fff;
}

#footer.footer-saas .footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: #94a3b8;
  font-size: 0.95rem;
}

#footer.footer-saas .footer-contact-item:last-child {
  margin-bottom: 0;
}

#footer.footer-saas .footer-contact-item i {
  color: #6366f1;
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

#footer.footer-saas .footer-contact-item a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s;
}

#footer.footer-saas .footer-contact-item a:hover {
  color: #fff;
}

#footer.footer-saas .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px 0;
}

#footer.footer-saas .footer-bottom .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  border: none;
  padding: 0;
}

#footer.footer-saas .footer-bottom .copyright {
  color: #64748b;
  font-size: 0.875rem;
}

#footer.footer-saas .footer-bottom .menu ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer.footer-saas .footer-bottom .menu ul li {
  display: inline;
}

#footer.footer-saas .footer-bottom .menu ul li a {
  color: #64748b;
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s;
}

#footer.footer-saas .footer-bottom .menu ul li a:hover {
  color: #94a3b8;
}

@media (max-width: 768px) {
  #footer.footer-saas .footer-cta-inner {
    flex-direction: column;
    text-align: center;
  }
  
  #footer.footer-saas .footer-brand {
    padding-right: 0;
    text-align: left;
  }
  
  #footer.footer-saas .footer-bottom .inner {
    flex-direction: column;
    text-align: center;
  }
}
