/* =====================
   Footer Base & Layout
===================== */
.site-footer {
  position: relative;
  background-color: #1a0768;
  color: #ffffff;
  padding: 70px 0 0;
  overflow: hidden;
  font-family: 'Poppins', sans-serif; /* Ensuring modern font */
}

/* Background Overlay Pattern */
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  /* If you have the image, keep it. If not, this gradient serves as a fallback placeholder */
  background: 
    linear-gradient(rgba(26, 7, 104, 0.95), rgba(26, 7, 104, 0.98)),
    url("../images/Untitled-2.png") center/cover fixed; 
  z-index: 1;
}

.footer-wrapper,
.footer-bottom {
  position: relative;
  z-index: 2;
}

.footer-wrapper {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1.3fr; /* Adjusted for better spacing */
  gap: 40px;
}

/* =====================
   Column Styles
===================== */
.footer-col h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
  letter-spacing: 0.5px;
}

/* Decorative underline for headings */
.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 2px;
  background-color: #ff9700; /* Orange Accent */
  transition: width 0.3s ease;
}

.footer-col:hover h4::after {
  width: 100%; /* Expands on hover */
}

.footer-col p {
  font-size: 14px;
  line-height: 1.8;
  color: #e0e0e0; /* Softer white for reading */
  margin-bottom: 20px;
}

/* =====================
   Column 1: Brand & Socials
===================== */
.footer-logo {
  max-width: 150px;
  margin-bottom: 20px;
  display: block;
}

.footer-desc {
  max-width: 90%;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-btn {
  width: 38px;
  height: 38px;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 15px;
}

/* Social Hover Animation */
.social-btn:hover {
  background-color: #ff9700;
  color: #ffffff;
  transform: translateY(-5px); /* Floats up */
  box-shadow: 0 5px 15px rgba(255, 151, 0, 0.3);
}

/* =====================
   Column 2: Quick Links
===================== */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

/* Arrow Icon before link */
.footer-links a::before {
  content: "\f105"; /* FontAwesome Chevron Right */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 8px;
  color: #ff9700;
  transition: margin-right 0.3s ease;
}

/* Link Hover Animation */
.footer-links a:hover {
  color: #ff9700;
  padding-left: 5px; /* Slide right effect */
}

.footer-links a:hover::before {
  margin-right: 12px;
}

/* =====================
   Column 3: Map
===================== */
.footer-map-container {
  overflow: hidden;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  height: 180px;
}

.footer-map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(20%); /* Slight vintage look */
  transition: filter 0.3s ease;
}

.footer-map-container:hover {
  border-color: #ff9700;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.footer-map-container:hover iframe {
  filter: grayscale(0%); /* Full color on hover */
}

/* =====================
   Column 4: Contact Info
===================== */
.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact-icon {
  min-width: 35px;
  height: 35px;
  background: rgba(255, 151, 0, 0.1);
  color: #ff9700;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-right: 15px;
  margin-top: -5px; /* Alignment fix */
}

.contact-text a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
  display: block;
  line-height: 1.6;
}

.contact-text a:hover {
  color: #ff9700;
}

/* =====================
   Bottom Bar
===================== */
.footer-bottom {
  margin-top: 30px;
  padding: 10px 10px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  background: rgba(0,0,0,0.2); /* Slightly darker bottom */
}

.copyright-text {
  font-size: 14px;
  color: #aaaaaa;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-wrap: wrap;
}

.designer-logo {
  height: 22px;
  vertical-align: middle;
  transition: opacity 0.3s;
  margin-left: 5px;
}

.designer-logo:hover {
  opacity: 0.8;
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 992px) {
  .footer-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 576px) {
  .footer-wrapper {
    grid-template-columns: 1fr;
    text-align: left; /* Keep left align usually looks better than center for lists */
  }

  .footer-logo {
    margin-bottom: 15px;
  }

  .footer-col h4::after {
    width: 40px; /* Reset width animation on mobile */
  }
  
  .footer-col:hover h4::after {
    width: 40px;
  }
  
  .footer-bottom {
    padding: 15px;
  }
}