/* ==========================================================================
   FOOTER STYLES — AURALIX MEDIA (LIGHT THEME REDESIGN)
   ========================================================================== */

.site-footer {
  background-color: #F4EDE4; /* Premium warm biscuit color */
  border-top: 1px dashed rgba(17, 19, 24, 0.08); /* Dashed separator */
  padding: 5rem 0 2rem 0;
  margin-top: 0; /* Flows seamlessly from the contact section */
  position: relative;
  z-index: 10;
  overflow: hidden; /* Clips giant reveal watermark and corner leaves to prevent horizontal stretch */
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}

/* Brand Column */
.footer-brand .brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.footer-brand .brand-logo-img {
  height: 38px;
  width: auto;
}

.footer-brand .brand-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.footer-brand .brand-name-main {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: #111318;
}

.footer-brand .brand-name-sub {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand-red, #D43A2F);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-tagline {
  font-family: var(--font-mono, monospace);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand-red, #D43A2F);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 1.25rem;
}

.brand-description {
  font-size: 0.88rem;
  color: #555864;
  line-height: 1.6;
  max-width: 320px;
  margin-top: 0.6rem;
}

/* Social Media circular links */
.footer-socials {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.footer-socials .social-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff; /* White circles */
  border: 1px solid rgba(17, 19, 24, 0.08);
  color: #111318;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
}

.footer-socials .social-icon-btn:hover {
  background: var(--brand-red, #D43A2F);
  border-color: var(--brand-red, #D43A2F);
  color: #ffffff;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 15px rgba(212, 58, 47, 0.22);
}

/* Columns Navigation Links */
.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  color: #111318;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 0;
  margin: 0;
}

.footer-link {
  font-size: 0.88rem;
  color: #555864;
  text-decoration: none;
  transition: all 0.25s ease;
  display: inline-block;
}

.footer-link:hover {
  color: var(--brand-red, #D43A2F);
  transform: translateX(3px);
}

/* Contact List styling details */
.contact-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: #555864;
  font-weight: 500;
}

.contact-item i {
  width: 16px;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.contact-item i.fa-envelope {
  color: var(--brand-red, #D43A2F);
}

.contact-item i.fa-whatsapp {
  color: #0fb881;
}

.contact-item i.fa-location-dot {
  color: var(--brand-red, #D43A2F);
}

/* Footer Bottom Area */
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px dashed rgba(17, 19, 24, 0.08); /* Dashed bottom separator */
  display: flex;
  align-items: center;
  justify-content: center; /* Centered copyright */
  font-size: 0.82rem;
  color: #8a8d9a;
  text-align: center;
  width: 100%;
}

.copyright {
  text-align: center;
}

/* Giant Parallax Watermark revealed on scroll */
.footer-reveal-text {
  position: absolute;
  bottom: -22px; /* cropped slightly at the bottom edge */
  left: 50%;
  transform: translateX(-50%) translateY(60px);
  font-family: var(--font-heading);
  font-size: clamp(3rem, 11vw, 8rem);
  font-weight: 900;
  color: var(--brand-red, #D43A2F);
  opacity: 0;
  letter-spacing: -0.03em;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 1;
  text-transform: uppercase;
  transition: transform 0.08s ease-out, opacity 0.08s ease-out; /* smooth parallax tracking */
}

/* Footer leaf image positioning rules - matches the hero style on both sides */
.footer-leaf-img {
  position: absolute;
  bottom: 0;
  width: 250px; /* matches the hero width */
  height: auto;
  pointer-events: none;
  user-select: none;
  z-index: 10;
  opacity: 0.95; /* fully vibrant like the hero leaf */
  transition: opacity 0.3s ease;
}

.footer-leaf-img.leaf-left {
  left: 0;
  transform: none; /* points up-right */
}

.footer-leaf-img.leaf-right {
  right: 0;
  transform: scaleX(-1); /* mirrored, points up-left */
}

/* Responsive utilities */
@media (max-width: 992px) {
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .footer-leaf-img {
    display: none; /* Hide leaf decorations on mobile screen widths for clean layout */
  }
}

@media (max-width: 576px) {
  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    text-align: center;
  }
}
