
.site-footer {
  background: #0e0e0e;
  color: #ddd;
  padding-top: 40px;
  padding-bottom: 20px;
  border-top: 3px solid #f3c300;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
  padding-bottom: 30px;
}

.footer-left {
  max-width: 280px;
}

.footer-logo {
  width: 80px;
  height: auto;
  margin-bottom: 12px;
}

.footer-left p {
  font-size: 14px;
  line-height: 1.5;
  color: #ccc;
}

.footer-links h4,
.footer-right h4 {
  font-size: 16px;
  margin-bottom: 12px;
  color: #fff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 6px;
}

.footer-links a {
  color: #ccc;
  font-size: 14px;
  text-decoration: none;
}

.footer-links a:hover {
  color: #f3c300;
}

.footer-right p a {
  color: #ccc;
  font-size: 14px;
  text-decoration: none;
}

.footer-right p a:hover {
  color: #f3c300;
}

.footer-social {
    display: flex;
    gap: 15px; 
}

.footer-social a {
    color: var(--white, #ffffff);
    font-size: 20px; 
    transition: color 0.2s ease;
}

.footer-social a:hover {
    color: var(--yellow, #f3c300); 
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 12px;
  text-align: center;
  font-size: 13px;
  color: #999;
  display: flex;
  justify-content: center;
  gap: 16px;
}
.footer-group h4 {
  color: #fff;
  font-size: 14px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.group-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.group-list li {
  position: relative;
  padding: 8px 12px 8px 28px;
  margin-bottom: 8px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  line-height: 1.4;
}

.group-list li::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f3c300;
}

@media (max-width: 900px) {

  .footer-inner {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 28px !important;
  }

  .footer-left,
  .footer-links,
  .footer-right {
    width: 100%;
    text-align: center !important;
  }

  .footer-logo {
    display: block !important;
    margin: 0 auto !important;
  }

  .footer-social {
    justify-content: center !important;
  }

  .footer-bottom {
    flex-direction: column !important;
    text-align: center !important;
    gap: 6px;
  }
}

