
footer {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--primary-color);
  color: #fff;
  margin-top: 2rem;
  font-size: 0.9rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 20px;
}

.footer-logo {
  max-width: 150px;
  margin-bottom: 15px;
}

.header-logo {
  max-width: 150px;
  margin-bottom: 15px;
}

.footer-section h3 {
  margin-bottom: 15px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: inherit;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  font-size: 1.5rem;
  color: inherit;
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #ddd;
}


footer div a {
  word-break: break-word;
}

.footer-social {
  text-align: center;
}

.footer-social h4 {
  margin-bottom: 20px;
  font-size: 1.2em;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-icons a {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}


.site-footer .footer-social {
  margin-top: 1rem;
}
.site-footer .social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}


.site-footer .social-icons a {
  --icon-size: 40px;
  --icon-fg: var(--footer-icon-fg, #111827);     
  --icon-hover: var(--primary, #2563eb);         

  width: var(--icon-size);
  height: var(--icon-size);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px !important;
  background: var(--icon-bg);
  color: var(--icon-fg);
  border: 1px solid var(--icon-border);
  text-decoration: none;
  transition: transform .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease;
  outline: none;
}


.site-footer .social-icons a svg,
.site-footer .social-icons a i {
  width: 20px;
  height: 20px;
  line-height: 1;
  display: block;
}


.site-footer .social-icons a svg {
  fill: currentColor;
}


.site-footer .social-icons a:hover,
.site-footer .social-icons a:focus-visible {
  background: var(--icon-hover);
  color: #fff;
  border-color: transparent;
  transform: translateY(-1px);
}


.site-footer .social-icons a:focus-visible {
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--icon-hover) 35%, transparent);
}


@media (prefers-reduced-motion: reduce) {
  .site-footer .social-icons a {
    transition: none;
  }
}


.site-footer .social-icons a[aria-label*="TikTok" i]       { --icon-hover: #010101; }
.site-footer .social-icons a[aria-label*="Instagram" i]    { --icon-hover: #E1306C; }
.site-footer .social-icons a[aria-label*="X" i],
.site-footer .social-icons a[aria-label*="Twitter" i]      { --icon-hover: #0F1419; }
.site-footer .social-icons a[aria-label*="LinkedIn" i]     { --icon-hover: #0A66C2; }


.dark-theme .site-footer .social-icons a {
  --footer-icon-fg: #e5e7eb;
}
@media (max-width: 480px) {
  .site-footer .social-icons a { --icon-size: 36px; }
  .site-footer .social-icons a svg,
  .site-footer .social-icons a i { width: 18px; height: 18px; }
}


.social-icons a:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.social-icons i:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.social-icons svg {
  width: 20px;
  height: 20px;
  fill: white;
}


.site-footer {
  background: #111;
  color: #ccc;
  font-family: 'Inter', Arial, sans-serif;
  padding: 60px 20px 30px;
  margin-top: 50px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  align-items: start;
}

.footer-logo {
  width: 140px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;    
  margin: 0 auto 15px auto;
}
.header-logo {
  width: 40px;
  margin-bottom: 15px;
}


.footer-description {
  font-size: 14px;
  line-height: 1.6;
  color: #aaa;
}


.footer-links h4,
.footer-social h4 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}


.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #fff;
}


.footer-bottom {
  margin-top: 50px;
  text-align: center;
  font-size: 13px;
  color: #aaa;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  text-decoration: none !important;
}

.footer-disclaimer {
  font-size: 12px;
  color: #777;
  margin-top: 5px;
}


@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    text-align: center;
  }

  .footer-logo {
    margin: 0 auto 10px auto;
  }

  .social-icons {
    justify-content: center;
  }
}

@media (max-width: 500px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .footer-links h4,
  .footer-social h4 {
    font-size: 14px;
  }

  .footer-links ul li a {
    font-size: 13px;
  }
}

@media (max-width: 1110px) and (min-width: 769px) {
  footer.site-footer .footer-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  footer.site-footer .footer-container .footer-brand {
    grid-column: 1 / -1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  footer.site-footer .footer-container .footer-brand .footer-logo {
    margin: 0 auto;
  }

  footer.site-footer .footer-container .footer-brand .footer-description {
    max-width: 600px;
    margin: 0 auto;
  }

  footer.site-footer .footer-container .footer-links {
    grid-row: 2;
  }

  footer.site-footer .footer-container .footer-links:nth-of-type(1) {
    grid-column: 1;
  }

  footer.site-footer .footer-container .footer-links:nth-of-type(2) {
    grid-column: 2;
  }

  footer.site-footer .footer-container .footer-links:nth-of-type(3) {
    grid-column: 3;
  }

  footer.site-footer .footer-container .footer-social {
    grid-column: 1 / -1 !important;
    grid-row: 3;
  }
      .nav-link,
    .subnav-link {
      width: 100%;
      display: flex !important;
      align-items: center;
      justify-content: flex-start;
      gap: .50rem;
      padding: 1rem .1rem !important;
      margin: 0;
      border-radius: .4rem !important;
      color: #222;
      text-align: left;
      font-size: 1rem;
    }
}
    header nav.active {
      box-shadow: none !important;
    }
      @media (max-width: 1110px) {
    footer.site-footer .footer-container .footer-social {
      grid-column: 1 / -1 !important;
      width: 100% !important;
      text-align: center !important;
      margin: 0 auto !important;
    }
    footer.site-footer .footer-container .footer-social .social-icons {
      display: flex !important;
      justify-content: center !important;
      align-items: center !important;
      gap: 14px !important;
      flex-wrap: wrap !important;
      margin: 8px auto 0 !important;
      padding: 0 !important;
      width: max-content !important;
      max-width: 100% !important;
    }
    footer.site-footer .footer-container .footer-social .social-icons a {
      display: inline-flex !important;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
    }
    footer.site-footer .footer-container .footer-social .social-icons svg,
    footer.site-footer .footer-container .footer-social .social-icons i {
      width: 22px !important;
      height: 22px !important;
    }
  }
  #footer-logo {
    height: 80px !important;
    width: auto;
  }

  .footer-logo {
    max-width: 150px;
    margin-bottom: 15px;
  }

  .footer-logo {
    width: 140px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;    
    margin: 0 auto 15px auto;
  }

  #footer-logo {
    width: 80px !important;
  }

  .footer-logo {
    width: 80px !important;
  }

  .footer-links {
      text-align: left;
  }

  .footer-links h4 {
      text-align: left;
  }

  .footer-links ul {
      text-align: left;
      padding-left: 0;
      list-style: none;
  }

  .footer-links li {
      text-align: left;
  }
  footer.site-footer .footer-links a:hover {
    text-decoration: none;
  }