/**
 * Custom Footer Styles
 */

/* Import Product Sans (Google Sans alternative) */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

.lma-custom-footer {
  background-color: #2a3b58 !important;
  color: #ffffff;
  padding: 80px 0 30px;
  margin-top: 0;
  width: 100%;
  max-width: none !important;
  margin-left: 0;
  margin-right: 0;
  position: relative;
  box-sizing: border-box;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 2.5fr 0.75fr 0.75fr;
  gap: 60px;
  margin-bottom: 60px;
}

/* Newsletter Column */
.footer-newsletter {
  padding-right: 40px;
}

.footer-tagline {
  margin-bottom: 40px;
}

.footer-tagline h3 {
  font-family:
    "Inter",
    "Google Sans",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif !important;
  font-size: 1.75rem !important;
  font-weight: 400 !important;
  line-height: 1.4;
  color: #ffffff !important;
  margin: 0;
}

.newsletter-section h4 {
  font-family:
    "Inter",
    "Google Sans",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif !important;
  font-size: 1.25rem !important;
  font-weight: 600 !important;
  color: #5dd9c1 !important;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Newsletter Form Styling */
.lma-custom-footer .lma-newsletter-form {
  background: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 8px;
}

.lma-custom-footer .lma-newsletter-form input[type="email"],
.lma-custom-footer .lma-newsletter-form input[type="text"] {
  background: #ffffff;
  border: none;
  color: #2a3b58;
  padding: 12px 15px;
  border-radius: 4px;
  width: 100%;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.lma-custom-footer .lma-newsletter-form input[type="email"]::placeholder,
.lma-custom-footer .lma-newsletter-form input[type="text"]::placeholder {
  color: #666;
}

.lma-custom-footer .lma-newsletter-form button[type="submit"] {
  background: #b8547a;
  color: #ffffff;
  border: none;
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  font-size: 1rem;
}

.lma-custom-footer .lma-newsletter-form button[type="submit"]:hover {
  background: #9b3d5c;
}

/* Navigation Columns */
.footer-nav-column h4 {
  font-family:
    "Inter",
    "Google Sans",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif !important;
  font-size: 1.25rem !important;
  font-weight: 600 !important;
  color: #5dd9c1 !important;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

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

.footer-menu a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
  display: inline-block;
}

.footer-menu a:hover {
  color: #5dd9c1 !important;
}

/* Social Icons */
.footer-social {
  margin-top: 30px;
}

.footer-social h4 {
  font-family:
    "Inter",
    "Google Sans",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif !important;
  font-weight: 600 !important;
  color: #5dd9c1 !important;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

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

.social-icon:hover {
  background: #b8547a;
  transform: translateY(-3px);
}

.social-icon svg {
  width: 20px;
  height: 20px;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 30px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  margin: 0;
}

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

  .footer-newsletter {
    grid-column: 1 / -1;
    padding-right: 0;
    margin-bottom: 20px;
  }

  .footer-tagline h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .lma-custom-footer {
    padding: 60px 0 30px;
  }

  .footer-container {
    padding: 0 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-newsletter {
    margin-bottom: 0;
  }

  .footer-tagline h3 {
    font-size: 1.25rem;
  }

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

/* Ensure footer is always outside containers */
body .lma-custom-footer {
  width: 100vw !important;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
  overflow-x: hidden !important;
}

html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
}
