/* SIYAM FX — dynamic footer layout */
.site-footer {
  background-color: #1a1f3a;
  border-top: 1px solid rgba(139, 115, 85, 0.3);
}

.site-footer-main {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .site-footer-main {
    grid-template-columns: minmax(220px, 280px) 1fr minmax(260px, 320px);
    align-items: start;
  }
}

.site-footer-brand-block {
  min-width: 0;
}

.site-footer-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem 2rem;
}

@media (min-width: 640px) {
  .site-footer-columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .site-footer-columns {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
}

.site-footer-column {
  min-width: 0;
}

.site-footer-quick-block {
  min-width: 0;
}

@media (max-width: 1023px) {
  .site-footer-quick-block {
    max-width: 28rem;
  }
}

.site-footer-tagline {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.site-footer-meta {
  color: rgba(255, 255, 255, 0.5);
}

.site-footer-copy {
  color: rgba(255, 255, 255, 0.4);
}

.site-footer-social a {
  background: rgba(255, 255, 255, 0.08);
  color: #d4af37;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.site-footer-social a:hover {
  background: rgba(212, 175, 55, 0.15);
  color: #fff;
}

.site-footer-heading {
  color: #d4af37;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.site-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer-links li + li {
  margin-top: 0.5rem;
}

.site-footer-link {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.site-footer-link:hover {
  color: #fff;
}

.site-footer-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.site-footer-form input,
.site-footer-form textarea {
  background: #0a0e27;
  color: #fff;
  border: 1px solid rgba(139, 115, 85, 0.3);
  border-radius: 0.5rem;
  font-size: 0.75rem;
  width: 100%;
  padding: 0.5rem 0.75rem;
}

.site-footer-form input:focus,
.site-footer-form textarea:focus {
  outline: none;
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.15);
}

.site-footer-form button[type="submit"] {
  background: #d4af37;
  color: #0a0e27;
  font-weight: 600;
  border: none;
  border-radius: 0.5rem;
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.site-footer-form button[type="submit"]:hover:not(:disabled) {
  opacity: 0.9;
}

.site-footer-form button[type="submit"]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.site-footer-bottom {
  border-top: 1px solid rgba(139, 115, 85, 0.2);
  padding-top: 2rem;
}

.site-footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  transition: color 0.2s ease;
}

.site-footer-legal a:hover {
  color: #fff;
}

.site-footer-risk {
  background: rgba(10, 14, 39, 0.5);
  border: 1px solid rgba(139, 115, 85, 0.1);
  border-radius: 0.5rem;
  padding: 1rem;
  margin-top: 1.5rem;
}

.site-footer-risk p {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.75rem;
  line-height: 1.6;
  margin: 0;
}

.site-footer-risk strong {
  color: rgba(255, 255, 255, 0.5);
}

.site-footer-form-msg {
  display: none;
  margin-top: 0.5rem;
  padding: 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  text-align: center;
  font-weight: 600;
}
