/* Footer Styles - White Background */
footer {
  background: #ffffff;
  color: #333;
  padding: 60px 80px 40px;
  border-top: 1px solid #e0e0e0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.fb-logo {
  font-family: 'Merriweather', serif;
  font-size: 28px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.fb-desc {
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
  max-width: 300px;
  font-size: 14px;
}

.fb-icons {
  display: flex;
  gap: 15px;
}

.fb-icon {
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
}

.fb-icon:hover {
  background: #417505;
  border-color: #417505;
  color: #fff;
  transform: translateY(-2px);
}

.fb-icon svg {
  width: 18px;
  height: 18px;
}

.fc h4 {
  color: #1a1a1a;
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.fc a {
  display: block;
  color: #666;
  text-decoration: none;
  margin-bottom: 12px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.fc a:hover {
  color: #417505;
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid #e0e0e0;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 13px;
  color: #888;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-btm-links {
  display: flex;
  gap: 20px;
}

.footer-btm-links a {
  color: #888;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-btm-links a:hover {
  color: #417505;
}

/* Responsive */
@media (max-width: 768px) {
  footer {
    padding: 40px 20px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .fb-desc {
    max-width: 100%;
  }
}



/* Admin Specific Adjustments */
.sidebar.collapsed~.main-content .progress-wrap {
  right: 40px;
}

@media (max-width: 768px) {
  .progress-wrap {
    right: 25px;
    bottom: 25px;
    height: 48px;
    width: 48px;
  }
}