/* =========================================
   FOOTER STYLES (Light Theme)
   ========================================= */
.agency-footer {
  /* Match the light theme of the header/body */
  background-color: #fff; 
  border-top: 1px solid rgba(0,0,0,0.05); /* Subtle top border */
  color: #333;
  padding: 4rem 1.5rem 1.5rem;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  max-width: 1120px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2.5rem;
}

/* --- BRAND LOGO --- */
.footer-logo {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 700;
  
  /* Brand Gradient Text */
  background: linear-gradient(90deg, #0052D4 0%, #7ebd00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

/* --- HEADINGS --- */
.footer-title {
  color: #0f1016; /* Dark Text */
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
  position: relative;
  font-weight: 600;
}

/* Underline with Brand Gradient */
.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #0052D4, #7ebd00);
  border-radius: 2px;
}

/* --- TEXT --- */
.footer-text {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #555; /* Soft Grey */
}

/* --- LINKS --- */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  text-decoration: none;
  color: #555;
  transition: 0.3s;
  display: inline-block;
}

.footer-links a:hover {
  color: #0052D4; /* Blue on Hover */
  transform: translateX(5px); /* Slide Effect */
}

/* --- SOCIAL ICONS --- */
.footer-social {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f0f4ff; /* Light Blue Background */
  color: #0052D4;      /* Blue Icon */
  transition: 0.3s;
  font-size: 1.1rem;
}

.footer-social a:hover {
  background: linear-gradient(90deg, #0052D4, #7ebd00); /* Gradient BG */
  color: #fff; /* White Icon */
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 82, 212, 0.2);
}

/* --- BOTTOM BAR --- */
.footer-bottom {
  text-align: center;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
  font-size: 0.9rem;
  color: #777;
}

/* --- RESPONSIVE --- */
@media (max-width: 600px) {
  .agency-footer {
    text-align: center;
  }

  .footer-title::after {
    left: 50%;
    transform: translateX(-50%); /* Center the underline */
  }

  .footer-social {
    justify-content: center;
  }
}