/* SifoTech Premium Component Styles */
:root {
  --primary-color: #335135;
  --accent-color: #dc4546;
  --dark-color: #1a1a1a;
  --light-color: #f8f9fa;
}

/* Premium Navbar */
.premium-navbar {
  background: white !important;
  padding: 1rem 0;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.premium-navbar.scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.premium-navbar .brand-text {
  font-weight: 700;
  font-size: 1.25rem;
  color: #335135;
}

.premium-navbar .nav-link {
  color: #2c3e50 !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  margin: 0 0.25rem;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.premium-navbar .nav-link:hover,
.premium-navbar .nav-link.active {
  color: white !important;
  background: #335135;
  transform: translateY(-2px);
}

/* Premium Footer */
.premium-footer {
  background: linear-gradient(135deg, var(--dark-color), #2a2a2a);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 0;
  margin-top: 80px;
}

.footer-title {
  color: white;
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
}

.footer-text {
  line-height: 1.7;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
  color: var(--accent-color);
  margin-right: 10px;
  width: 20px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--accent-color);
  transform: translateY(-3px);
  color: white;
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 30px 0 0;
}
