/* Footer Styles - Full Width */
.site-footer {
  width: 100%;
  margin-top: 80px;
  padding: 60px 0 30px;
  background: #2c3e50;
  color: #ecf0f1;
  border-top: 3px solid #2271b1;
}

.footer-content {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-widgets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-widget {
  min-width: 0;
}

.footer-widget-2 {
  text-align: right;
}

.footer-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.footer-description {
  font-size: 14px;
  line-height: 1.6;
  color: #bdc3c7;
  margin: 0;
}

.footer-widget-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #fff;
}

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

.footer-menu li {
  margin-bottom: 10px;
}

.footer-menu a {
  color: #bdc3c7;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-menu a:hover {
  color: #2271b1;
}

.footer-contact {
  font-size: 14px;
  line-height: 1.6;
  color: #bdc3c7;
}

.footer-contact p {
  margin: 0 0 10px 0;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid #34495e;
  text-align: center;
}

.footer-copyright {
  font-size: 13px;
  color: #95a5a6;
}

.footer-copyright p {
  margin: 0;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .site-footer {
    padding: 40px 0 20px;
    margin-top: 40px;
  }

  .footer-widgets {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
  }
  .footer-widget-2 {
    text-align: center;
  }

  .footer-content {
    padding: 0 15px;
  }
}
