/* === lp3 FOOTER STYLES === */

/* CTA Strip */
.lp3-footer-cta-strip {
  background: linear-gradient(135deg, #6C3CE1 0%, #5228c4 100%);
  padding: 40px 0;
}
.lp3-footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.lp3-footer-cta-text h3 {
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 6px;
}
.lp3-footer-cta-text p {
  color: rgba(255,255,255,0.8);
  margin: 0;
  font-size: 15px;
}
.lp3-footer-cta-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.lp3-fcta-btn-main {
  background: #F5A623;
  color: #1a0a3d !important;
  font-weight: 700;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(245,166,35,0.4);
  white-space: nowrap;
}
.lp3-fcta-btn-main:hover {
  background: #e8920f;
  color: #1a0a3d !important;
  transform: translateY(-2px);
}
.lp3-fcta-btn-outline {
  background: transparent;
  color: #fff !important;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 26px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.6);
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.lp3-fcta-btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
  color: #fff !important;
}

/* Main Footer */
.lp3-footer-main {
  background: #12052e;
  padding: 60px 0 40px;
}

/* Brand */
.lp3-footer-brand img {
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}
.lp3-footer-desc {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.lp3-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lp3-footer-contact a {
  color: rgba(255,255,255,0.75) !important;
  font-size: 14px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.lp3-footer-contact a i {
  color: #F5A623;
  font-size: 13px;
}
.lp3-footer-contact a:hover {
  color: #F5A623 !important;
}

/* Links columns */
.lp3-footer-links h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}
.lp3-footer-links h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 36px; height: 3px;
  background: #F5A623;
  border-radius: 2px;
}
.lp3-footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lp3-footer-links ul li a {
  color: rgba(255,255,255,0.6) !important;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
  display: block;
}
.lp3-footer-links ul li a:hover {
  color: #F5A623 !important;
  padding-left: 6px;
}

/* Awards */
.lp3-footer-awards h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}
.lp3-footer-awards h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 36px; height: 3px;
  background: #F5A623;
  border-radius: 2px;
}
.lp3-awards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
  align-items: center;
}
.lp3-awards-grid img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  transition: opacity 0.2s;
  background: rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 6px;
}
.lp3-awards-grid img:hover {
  opacity: 1;
}
.lp3-dmca-badges {
  display: flex;
  gap: 12px;
  align-items: center;
}
.lp3-dmca-badges img {
  height: 36px;
  width: auto;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.lp3-dmca-badges img:hover {
  opacity: 1;
}

/* Bottom Bar */
.lp3-footer-bottom {
  background: #0a021e;
  padding: 18px 0;
  border-top: 1px solid rgba(108,60,225,0.25);
}
.lp3-footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.lp3-footer-bottom p {
  color: rgba(255,255,255,0.45);
  font-size: 13px;
  margin: 0;
}
.lp3-footer-bottom ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
}
.lp3-footer-bottom ul li a {
  color: rgba(255,255,255,0.45) !important;
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s;
}
.lp3-footer-bottom ul li a:hover {
  color: #F5A623 !important;
}

/* Responsive */
@media (max-width: 767px) {
  .lp3-footer-cta-inner {
    flex-direction: column;
    text-align: center;
  }
  .lp3-footer-cta-btns {
    justify-content: center;
  }
  .lp3-footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
  .lp3-awards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
