/* ===== Footer Styling ===== */
.footer {
  background-color: #1e1e1e;
  font-family: 'Montserrat', sans-serif;
  color: #2e8b57;
}

/* ===== Footer Watermark ===== */
.footer {
  position: relative; /* Allow absolute positioning inside */
  overflow: hidden;   /* Prevent image overflow */
}

.footer-watermark {
  position: absolute;
  bottom: 50px;
  right: 200px;
  width: 360px;
  opacity: 0.18;      /* Soft transparent watermark */
  pointer-events: none;  /* Make sure it's not clickable */
  user-select: none;     /* Prevent selection */
}


.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4rem;
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1.2fr;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: start;
}

.footer__col {
  text-align: left;
}

.footer__col h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #2e8b57;
}

.footer__col h3 span {
  color: #4caf50;
}

.footer__col h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: #2e8b57;
  border-bottom: 2px solid #4caf50;
  display: inline-block;
  padding-bottom: 0.3rem;
}

.footer__col p {
  margin-bottom: 0.7rem;
  color: #ffffff;
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer__col i {
  color: #2e8b57;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.footer__col p a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__col p a:hover,
.footer__col i:hover {
  color: #1b5e20;
}

/* Footer bar */
.footer__bar {
  margin-top: 2rem;
  background-color: #2e8b57;
  padding: 0.8rem 0;
  width: 100%;
}

.footer__bar__content {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.footer__bar__content p {
  font-size: 0.9rem;
  color: #fff;
  margin: 0;
}

/* Responsive design */
@media (max-width: 768px) {
  .footer__container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
    max-width: 100%;
  }

  .footer__col p {
    justify-content: left;
  }
}
