/* Footer Styles - Minimal Luxury Design */
/* Matches hero section dark gradient aesthetic */

.footer {
  background: linear-gradient(rgba(10, 16, 29, 0.6), rgba(10, 16, 29, 0.7)), url('../images/footer-image.webp') center/cover no-repeat;
  color: #ffffff;
  padding: 5rem 4rem 2rem;
  font-family: 'Inter', sans-serif;
  width: 100%;
  box-sizing: border-box;
}

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

/* Main Footer Content */
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Brand Column */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: -0.5px;
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 320px;
  line-height: 1.6;
}

/* Newsletter Panel */
.footer-newsletter {
  margin-top: 1.5rem;
}

.newsletter-panel {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 0.35rem;
  max-width: 320px;
  transition: border-color 0.3s ease;
}

.newsletter-panel:focus-within {
  border-color: rgba(255, 255, 255, 0.3);
}

.newsletter-panel input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0.75rem 1rem;
  color: #ffffff;
  font-size: 0.9rem;
  outline: none;
}

.newsletter-panel input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-panel button {
  background: #ffffff;
  color: #050505;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.newsletter-panel button:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

/* WhatsApp Panel */
.footer-whatsapp {
  margin-top: 1rem;
}

.whatsapp-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border: none;
  border-radius: 100px;
  padding: 0.85rem 1.5rem;
  max-width: 320px;
  text-decoration: none;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-panel:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.whatsapp-text {
  white-space: nowrap;
}

/* Contact Column */
.footer-contact-title,
.footer-links-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1.5rem;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact-info a {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.3s ease;
}

.footer-contact-info a:hover {
  color: #ffffff;
}

.footer-address-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-top: 0.5rem;
}

/* Links Column */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
  width: fit-content;
}

.footer-links a:hover {
  color: #ffffff;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
}

.footer-copyright {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

/* Responsive */
@media (max-width: 1024px) {
  .footer {
    padding: 4rem 2rem 2rem;
  }
  
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  
  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 2.5rem 1.5rem 2rem;
  }
  
  .footer-main {
    grid-template-columns: 1fr;
    gap: 0;
    padding-bottom: 2rem;
  }
  
  .footer-brand {
    grid-column: span 1;
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .footer-logo {
    justify-content: center;
  }
  
  .footer-tagline {
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .footer-newsletter,
  .footer-whatsapp {
    display: flex;
    justify-content: center;
  }
  
  .whatsapp-panel {
    width: 100%;
    max-width: 280px;
  }
  
  .footer-contact {
    text-align: center;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .footer-contact-title {
    text-align: center;
  }
  
  .footer-contact-info {
    align-items: center;
  }
  
  .footer-contact-info a {
    justify-content: center;
  }
  
  .footer-address-text {
    text-align: center;
  }
  
  .footer-links-section {
    text-align: center;
    padding: 2rem 0;
  }
  
  .footer-links-title {
    text-align: center;
  }
  
  .footer-links {
    align-items: center;
  }
  
  .footer-links a {
    justify-content: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .footer-copyright {
    max-width: 100%;
    text-align: center;
  }
  
  .footer-social {
    justify-content: center;
  }
}
