/* ==========================================================================
   Pergo Theme — Footer & Social Links Styling
   ========================================================================== */

.footer {
  padding: 0;
  font-family: var(--font-body);
}

.footer a:not(.btn) {
  color: #94a3b8;
  transition: var(--transition-base);
}

.footer a:not(.btn):hover {
  color: #ffffff;
}

.footer .title {
  color: #f8fafc;
  font-family: var(--font-primary);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.footer_top.dark {
  background-color: #0b0f19 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 70px 0 50px 0;
}

.footer_top.dark .site-logo img {
  max-height: 42px;
  object-fit: contain;
}

.footer-brand-bio {
  color: #94a3b8;
  font-size: 0.92rem;
  line-height: 1.65;
  margin-top: 16px;
  max-width: 320px;
}

.footer_top.dark .quick-link li {
  margin-bottom: 12px;
}

.footer_top.dark .quick-link li a {
  font-size: 0.92rem;
  color: #94a3b8;
}

.footer_top.dark .quick-link li a:hover {
  color: #a5b4fc;
  padding-left: 4px;
}

.footer-contact-list li {
  color: #94a3b8;
  font-size: 0.92rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact-list li i {
  color: #818cf8;
  font-size: 1rem;
}

.footer_bottom.dark {
  background-color: #070a12 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px 0;
  color: #64748b;
  font-size: 0.88rem;
}

.footer_bottom.dark .container {
  padding-left: 15px;
  padding-right: 15px;
}

.footer-lang-selector {
  margin-top: 6px;
  padding: 6px 14px;
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  outline: none;
  background-color: rgba(255, 255, 255, 0.05);
  color: #cbd5e1;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition-base);
}

.footer-lang-selector:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
}

.footer-lang-selector option {
  background-color: #0f172a;
  color: #ffffff;
}

/* Social Buttons */
.footer .btn-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #cbd5e1 !important;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-base);
  margin-left: 4px;
}

.footer .btn-icon:hover {
  transform: translateY(-2px);
  background: var(--gradient-primary);
  border-color: transparent;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.4);
}

@media (max-width: 991px) {
  .footer_top.dark {
    padding: 50px 0 30px 0;
  }
  
  .footer_bottom.dark {
    text-align: center;
  }
  
  .footer_bottom.dark .col-auto {
    width: 100%;
    margin-bottom: 12px;
  }
}
