/* ==========================================================================
   FOOTER STYLES
   ========================================================================== */

.footer-section {
  background-color: var(--secondary-color);
  color: #cbd5e1;
  font-size: 0.9rem;
  padding-top: 4.5rem;
  position: relative;
  border-top: 4px solid var(--primary-color);
}

.footer-logo {
  max-height: 110px;
  width: auto;
  margin-bottom: 1.25rem;
  filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.15));
}

.footer-desc {
  font-size: 0.88rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.footer-title {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.6rem;
}

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

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

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

.footer-links a {
  color: #94a3b8;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-fast);
}

.footer-links a i {
  font-size: 0.75rem;
  color: var(--primary-color);
  transition: transform 0.2s ease;
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 0.4rem;
}

.footer-links a:hover i {
  transform: translateX(3px);
}

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

.footer-contact-list li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: #94a3b8;
}

.footer-contact-list i {
  color: var(--primary-color);
  font-size: 1.1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.footer-contact-list a {
  color: #ffffff;
  font-weight: 600;
}

.footer-social-icons {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.footer-social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-normal);
}

.footer-social-icons a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

/* SUB FOOTER COPYRIGHT */
.sub-footer {
  background-color: #050914;
  padding: 1.25rem 0;
  margin-top: 3.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  color: #64748b;
}

.sub-footer-links {
  display: flex;
  gap: 1.5rem;
}

.sub-footer-links a {
  color: #64748b;
}

.sub-footer-links a:hover {
  color: #ffffff;
}
