/* Footer Styling */
.site-footer {
    background-color: #131313; /* changed to black */
    color: #ffffff;           /* text to white */
    padding: 20px 40px;
    font-family: Arial, sans-serif;
}

/* Neon Gradient Glow Effect */
.site-footer::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 400px;   /* adjust size of glow area */
    height: 400px;
    background: radial-gradient(circle at bottom right,
                rgba(0, 255, 255, 0.6),  /* cyan glow */
                rgba(255, 0, 255, 0.5),  /* magenta glow */
                rgba(0, 0, 0, 0) 70%);   /* fade out smoothly */
    filter: blur(80px);  /* soft glow */
    pointer-events: none; /* don’t block clicks */
    z-index: 0; /* keep behind footer content */
}

/* Ensure footer content stays above glow */
.site-footer {
    position: relative;
    z-index: 1;
}


.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.footer-about,
.footer-links,
.footer-contact {
    flex: 1 1 250px;
}

/* Footer Logo */
.footer-logo {
    width: 280px; /* adjust size */
    height: auto;
    margin-bottom: 10px;
}

.footer-about h3 {
    font-size: 1.8em;
    margin-bottom: 10px;
    color: #ffffff; /* force white */
}

.footer-about p {
    font-size: 0.95em;
    line-height: 1.5;
    color: #ffffff; /* white text */
}

/* Location icon */
.footer-about span svg {
    fill: #ffffff; /* make icon white */
    margin-right: 6px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.2em;
    margin-bottom: 10px;
    display: inline-block;
    padding-bottom: 5px;
    color: #ffffff; /* white heading */
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 8px;
    color: #ffffff; /* white text */
}

.footer-links ul li a {
    color: #ffffff; /* white links */
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: #edc304; /* gold hover */
}

.footer-contact p {
    margin: 5px 0;
    font-size: 0.95em;
    color: #ffffff; /* white text */
}

.footer-social {
    margin-top: 10px;
}

.footer-social a {
    margin-right: 10px;
    color: #ffffff; /* white social links */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: #edc304; /* gold hover */
}

/* Footer Bottom */
.footer-bottom {
    background-color: #ffffff; /* white background (unchanged) */
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid #ddd;
    font-size: 14px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 580px;
}

.footer-right a {
    text-decoration: none;
    color: #000000;
}

.footer-right a:hover {
    color: #25d366; /* WhatsApp green hover */
}

.footer-right {
    color: #000000;
}

/* Mobile Screens */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .footer-about,
  .footer-links,
  .footer-contact {
    flex: 1 1 100%;
  }

  .footer-logo {
    width: 280px; /* smaller logo on mobile */
  }

  .footer-about h3 {
    font-size: 1.5em;
  }

  .footer-about p,
  .footer-contact p,
  .footer-links ul li a {
    font-size: 16px;
  }

  /* Footer bottom */
  .footer-bottom {
    flex-direction: column;
    gap: 0px;
    padding: 10px 0;
    text-align: center;
  }

  .footer-left,
  .footer-right {
    margin: 5px 0;
  }
}


/* Mobile Screens - 480px */
@media (max-width: 480px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start; /* left-align by default */
    text-align: left;
    gap: 20px;
  }

  /* Center only logo, trusted text, and address */
  .footer-about {
    width: 100%;
    text-align: center;
    align-items: center;
  }

  
  .footer-about img.footer-logo {
    margin: 0 auto 25px auto; /* center logo */
    display: block;
  }

  .footer-about p,
  .footer-about span {
    display: block;
    text-align: center;
    margin: 5px auto;
  }

  /* Left align rest of footer sections */
  .footer-links,
  .footer-contact {
    width: 100%;
    text-align: left;
    align-items: flex-start;
  }

  .footer-links ul,
  .footer-contact p,
  .footer-social {
    text-align: left;
  }
}
