/* Modern Full Footer */
.full-footer {
  background: #000 !important;
  color: #f3f4f6;
  padding: 0;
  margin-top: 64px;
  font-size: 1rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  border-bottom: 1px solid #233a5c;
  padding-bottom: 32px;
}
.footer-brand {
  min-width: 220px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-logo img {
  width: 120px;
  height: auto;
  margin-bottom: 12px;
}
.footer-tagline {
  font-size: 1.08rem;
  color: #c7d2fe;
  margin-bottom: 18px;
  font-weight: 500;
}
.footer-sections {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-section {
  min-width: 140px;
}
.footer-section h4 {
  color: #a5b4fc;
  font-size: 1.08rem;
  margin-bottom: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-section ul li {
  margin-bottom: 8px;
}
.footer-section ul li a {
  color: #f3f4f6;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}
.footer-section ul li a:hover {
  color: #38bdf8;
}
.footer-contact li {
  color: #c7d2fe;
  font-size: 1rem;
  margin-bottom: 6px;
}
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 6px 0;
  gap: 10px;
}
.footer-socials {
  display: flex;
  gap: 8px !important;
  align-items: center;
}
.footer-socials a .social-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
  opacity: 0.95;
  transition: opacity 0.18s ease, transform 0.18s ease, filter 0.18s ease;
  position: relative;
  z-index: 1;
}
.footer-socials a:hover .social-icon {
  opacity: 1;
  filter: none;
  transform: translateY(-2px) scale(1.05);
}

/* White circular backdrop for TikTok icon */
.footer-socials a.social-tiktok {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.footer-socials a.social-tiktok::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 50%;
  z-index: 0;
}

/* Shared white circular backdrop for other social icons (Instagram, Facebook) */
.footer-socials a.social-backdrop {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.footer-socials a.social-backdrop::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 50%;
  z-index: 0;
}
.social-icon {
  width: 36px;
  height: 36px;
  display: inline-block;
  vertical-align: middle;
}
.footer-socials a svg {
  width: 36px;
  height: 36px;
  display: block;
  fill: currentColor;
  color: #f3f4f6;
  opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
}
.footer-socials a:hover svg {
  opacity: 1;
  color: #38bdf8;
  transform: translateY(-2px) scale(1.05);
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  border-radius: 6px;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

/* Hide any HR inside footer to avoid small stray marks */
.footer-inner hr,
.footer-bottom hr {
  display: none;
}
.footer-copyright {
  color: #c7d2fe;
  font-size: 0.98rem;
  text-align: center;
}
@media (max-width: 900px) {
  .footer-top {
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
    text-align: left;
  }
  .footer-sections {
    gap: 24px;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
  }
  .footer-brand {
    align-items: flex-start;
    text-align: left;
  }
}
@media (max-width: 600px) {
  .footer-inner {
    padding: 32px 8px 0 8px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    padding: 18px 0 10px 0;
    align-items: flex-start;
    text-align: left;
  }
  .footer-top {
    align-items: flex-start;
    text-align: left;
  }
  .footer-sections {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    text-align: left;
  }
  .footer-brand {
    align-items: flex-start;
    text-align: left;
  }
}
