/* Deep Navy & Amber Glow Footer */
.footer-custom {
  /* Radial amber glow reflecting the primary theme color, blending into deep corporate black */
  background: radial-gradient(circle at 50% 0%, rgba(216, 154, 47, 0.08) 0%, rgba(8, 10, 16, 0) 70%), #080a10;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 3.5rem 0 1.5rem 0;
  position: relative;
  overflow: hidden;
}

/* Floating B2B CTA Ribbon */
.footer-cta-ribbon {
  background: linear-gradient(135deg, rgba(216, 154, 47, 0.12) 0%, rgba(16, 185, 129, 0.06) 100%);
  border: 1px solid rgba(216, 154, 47, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 5;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-cta-ribbon:hover {
  border-color: rgba(216, 154, 47, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(216, 154, 47, 0.12);
}

/* Glassmorphic Office Address Cards */
.office-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 1.5rem;
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

.office-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(216, 154, 47, 0.25);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.office-card h5 {
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}

.footer-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-link-list li {
  line-height: 1.6;
}

/* Brand Colored Social Media Icons */
.footer-social-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px; /* Modern square-round shape */
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-social-icon:hover {
  color: #ffffff;
  transform: translateY(-4px) scale(1.05);
}

.footer-social-icon.facebook:hover {
  background: #1877f2;
  border-color: #1877f2;
  box-shadow: 0 10px 25px rgba(24, 119, 242, 0.35);
}

.footer-social-icon.linkedin:hover {
  background: #0077b5;
  border-color: #0077b5;
  box-shadow: 0 10px 25px rgba(0, 119, 181, 0.35);
}

.footer-social-icon.youtube:hover {
  background: #ff0000;
  border-color: #ff0000;
  box-shadow: 0 10px 25px rgba(255, 0, 0, 0.35);
}

/* High Contrast Readability Overrides */
.footer-custom .text-muted,
.footer-custom p {
  color: rgba(255, 255, 255, 0.82) !important;
}

.footer-custom .office-card ul li span {
  color: rgba(255, 255, 255, 0.85) !important;
}

/* Copyright & Sub-links */
.copyright-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  color: rgba(255, 255, 255, 0.5) !important;
  font-size: 0.85rem;
}

.copyright-bar a.hover-link {
  color: rgba(255, 255, 255, 0.5) !important;
  transition: color 0.3s ease;
}

.copyright-bar a.hover-link:hover {
  color: var(--secondary) !important;
}

/* Mobile responsive adjustments */
@media (max-width: 991px) {
  .footer-cta-ribbon {
    text-align: center;
  }
  .office-card {
    padding: 1.2rem;
  }
}

/* Social Links Badge */
.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social-link:hover {
  background: var(--secondary);
  color: #ffffff;
  border-color: var(--secondary);
  transform: translateY(-3px);
}

