footer {
  background: rgb(24, 25, 31);
  border-top: 1px solid rgb(30, 32, 39);
  margin-top: 0;
  position: relative;
}

.footer-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 3rem;
  margin-bottom: 3rem;
  align-items: start;
}

.footer-section {
  animation: fadeInUp 0.8s ease-out;
}

.footer-section h4 {
  font-family: var(--font-text);
  font-weight: 600;
  font-size: 0.9375rem;
  margin-bottom: 1.25rem;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-logo a {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--primary-color);
  transition: color 0.2s ease-out;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.footer-logo a:hover {
  color: var(--primary-color-hover);
}

.footer-description {
  color: rgb(124, 126, 139);
  line-height: 1.6;
  margin-top: 1rem;
  font-size: 0.875rem;
  font-family: var(--font-text);
  letter-spacing: 0.01em;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 0.7rem;
  transition: transform 0.2s ease-out;
}

.footer-section ul li:hover {
  transform: translateX(5px);
}

.footer-section ul li a {
  color: rgb(124, 126, 139);
  font-size: 0.875rem;
  transition: color 0.2s ease-out;
  text-decoration: none;
  font-family: var(--font-text);
  letter-spacing: 0.01em;
}

.footer-section ul li a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2.5rem;
  border-top: 1px solid rgb(30, 32, 39);
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.footer-bottom p {
  color: rgb(124, 126, 139);
  font-size: 0.875rem;
  margin: 0;
  font-family: var(--font-text);
  letter-spacing: 0.01em;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  color: rgb(124, 126, 139);
  transition: all 0.2s ease-out;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
}

.footer-social a:hover {
  color: var(--primary-color);
}

@media (max-width: 768px) {
	.footer-container {
		padding: 3rem 2rem 1.5rem;
	}

	.footer-content {
		grid-template-columns: 1fr 1fr;
		gap: 2rem;
	}

	.footer-section h4 {
		font-size: 0.875rem;
		margin-bottom: 1rem;
	}

	.footer-section ul li {
		margin-bottom: 0.6rem;
	}

	.footer-section ul li:hover {
		transform: none;
	}

	.footer-section ul li a {
		font-size: 0.8125rem;
	}

	.footer-description {
		font-size: 0.8125rem;
	}
}

@media (max-width: 480px) {
	.footer-container {
		padding: 3rem 1.5rem 1.5rem;
		max-width: none;
	}

	.footer-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.footer-section {
		text-align: center;
	}

	.footer-section h4::after {
		left: 50%;
		transform: translateX(-50%);
	}

	.footer-bottom {
		flex-direction: column;
		gap: 1.5rem;
		text-align: center;
	}

	.footer-bottom p {
		font-size: 0.8125rem;
	}

	.footer-social {
		justify-content: center;
		gap: 0.75rem;
	}

	.footer-social a {
		width: 32px;
		height: 32px;
		padding: 0.4rem;
	}
} 