


/* ===============================
   ADVANCED PREMIUM FOOTER
================================ */

.adv-footer {
 background: linear-gradient(
  135deg,
  var(--bg-light) 0%,
  var(--bg-surface) 45%,
  rgba(25, 68, 121, 0.04) 100%
);
  color: #cbd5e1;
  position: relative;
}

/* TOP */
.footer-top {
  padding: 90px 0 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.3fr;
  gap: 70px;
}

/* BRAND */
.footer-brand img {
  width: 170px;
  margin-bottom: 22px;
  margin-left: 30px;
}

.footer-desc {
  font-size: 16px;
  line-height: 1.8;
  color: #000000;
  margin-left: 30px;
}

/* SOCIAL */
.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  margin-left: 30px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 0, 0, 0.08);
  color: #000000;
  transition: all .4s ease;
}

.footer-social a:hover {
  background: linear-gradient(135deg, #e26c0c, #ff974a);
  transform: translateY(-6px) scale(1.12);
  box-shadow: 0 15px 40px rgba(226,108,12,0.5);
}

/* HEADINGS */
.footer-col h4 {
  font-size: 18px;
  margin-bottom: 24px;
  color: #000000;
  position: relative;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #e26c0c, transparent);
}

/* LINKS WITH BULLETS */
.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list li {
  margin-bottom: 14px;
}

.footer-links-list a {
  color: #000000;
  font-size: 16px;
  position: relative;
  padding-left: 18px;
  transition: all .35s ease;
}

/* PREMIUM BULLET */
.footer-links-list a::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #ff974a;
  opacity: 0.6;
  transition: transform .35s ease, opacity .35s ease;
}

.footer-links-list a:hover {
  color: #ff974a;
  transform: translateX(6px);
}

.footer-links-list a:hover::before {
  transform: scale(1.6);
  opacity: 1;
}

/* CONTACT */
.footer-contact .contact-item {
  display: flex;
  gap: 12px;
  font-size: 16px;
  margin-bottom: 14px;
  color: #000000;
}

.footer-contact i {
  color: #ff974a;
}

/* CTA */
.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  padding: 14px 26px;
  border-radius: 40px;
  background: linear-gradient(135deg, #194479, #e26c0c);
  color: #fff;
  font-size: 14px;
  transition: all .4s ease;
}

.footer-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(226,108,12,0.5);
}

.footer-cta i {
  transition: transform .4s ease;
}

.footer-cta:hover i {
  transform: translateX(6px);
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 26px 0;
}

/* CENTER EVERYTHING */
.footer-bottom-grid {
  display: flex;
  justify-content: center;     /* horizontal center */
  align-items: center;         /* vertical center */
  gap: 24px;
  text-align: center;
  flex-wrap: wrap;
}

/* COPYRIGHT */
.footer-copy {
  font-size: 16px;
  color: #000000;
}

/* LEGAL LINKS */
.footer-legal {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-legal a {
  font-size: 16px;
  color: #000000;
  position: relative;
  transition: color .3s ease;
}

/* PREMIUM HOVER UNDERLINE */
.footer-legal a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, #ff974a, transparent);
  transition: width .35s ease;
}

.footer-legal a:hover {
  color: #ff974a;
}

.footer-legal a:hover::after {
  width: 100%;
}

/* DIVIDER */
.footer-legal span {
  opacity: 0.4;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom-grid {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}
@media (max-width: 640px) {
  .footer-bottom-grid {
    flex-direction: column;
    gap: 10px;
  }
}



/* =========================
   RELATED LINKS – ALIGNED
========================= */

.related-links-section {
  padding: 60px 0;
  background: #f8fafc;
}

.related-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: var(--dark);
}

.related-links-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 40px;
  padding: 0;
  margin: 0;
}

.related-links-list li {
  display: flex;
  align-items: flex-start;
}

.related-links-list .dot {
  width: 18px;              /* fixed width = alignment */
  flex-shrink: 0;
  color: var(--accent);
  font-weight: 600;
  line-height: 1.6;
}

.related-links-list a {
  font-size: 0.95rem;
  color: #0b2d52;
  text-decoration: none;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.related-links-list a:hover {
  color: var(--accent);
}

/* Tablet */
@media (max-width: 1024px) {
  .related-links-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 30px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .related-links-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .related-links-list a {
    font-size: 0.92rem;
  }
}
