.footerx-container {
    position: relative;
    background: #020a18;
    color: #e5e5e5;
    width: 100%;
    overflow: hidden;
    padding: 60px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    align-content: center;
    flex-wrap: nowrap;
}

.footerx-bg {
  position: absolute;
  inset: 0;
  background: url('../media/footer-bg.avif') center/cover no-repeat;
  z-index: 0;
  opacity: 0.2;
}

.footerx-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2,10,24,0) 0%, rgba(2,10,24,0.95) 90%);
  z-index: 1;
}

/* Top Section */
.footerx-top {
  position: relative;
  z-index: 2;
  text-align: center;
}
.footerx-logo {
  max-width: 150px;
  margin-bottom: 15px;
}
.footerx-headline {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}
.footerx-subline {
  font-size: 1rem;
  color: #bbb;
  margin: 0 auto 20px auto;
}
.footerx-cta {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}
.footerx-btn {
  background: linear-gradient(90deg, #f0c13e, #ffae00);
  color: #000;
  padding: 10px 25px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}
.footerx-btn.secondary {
  background: transparent;
  border: 1px solid #f0c13e;
  color: #f0c13e;
}
.footerx-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 12px rgba(240, 193, 62, 0.4);
}

/* Grid Section */
.footerx-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    z-index: 2;
    padding-bottom: 20px;
    padding: 20px 60px;
}
.footerx-col {
  flex: 150px;
  min-width: 180px;
}
.footerx-col h4 {
  color: #f0c13e;
  margin-bottom: 10px;
  font-size: 1.1rem;
}
.footerx-col p,
.footerx-col a,
.footerx-col li {
  font-size: 0.9rem;
  line-height: 1.5;
}
.footerx-col ul {
  padding: 0px;
}
.footerx-col a {
  color: #bbb;
  text-decoration: none;
  transition: 0.3s;
}
.footerx-col a:hover {
  color: #fff;
  text-shadow: 0 0 6px #f0c13e;
}
.footerx-contact i {
  color: #f0c13e;
  margin-right: 6px;
}

/* Bottom Section */
.footerx-bottom {
  z-index: 2;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 15px;
  padding-left: 50px;
  padding-right: 50px;
}
.footerx-socials {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 15px;
}
.footerx-socials a {
  color: #f0c13e;
  font-size: 1.2rem;
  transition: 0.3s;
}
.footerx-socials a:hover {
  color: #fff;
  text-shadow: 0 0 8px #f0c13e;
}
