/* ...existing code... */

.site-footer {
    background-color: #ffffff;
    color: #000000;
    font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    padding: 2.5rem 0;
    border-top: none;
  }
  
  /* Brand */
  .site-footer .d-flex img,
  .site-footer .d-flex svg {
    filter: brightness(0) invert(1);
  }
  .site-footer .h6 {
    color: #ffffff;
    font-weight: 700;
    margin-left: 0.5rem;
  }
  
  /* Headings / lists */
  .site-footer h6 {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
  }
  .site-footer .list-unstyled {
    padding: 0;
    margin: 0;
    list-style: none;
  }
  .site-footer .list-unstyled li {
    margin: 0.35rem 0;
  }
  .site-footer .list-unstyled a {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    transition: color 0.15s ease, transform 0.12s ease;
  }
  .site-footer .list-unstyled a:hover {
    color: #e6f4ff;
    text-decoration: underline;
    transform: translateX(3px);
  }
  
  /* Contact and small text */
  .site-footer p,
  .site-footer .small,
  .site-footer .text-muted {
    color: rgba(255, 255, 255, 0.88) !important;
  }
  .site-footer a[href^="mailto:"],
  .site-footer a[href^="tel:"] {
    color: #ffffff;
    text-decoration: underline;
  }
  
  /* Social buttons */
  .site-footer .social-icons {
    gap: 0.5rem;
  }
  .site-footer .social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    text-decoration: none;
    transition: background 0.15s ease, transform 0.12s ease;
    border: 1px solid rgba(255,255,255,0.06);
  }
  .site-footer .social-btn i {
    font-size: 14px;
    line-height: 1;
  }
  .site-footer .social-btn:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-3px);
  }
  
  /* Footer bottom row */
  .site-footer .col-12.d-flex {
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .site-footer .col-12.d-flex a {
    color: rgba(255,255,255,0.9);
  }
  
  /* Responsive tweaks */
  @media (max-width: 767.98px) {
    .site-footer .d-flex img { margin-right: 0.5rem; }
    .site-footer .col-12.d-flex { flex-direction: column; gap: 0.4rem; text-align: center; }
  }


  /* contact icons styled like .social-btn but without a solid blue background */

.contact-us .home-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.contact-us .contact-icon.social-btn,
.contact-us .social-btn {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;                      /* no blue background */
  color: #0070f3;                                /* primary icon color */
  border: 1px solid rgba(0,112,243,0.12);       /* subtle outline */
  text-decoration: none;
  transition: transform .12s ease, background .12s ease, color .12s ease;
  font-size: 16px;
}

.contact-us .contact-icon.social-btn { width: 44px; height: 44px; } /* slightly larger for phone/email */

.contact-us .contact-icon.social-btn i,
.contact-us .social-btn i {
  line-height: 1;
}

/* hover: subtle fill to indicate interaction, still not solid blue */
.contact-us .contact-icon.social-btn:hover,
.contact-us .social-btn:hover {
  background: rgba(0,112,243,0.06);
  color: #005bd6;
  transform: translateY(-3px);
}

/* text next to icons */
.contact-us .book-demo-items h5 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: #212529;
}

.contact-us .book-demo-items a { color: inherit; text-decoration: none; }

/* small screens */
@media (max-width: 576px) {
  .contact-us .home-buttons { gap: 0.6rem; }
  .contact-us .contact-icon.social-btn { width: 38px; height: 38px; font-size: 14px; }
  .contact-us .book-demo-items h5 { font-size: 1rem; }
}