/* ========================================
   Footer Styles - Based on demo.fcynet.com
   ======================================== */

/* Footer container */
.footer-style {
  background-color: #0e1421;
  color: #fff;
  overflow: hidden;
}

/* Top feature bar */
.footer-style .footer-features {
  background-color: #0e1421;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 30px 0;
}

.footer-style .footer-features-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.footer-style .footer-feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 220px;
}

.footer-style .footer-feature-item img {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.footer-style .footer-feature-text h4 {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  margin: 0 0 4px 0;
  line-height: 1.4;
}

.footer-style .footer-feature-text p {
  font-size: 13px;
  color: #8a9099;
  margin: 0;
  line-height: 1.4;
}

/* Middle section */
.footer-style .footer-main {
  padding: 40px 0 30px;
}

.footer-style .footer-main-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

/* Link columns */
.footer-style .footer-links {
  display: flex;
  gap: 60px;
}

.footer-style .footer-links dl {
  margin: 0;
}

.footer-style .footer-links dt {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 16px;
}

.footer-style .footer-links dd {
  line-height: 32px;
  margin: 0;
}

.footer-style .footer-links dd a {
  color: #8a9099;
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-style .footer-links dd a:hover {
  color: #fff;
}

/* QR codes area */
.footer-style .footer-qr {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.footer-style .footer-qr-item {
  text-align: center;
}

.footer-style .footer-qr-item img {
  width: 100px;
  height: 100px;
  border-radius: 4px;
  background: #fff;
  padding: 4px;
  box-sizing: border-box;
}

.footer-style .footer-qr-item p {
  font-size: 12px;
  color: #8a9099;
  margin: 8px 0 0 0;
  text-align: center;
}

/* Contact info below QR */
.footer-style .footer-contact-info {
  margin-top: 16px;
  text-align: left;
}

.footer-style .footer-contact-info p {
  font-size: 13px;
  color: #8a9099;
  margin: 6px 0;
  line-height: 1.6;
}

.footer-style .footer-contact-info p strong {
  color: #fff;
  font-weight: 400;
}

/* Certification badges */
.footer-style .footer-cert {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 16px 0;
}

.footer-style .footer-cert-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-style .footer-cert-inner img {
  height: 40px;
  width: auto;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.footer-style .footer-cert-inner img:hover {
  opacity: 1;
}

/* Copyright bar */
.footer-style .footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 14px 0;
}

.footer-style .footer-copyright-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-style .footer-copyright-text {
  font-size: 13px;
  color: #8a9099;
}

.footer-style .footer-copyright-text a {
  color: #8a9099;
  text-decoration: none;
}

.footer-style .footer-copyright-text a:hover {
  color: #fff;
}

.footer-style .footer-bottom-links {
  display: flex;
  gap: 16px;
}

.footer-style .footer-bottom-links a {
  font-size: 13px;
  color: #8a9099;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-style .footer-bottom-links a:hover {
  color: #fff;
}

/* Mobile footer */
.footer-style-mobile {
  background-color: #0e1421;
  color: #fff;
  padding: 20px 16px;
  text-align: center;
}

.footer-style-mobile .mobile-footer-contact {
  margin-bottom: 16px;
}

.footer-style-mobile .mobile-footer-contact p {
  font-size: 13px;
  color: #8a9099;
  margin: 6px 0;
  line-height: 1.6;
}

.footer-style-mobile .mobile-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  margin-bottom: 16px;
}

.footer-style-mobile .mobile-footer-links a {
  font-size: 12px;
  color: #8a9099;
  text-decoration: none;
}

.footer-style-mobile .mobile-footer-links a:hover {
  color: #fff;
}

.footer-style-mobile .mobile-footer-copyright {
  font-size: 12px;
  color: #8a9099;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 12px;
}

.footer-style-mobile .mobile-footer-copyright a {
  color: #8a9099;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-style .footer-features-inner {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  .footer-style .footer-feature-item {
    width: 45%;
    justify-content: center;
  }

  .footer-style .footer-main-inner {
    flex-direction: column;
    gap: 30px;
  }

  .footer-style .footer-links {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }

  .footer-style .footer-qr {
    justify-content: center;
  }

  .footer-style .footer-copyright-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .footer-style .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}
