/* FOOTER STYLES */
.footer {
    background: #000000;
  background: -webkit-linear-gradient(-1deg, rgba(0, 0, 0, 1) 6%, rgba(0, 0, 0, 0) 37%);
  background: -moz-linear-gradient(-1deg, rgba(0, 0, 0, 1) 6%, rgba(0, 0, 0, 0) 37%);
  background: linear-gradient(-1deg, rgba(0, 0, 0, 1) 6%, rgba(0, 0, 0, 0) 37%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=0);
  color: #FFFFFF;
  padding: 4rem 0 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  position: relative;
  overflow: hidden;
}


.footer-container {

  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  width: 180px;
  margin-bottom: 1.5rem;
  transition: transform 0.3s;
}

.footer-logo:hover {
  transform: scale(1.05);
}

.footer-logo img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-size: 0.95rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-icon {
  color: #FFFFFF;
  font-size: 1.4rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.social-icon:hover {
  background-color: #1a5a8f;
  color: #FFFFFF;
  transform: translateY(-3px);
}

.footer-heading {
  color: #FFFFFF;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: #1a5a8f;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list li {
  margin-bottom: 0.8rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
  position: relative;
  padding-left: 0;
}

.footer-link::before {
  content: '→';
  position: absolute;
  left: -15px;
  opacity: 0;
  transition: all 0.3s;
  color: #1a5a8f;
}

.footer-link:hover {
  color: #FFFFFF;
  padding-left: 15px;
}

.footer-link:hover::before {
  opacity: 1;
  left: 0;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item i {
  color: #1a5a8f;
  width: 20px;
  text-align: center;
}

.newsletter-text {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  position: relative;
}

.newsletter-input {
  flex: 1;
  padding: 0.8rem 1rem;
  border: none;
  border-radius: 4px 0 0 4px;
  font-size: 0.95rem;
  background-color: rgba(255, 255, 255, 0.9);
}

.newsletter-input:focus {
  outline: none;
  box-shadow: 0 0 0 2px #1a5a8f;
}

.newsletter-button {
  background-color: #1a5a8f;
  color: #FFFFFF;
  border: none;
  padding: 0 1.2rem;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1.1rem;
}

.newsletter-button:hover {
  background-color: #286AAD;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin: 0;
}

.developer-credit {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin: 0;
}

.developer-link {
  color: #1a5a8f;
  text-decoration: none;
  transition: all 0.3s;
  font-weight: 600;
}

.developer-link:hover {
  color: #286AAD;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-brand {
    align-items: center;
    text-align: center;
  }
  
  .footer-heading {
    text-align: center;
  }
  
  .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-links-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  
  .footer-links-list li {
    margin-bottom: 0;
  }
  
  .footer-contact-item {
    justify-content: center;
  }
}