/* ==========================================
   PRODUCTION STANDALONE FOOTER STYLES
   ========================================== */

#footer-mount {
  width: 100%;
}

footer,
.site-footer {
  background-color: #070A11 !important;
  color: #94A3B8 !important;
  padding: 60px 20px 30px !important;
  position: relative;
  z-index: 10;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  box-sizing: border-box;
  width: 100%;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

/* Desktop Grid Layout */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand {
  max-width: 360px;
}

.footer-logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: #FFFFFF !important;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #94A3B8 !important;
  margin-bottom: 20px;
}

/* Social Links */
.footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background-color: #0F172A;
  border: 1px solid #1E293B;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94A3B8 !important;
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer-social-icon:hover {
  background-color: #1E293B;
  color: #FFFFFF !important;
}

.footer-social-icon svg {
  width: 16px !important;
  height: 16px !important;
  fill: currentColor;
}

footer svg {
  max-width: 24px;
  max-height: 24px;
}

/* Navigation Columns */
.footer-col-title {
  font-size: 0.85rem;
  font-weight: 800;
  color: #FFFFFF !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  color: #94A3B8 !important;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #FFFFFF !important;
}

/* Bottom Copyright Bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #64748B;
}

.footer-bottom a {
  color: #94A3B8;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #FFFFFF;
}

/* ==========================================
   CONCISE & COMPLETE MOBILE FOOTER (Max 768px)
   ========================================== */
@media screen and (max-width: 768px) {
  footer,
  .site-footer {
    padding: 24px 16px 16px !important;
  }

  .footer-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
    margin-bottom: 16px !important;
  }

  /* Full Width Brand Header on Mobile */
  .footer-brand {
    grid-column: span 2 !important;
    max-width: 100% !important;
  }

  .footer-brand-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin-bottom: 8px !important;
  }

  .footer-logo {
    font-size: 1.05rem !important;
    margin-bottom: 0 !important;
  }

  /* Visible Description Text on Mobile */
  .footer-brand p {
    display: block !important; /* Makes description visible */
    font-size: 0.78rem !important;
    line-height: 1.45 !important;
    color: #94A3B8 !important;
    margin-bottom: 12px !important;
  }

  .footer-socials {
    gap: 6px !important;
  }

  .footer-social-icon {
    width: 28px !important;
    height: 28px !important;
  }

  .footer-social-icon svg {
    width: 14px !important;
    height: 14px !important;
  }

  .footer-col-title {
    font-size: 0.72rem !important;
    margin-bottom: 8px !important;
  }

  .footer-links li {
    margin-bottom: 5px !important;
  }

  .footer-links a {
    font-size: 0.8rem !important;
  }

  /* Contact Us Block on Mobile */
  .footer-grid > div:last-child {
    grid-column: span 2 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 12px !important;
    margin-top: 4px !important;
  }

  .footer-bottom {
    flex-direction: column !important;
    gap: 6px !important;
    text-align: center !important;
    padding-top: 12px !important;
    font-size: 0.72rem !important;
  }
}