.footer {
  background: #1e2a36;
  color: #ebf4fa;
  padding-top: 60px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2c7cb6, #5aa4d2, #2c7cb6);
}

.footer h4 {
  color: #fff;
  font-size: 15px;
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: #5aa4d2;
  transition: width 0.3s ease;
}

.footer h4:hover::after {
  width: 100%;
}

.footer-logo-wrapper {
  text-align: left;
  margin-bottom: 15px;
}

.footer-logo {
  display: inline-block;
}

.footer-logo img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}

.footer-logo img:hover {
  filter: brightness(0) invert(0.8);
  transform: translateY(-2px);
}

.footer-text {
  font-size: 12px;
  line-height: 1.6;
  text-align: left;
  margin: 15px 0 20px 0;
  color: #c8d6e5;
  font-weight: 300;
  letter-spacing: 0.3px;
}

.footer-second-logo {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-second-logo a {
  display: inline-block;
  transition: all 0.3s ease;
}

.footer-second-logo a:hover {
  opacity: 0.8;
  transform: translateX(3px);
}

.footer-second-logo img {
  height: 22px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}

.footer-second-logo img:hover {
  filter: brightness(0) invert(0.8);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #c8d6e5;
  text-decoration: none;
  font-size: 12px;
  transition: all 0.3s ease;
  display: inline-block;
  font-weight: 300;
  letter-spacing: 0.3px;
}

.footer-links a:hover {
  color: #5aa4d2;
  transform: translateX(5px);
}

.footer address {
  font-size: 12px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #c8d6e5;
  font-weight: 300;
}

.footer address i {
  margin-right: 10px;
  width: 20px;
  color: #5aa4d2;
}

.footer p i {
  margin-right: 10px;
  width: 20px;
  color: #5aa4d2;
}

.footer p {
  font-size: 12px;
  margin-bottom: 10px;
  color: #c8d6e5;
  font-weight: 300;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 25px 0;
  margin-top: 50px;
}

.footer-bottom p {
  margin: 0;
  font-size: 11px;
  color: #8ba0ae;
  letter-spacing: 0.5px;
}

.footer-bottom a {
  color: #5aa4d2;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-bottom a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer iframe {
  border-radius: 8px;
  filter: grayscale(0.3);
  transition: all 0.3s ease;
}

.footer iframe:hover {
  filter: grayscale(0);
}

@media (max-width: 992px) {
  .footer {
    padding-top: 50px;
  }
  .footer h4 {
    margin-top: 25px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding-top: 40px;
  }
  .footer-logo img {
    height: 45px;
  }
  .footer-second-logo img {
    height: 18px;
  }
  .footer h4 {
    font-size: 13px;
    margin-top: 30px;
  }
  .footer-logo-wrapper {
    text-align: center;
  }
  .footer-text {
    text-align: center;
  }
  .footer-second-logo {
    text-align: center;
  }
  .footer h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .footer h4 {
    display: block;
    text-align: center;
  }
  .footer-links {
    text-align: center;
  }
  .footer address {
    text-align: center;
  }
  .footer p {
    text-align: center;
  }
  .footer iframe {
    margin-top: 20px;
  }
}