/* Footer Styles */
.footer {
  background-color: var(--black);
  color: var(--white);
  padding: 60px 0 32px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.footer-brand {
  grid-column: span 1;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.footer-logo-icon {
  color: var(--primary);
  font-size: 24px;
  margin-right: 8px;
}

.footer-logo-text {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
}

.footer-tagline {
  color: var(--gray);
  margin-bottom: 24px;
}

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

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

.social-link:hover {
  background-color: var(--primary);
  color: var(--black);
  transform: translateY(-3px);
}

.footer-links {
  grid-column: span 1;
}

.footer-links-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--white);
}

.footer-links-list {
  list-style: none;
}

.footer-links-list li {
  margin-bottom: 12px;
}

.footer-links-list a {
  color: var(--gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-contact {
  grid-column: span 1;
}

.contact-item {
  display: flex;
  margin-bottom: 16px;
}

.contact-icon {
  color: var(--primary);
  margin-right: 12px;
  font-size: 18px;
}

.contact-text {
  color: var(--gray);
}

.footer-newsletter {
  grid-column: span 1;
}

.newsletter-form {
  position: relative;
}

.newsletter-input {
  width: 100%;
  padding: 12px 16px;
  border: none;
  border-radius: var(--border-radius);
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  margin-bottom: 16px;
}

.newsletter-input:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.2);
}

.newsletter-btn {
  background-color: var(--primary);
  color: var(--black);
  border: none;
  border-radius: var(--border-radius);
  padding: 12px 24px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-btn:hover {
  background-color: #e6ac00;
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--gray);
}

.footer-copyright {
  font-size: 14px;
}

.footer-links-bottom {
  display: flex;
  gap: 24px;
}

.footer-links-bottom a {
  color: var(--gray);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

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

@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-brand, .footer-links, .footer-contact, .footer-newsletter {
    grid-column: span 1;
  }
}

@media (max-width: 576px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}