
/* ------ Footer ------ */
.footer {
  background-color: #f8f9fa;
  color: #333;
  padding: 4rem 0 0;
}

.footer__logo {
  width: 200px;  /* Set a specific width */
  height: auto;  /* Maintain aspect ratio */
  margin-bottom: 1.5rem;
  object-fit: contain;
  filter: none;
}

.footer__about {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer__social {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.footer__social a {
  color: var(--primary);
  font-size: 1.75rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Add glowing effect on hover */
.footer__social a:hover {
  color: var(--primary);
  transform: translateY(-3px);
  text-shadow: 0 0 8px rgba(255, 107, 107, 0.6),
               0 0 16px rgba(255, 107, 107, 0.4),
               0 0 24px rgba(255, 107, 107, 0.2);
}


.footer__col h4 {
  color: #333;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.footer__col .list {
  list-style: none;
  padding: 0;
}

.footer__col .list li {
  margin-bottom: 0.75rem;
}

.footer__col .list a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__col .list a:hover {
  color: var(--primary); /* Use your brand color */
}

.footer__contact {
  list-style: none;
  padding: 0;
}

.footer__contact li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: #666;
}

.footer__contact i {
  color: var(--primary); /* Use your brand color */
  width: 16px;
}

.footer__contact a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__contact a:hover {
  color: var(--primary); /* Use your brand color */
}

.footer__base {
  border-top: 1px solid #e5e5e5;
  padding: 1.5rem 0;
  text-align: center;
  color: #666;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;  /* Creates 4 columns with proportional widths */
  gap: 2rem;
  padding-bottom: 3rem;
}

.footer__col {
  display: flex;
  flex-direction: column;
}

/* First column specific styling */
.footer__col:first-child {
  max-width: 400px;
}

@media (max-width: 992px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  
  .footer__col:first-child {
    grid-column: 1 / -1;  /* Makes first column full width */
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__social {
    justify-content: center;
  }

  .footer__col {
    align-items: center;
  }
}