.footer {
  background: var(--matte-black);
  color: var(--warm-white);
  padding-top: 80px;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-section h4 {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  color: var(--brushed-gold);
  margin-bottom: 25px;
  font-weight: 500;
}

.footer-logo {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--warm-white);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.footer-tagline {
  color: rgba(250, 249, 247, 0.8);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 280px;
}

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

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(250, 249, 247, 0.1);
  border-radius: 50%;
  font-size: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-links a:hover {
  background: var(--brushed-gold);
  transform: translateY(-2px);
}

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

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul li a {
  color: rgba(250, 249, 247, 0.8);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
  position: relative;
}

.footer-section ul li a:hover {
  color: var(--brushed-gold);
  padding-left: 8px;
}

.footer-section ul li a::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 1px;
  background: var(--brushed-gold);
  transition: width 0.3s ease;
}

.footer-section ul li a:hover::before {
  width: 6px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-icon {
  font-size: 20px;
  margin-top: 2px;
}

.contact-item div strong {
  display: block;
  color: var(--brushed-gold);
  font-size: 14px;
  margin-bottom: 5px;
  font-weight: 500;
}

.contact-item div p {
  color: rgba(250, 249, 247, 0.8);
  font-size: 15px;
  margin: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(250, 249, 247, 0.1);
  padding: 30px 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  color: rgba(250, 249, 247, 0.6);
  font-size: 14px;
  margin: 0;
}

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

.footer-links a {
  color: rgba(250, 249, 247, 0.6);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--brushed-gold);
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .footer-container {
    padding: 0 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .social-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer {
    padding-top: 60px;
  }

  .footer-links {
    flex-direction: column;
    gap: 15px;
  }
}

.social-links a svg {
  width: 20px;
  height: 20px;
  transition: all 0.3s ease;
  color: white;
}

.social-links a:hover svg {
  transform: scale(1.1);
}
