/* Footer Styles */
.site-footer {
  background-color: #0b1c24; /* Very dark rich blue/teal */
  color: #a0aec0; /* Soft gray for text */
  padding-top: 80px;
  font-size: 0.95rem;
}

.site-footer a {
  color: #e2e8f0;
  text-decoration: none;
  transition: all 0.3s ease;
}

.site-footer a:hover {
  color: var(--bv-secondary);
}

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

.footer-widget-title {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.footer-widget-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--bv-primary), var(--bv-secondary));
  border-radius: 2px;
}

/* About Widget */
.footer-about .footer-logo {
  max-width: 220px;
  margin-bottom: 25px;
  filter: brightness(0) invert(1);
}

.footer-about p {
  line-height: 1.8;
  margin-bottom: 25px;
}

/* Contact Widget (Inside About) */
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.footer-contact i {
  color: var(--bv-secondary);
  font-size: 1.2rem;
  margin-top: 3px;
}

.footer-contact p {
  margin: 0;
  line-height: 1.6;
}

/* Links Widget */
.footer-links ul, .footer-services ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li, .footer-services li {
  margin-bottom: 12px;
}

.footer-links a, .footer-services a {
  display: inline-flex;
  align-items: center;
}

.footer-links a::before, .footer-services a::before {
  content: '\f105'; /* FontAwesome angle-right */
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  margin-right: 10px;
  color: var(--bv-primary);
  font-size: 0.8rem;
  transition: all 0.3s ease;
}

.footer-links a:hover::before, .footer-services a:hover::before {
  color: var(--bv-secondary);
  transform: translateX(3px);
}

/* Social Links */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.footer-social a,
.footer-social span,
.footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 1.1rem;
  cursor: default;
  transition: all 0.3s ease;
}

.footer-social a:hover,
.footer-social span:hover,
.footer-social-icon:hover {
  background-color: var(--bv-primary);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(49, 143, 132, 0.3);
}

/* Newsletter */
.footer-newsletter p {
  line-height: 1.6;
  margin-bottom: 20px;
}

.newsletter-form {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.newsletter-form input {
  width: 100%;
  padding: 14px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  color: #fff;
  outline: none;
  transition: all 0.3s ease;
}

.newsletter-form input:focus {
  border-color: var(--bv-primary);
  background: rgba(0, 0, 0, 0.4);
}

.newsletter-form button {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 25px 0;
  text-align: center;
  font-size: 0.9rem;
}
