/* Footer Styles */
.main-footer {
  background: linear-gradient(135deg, var(--color-navy) 0%, #0a1220 100%);
  color: var(--color-light);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

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

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

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  margin-bottom: 1rem;
}

.footer-logo .logo-main {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-gold);
  font-family: var(--font-main);
  margin-bottom: 0.25rem;
}

.footer-logo .logo-tagline {
  font-family: var(--font-alt);
  font-size: 0.8rem;
  color: #b0b8c4;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  opacity: 0.8;
}

.footer-description {
  font-family: var(--font-alt);
  line-height: 1.6;
  color: #b0b8c4;
  margin-bottom: 2rem;
}

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

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  color: var(--color-gold);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.social-link:hover {
  background: var(--color-gold);
  color: var(--color-dark);
  transform: translateY(-2px);
}

.footer-section h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--color-light);
  font-family: var(--font-main);
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #b0b8c4;
  text-decoration: none;
  font-family: var(--font-alt);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a:hover {
  color: var(--color-gold);
  padding-left: 0.5rem;
}

.footer-links a::before {
  content: '→';
  opacity: 0;
  transition: opacity 0.3s ease;
}

.footer-links a:hover::before {
  opacity: 1;
}

.contact-info {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-info li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-alt);
  color: #b0b8c4;
}

.contact-icon {
  width: 20px;
  height: 20px;
  background: var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--color-dark);
  flex-shrink: 0;
}

.contact-info a {
  color: #b0b8c4;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: var(--color-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(176, 184, 196, 0.2);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  font-family: var(--font-alt);
  color: #b0b8c4;
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-legal a {
  color: #b0b8c4;
  text-decoration: none;
  font-family: var(--font-alt);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

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

.footer-cta {
  background: linear-gradient(135deg, var(--color-gold) 0%, #c19b2e 100%);
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.footer-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
  opacity: 0.3;
}

.footer-cta-content {
  position: relative;
  z-index: 1;
}

.footer-cta h3 {
  font-size: 2rem;
  color: var(--color-dark);
  margin-bottom: 1rem;
  font-family: var(--font-main);
}

.footer-cta p {
  font-size: 1.1rem;
  color: var(--color-dark);
  margin-bottom: 2rem;
  font-family: var(--font-alt);
  opacity: 0.8;
}

.footer-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-footer-cta {
  padding: 1rem 2rem;
  border-radius: 30px;
  font-family: var(--font-alt);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid var(--color-dark);
}

.btn-footer-primary {
  background: var(--color-dark);
  color: var(--color-light);
}

.btn-footer-primary:hover {
  background: transparent;
  color: var(--color-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(24, 24, 24, 0.3);
}

.btn-footer-secondary {
  background: transparent;
  color: var(--color-dark);
}

.btn-footer-secondary:hover {
  background: var(--color-dark);
  color: var(--color-light);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal {
    justify-content: center;
  }
  
  .footer-cta h3 {
    font-size: 1.5rem;
  }
  
  .footer-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-footer-cta {
    width: 100%;
    max-width: 250px;
  }
}

@media (max-width: 480px) {
  .main-footer {
    padding: 3rem 0 1.5rem;
  }
  
  .footer-container {
    padding: 0 1rem;
  }
  
  .footer-cta {
    padding: 2rem 1rem;
  }
  
  .footer-social {
    justify-content: center;
  }
}