/* Footer Styling - Standardized */
.footer {
  position: relative;
  padding: 1.5rem 0 0.75rem;
  background-color: var(--color-white);
  margin-top: 1rem;
  width: 100%;
  display: block;
  clear: both;
  font-size: 0.75rem;
}

/* Gradient line at the top */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--bs-primary), var(--bs-info));
}

/* Footer columns - ensuring proper Bootstrap grid structure */
.footer .row {
  --bs-gutter-x: 0.75rem;
  --bs-gutter-y: 0.75rem;
  display: flex;
  flex-wrap: wrap;
}

.footer .col-md-3 {
  flex: 0 0 auto;
  width: 100%;
}

@media (min-width: 768px) {
  .footer .col-md-3 {
    width: 25%;
  }
  
  .footer .col-md-6 {
    width: 50%;
  }
}

/* Footer Logo */
.footer a img {
  width: 30px;
  height: 30px;
  transition: transform 0.3s ease;
}

.footer a:hover img {
  transform: rotate(10deg);
}

/* Social button styling */
.footer .btn-outline-secondary {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border-radius: 50%;
}

.footer .btn-outline-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  background-color: var(--bs-primary);
  color: white;
  border-color: var(--bs-primary);
}

/* Headings */
.footer h5 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--bs-dark);
}

.footer h6 {
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--bs-dark);
}

/* Link styling */
.footer a {
  color: var(--bs-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.75rem;
}

.footer a:hover {
  color: var(--bs-primary);
  transform: translateX(3px);
}

/* List styling */
.footer ul.list-unstyled {
  line-height: 1.3;
  margin-bottom: 0;
}

.footer ul.list-unstyled li {
  margin-bottom: 0.25rem;
}

/* Divider styling */
.footer hr {
  opacity: 0.1;
  margin: 2rem 0;
}

/* Copyright section */
.footer .copyright {
  font-size: 0.6875rem;
  color: var(--bs-secondary);
}

/* Social icons row */
.footer .social-icons {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-start;
}

@media (min-width: 768px) {
  .footer .social-icons {
    justify-content: flex-end;
  }
}

/* Footer columns */
.footer .footer-col {
  margin-bottom: 1.5rem;
}

/* Responsive styles */
@media (max-width: 991.98px) {
  .footer {
    padding: 1rem 0 0.5rem;
  }
  
  .footer .row {
    --bs-gutter-x: 0.5rem;
    --bs-gutter-y: 0.5rem;
  }
}

@media (max-width: 767.98px) {
  .footer a:hover {
    transform: none;
  }
  
  .footer .text-md-end {
    text-align: center !important;
  }
  
  .footer .mb-md-0 {
    margin-bottom: 1rem !important;
  }
  
  .footer .social-icons {
    justify-content: center;
    margin-top: 1rem;
  }
}

/* Company description */
.footer p {
  font-size: 0.75rem;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

/* Contact info */
.footer .contact-info li {
  font-size: 0.75rem;
  margin-bottom: 0.25rem;
}

/* Social links */
.footer .social-links {
  margin-top: 0.5rem;
}

.footer .social-links a {
  font-size: 0.875rem;
  width: 24px;
  height: 24px;
  line-height: 24px;
} 