/* /css/components/footer.css */
.ft-footer {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 30px;
  border-top: 1px solid var(--brd);
}

.ft-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.ft-brand h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.ft-brand h3 span {
  color: var(--gold);
}

.ft-brand p {
  color: var(--txt2);
}

.ft-col h4 {
  color: #fff;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.ft-col ul {
  list-style: none;
}

.ft-col li {
  margin-bottom: 12px;
}

.ft-col a {
  color: var(--txt2);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.ft-col a:hover {
  color: var(--gold);
}

.ft-social-links {
  display: flex;
  gap: 16px;
}

.ft-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: background 0.3s ease;
}

.ft-social-link:hover {
  background: var(--gold-d);
}

.ft-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

.ft-bottom a {
  color: var(--txt3);
}