/* Additional styles for footer alignment */
/* Footer grid alignment */
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
  align-items: flex-start;
}

.footer-brand {
  grid-column: span 1;
}

/* Add margin-top to align columns with footer-brand */
.footer-links, 
.footer-info, 
.footer-contact,
.footer-social {
  margin-top: 20px;
}

/* Reduce the paragraph text size in footer-brand */
.footer-brand p {
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.9;
}

/* Adjust headings in footer sections */
.footer-links h4,
.footer-info h4,
.footer-contact h4,
.footer-social h4 {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 600;
}

/* Reduce list item text size */
.footer-links ul li,
.footer-info ul li,
.footer-contact address p,
.footer-social .social-links {
  font-size: 14px;
  line-height: 1.4;
}

.footer-links ul,
.footer-info ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Improve alignment of icons in contact section */
.footer-contact address {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact address p i {
  width: 16px;
  margin-right: 8px;
  text-align: center;
}

/* Footer bottom section */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.powered-by {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.whatsapp-link {
  display: flex;
  align-items: center;
  margin: 0 3px;
}

.whatsapp-link svg {
  vertical-align: middle;
}

/* Social links styling */
.footer-social {
  display: block;
  margin-left: 40px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.social-icon {
  width: 32px;
  height: 32px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.social-icon i {
  color: white;
  font-size: 16px;
}

.social-icon:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Responsive design */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  
  .footer-brand {
    grid-column: span 4;
  }
  
  /* Reset margin on smaller screens */
  .footer-links, 
  .footer-info, 
  .footer-contact,
  .footer-social {
    margin-top: 10px;
  }
}

@media (max-width: 992px) and (min-width: 769px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  
  .footer-brand {
    grid-column: span 4;
  }
  
  .footer-links, 
  .footer-info, 
  .footer-contact,
  .footer-social {
    grid-column: span 1;
  }
}

@media (max-width: 768px) and (min-width: 425px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .footer-brand {
    grid-column: span 2;
  }
  
  .social-links {
    justify-content: flex-start;
  }

  .footer-social {
    margin-left: 0px;
  }
}

@media (max-width: 425px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .footer-brand {
    grid-column: span 1;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  
  .powered-by {
    justify-content: center;
  }
  
  .social-links {
    justify-content: flex-start;
  }

  .footer-social {
    margin-left: 0px;
  }
}