/* Footer styles for MARAIS */

.site-footer {
  background: #640406;
  color: #fff;
  padding: 80px 0 40px;
  font-family: 'Jost', sans-serif;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  /* Professional left-alignment */
  text-align: left;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.6);
}

/* Brand Column */
.footer-logo {
  display: block;
  margin-bottom: 10px;
}

.footer-logo img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
  /* Ensure white logo on dark bg */
}

.footer-description {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  max-width: 280px;
  margin: 0;
}

.footer-bold-phone {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s;
}

.footer-bold-phone:hover {
  opacity: 0.8;
}

/* Lists */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-col a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s ease;
}

.footer-col a:hover {
  color: #fff;
  transform: translateX(4px);
  display: inline-block;
}

/* Social Links */
.footer-social-simple {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-social-simple a {
  display: block;
  font-size: 14px;
}

/* Newsletter Form */
.footer-newsletter p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.footer-input-group {
  display: flex;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 4px;
  transition: border-color 0.3s ease;
}

.footer-input-group:focus-within {
  border-bottom-color: #fff;
}

.footer-input {
  flex: 1;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 14px;
  padding: 8px 0;
  outline: none;
}

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

.footer-btn {
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.footer-btn:hover {
  transform: scale(1.1);
}

.newsletter-status {
  font-size: 12px;
  min-height: 18px;
}

/* Footer Bottom */
.footer-bottom {
  padding-top: 20px;
}

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

.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

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

.footer-legal a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.8);
}

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

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

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

  .footer-col {
    align-items: flex-start;
    text-align: -webkit-left;
  }

  .footer-newsletter {
    display: none;
    /* Persistent requirement to hide on mobile */
  }

  .footer-description {
    max-width: 100%;
  }

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