/* Enhanced Footer Styles - Inline Layout */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 0 0 20px;
}

.footer-inline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-section {
  flex: 1;
  min-width: 250px;
}

.footer-section h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--primary-gold);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.footer-section h4 i {
  font-size: 0.9rem;
  color: var(--primary-gold);
}

.footer-items {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}

.footer-items span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  white-space: nowrap;
}

.footer-items span i {
  color: var(--primary-gold);
  font-size: 0.8rem;
  width: 14px;
  text-align: center;
}

.footer-items span a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-items span a:hover {
  color: var(--primary-gold);
}

/* Footer bottom section */

.footer-bottom {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
  text-align: center;
}

.copyright {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.5;
}

.copyright a {
  color: var(--primary-gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

.copyright a:hover {
  color: var(--text-primary);
}

/* Responsive Footer */
@media (max-width: 1200px) {
  .footer-inline {
    gap: 30px;
  }
  
  .footer-section {
    min-width: 220px;
  }
  
  .footer-items {
    gap: 12px;
  }
}

@media (max-width: 991px) {
  .site-footer {
    padding: 0 0 20px;
  }
  
  .footer-inline {
    gap: 25px;
  }
  
  .footer-section {
    min-width: 200px;
  }
  
  .footer-section h4 {
    font-size: 0.95rem;
    margin-bottom: 12px;
  }
  
  .footer-items {
    gap: 10px;
  }
  
  .footer-items span {
    font-size: 0.8rem;
  }
}

@media (max-width: 767px) {
  .site-footer {
    padding: 0 0 20px;
  }
  
  .footer-inline {
    flex-direction: column;
    gap: 25px;
    align-items: stretch;
  }
  
  .footer-section {
    min-width: auto;
    width: 100%;
  }
  
  .footer-items {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .footer-bottom {
    margin-top: 25px;
    padding-top: 20px;
  }
  
  .copyright {
    font-size: 0.8rem;
  }
}

/* Enhanced hover effects */
.footer-items span:hover i {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

.footer-items span a:hover i {
  transform: translateX(2px);
  transition: transform 0.3s ease;
}