.site-footer {
  margin-top: 4rem;
  background: linear-gradient(160deg, #0a4f3e 0%, #0f6e56 68%, #127e64 100%);
  color: rgba(255, 255, 255, 0.92);
}

/* Updated for 3 columns */
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;  /* 3 columns - changed from 4 */
  gap: 2rem;  /* Increased gap for better spacing */
  padding: 3rem 0;
}

/* Remove the 4th column styling */
.footer-col h3 {
  font-size: 0.95rem;
  color: #ffe8c8;
  margin-bottom: 0.8rem;  /* Slightly increased */
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 0.5rem;
}

/* Add underline effect for headings */
.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background: #d4872a;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.88);
  margin: 0.3rem 0;
  font-size: 0.92rem;
  line-height: 1.5;
}

.footer-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  background: #fff;
  border-radius: 50%;
  padding: 6px;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.93rem;
  max-width: 280px;
  line-height: 1.5;
}

/* Quick Links Styling */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  font-size: 0.92rem;
}

.footer-links a:hover {
  color: #ffe8c8;
  transform: translateX(4px);
}

/* Contact Details Styling */
.footer-col address p {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

/* Social Icons */
.footer-socials {
  display: flex;
  gap: 0.8rem;
  margin-top: 0.8rem;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.8);
}

.footer-socials img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

/* Footer Note */
.footer-note {
  margin-top: 1.2rem;
  padding-top: 0.8rem;
  font-size: 0.8rem;
  color: #ffe8c8;
  font-weight: 500;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.95rem 0;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.84);
  margin: 0;
  font-size: 0.86rem;
}

/* Responsive Design - Updated for 3 columns */
@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;  /* 2 columns on tablet */
    gap: 1.8rem;
  }
  
  /* Make first column span full width on tablet */
  .footer-brand-col {
    grid-column: span 2;
    text-align: center;
  }
  
  .footer-tagline {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  
  .footer-brand-col .footer-logo {
    margin-left: auto;
    margin-right: auto;
  }
  
  /* Center underline for headings on tablet */
  .footer-col h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;  /* 1 column on mobile */
    padding: 2.2rem 0;
    text-align: center;
  }
  
  .footer-brand-col {
    grid-column: span 1;
  }
  
  .footer-tagline {
    max-width: 100%;
  }
  
  .footer-links a:hover {
    transform: translateX(0);
  }
  
  .footer-socials {
    justify-content: center;
  }
  
  .footer-note {
    text-align: center;
  }
  
  /* Remove underline transform for mobile if needed */
  .footer-col h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
}