/* ========================
   PREMIUM FOOTER STYLES
======================== */
.premium-footer {
  background: var(--bg);
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--glass-border);
  color: var(--text);
  font-family: var(--font-body);
}

.footer-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0.3;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.brand-col {
  padding-right: 40px;
}

.footer-logo img {
  height: 60px;
  width: auto;
  margin-bottom: 25px;
  opacity: 0.9;
}

.brand-tagline {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 350px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.contact-item i {
  color: var(--primary);
  font-size: 1.1rem;
  margin-top: 2px;
}

.contact-item a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--primary);
}

.footer-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 25px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary);
  transform: translateX(5px);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.copyright {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.copyright strong {
  color: var(--primary);
}

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

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 1px solid var(--glass-border);
}

.social-icon:hover {
  background: var(--primary);
  color: #000;
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: 0 5px 15px rgba(0, 242, 255, 0.3);
}

.designed-by {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.designed-by a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .brand-col {
    grid-column: span 2;
    padding-right: 0;
    text-align: center;
  }
  .brand-tagline {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-contact {
    align-items: center;
  }
  .footer-title {
    text-align: center;
  }
  .footer-links {
    text-align: center;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .brand-col {
    grid-column: span 1;
  }
}

/* Fix for Footer Logo scaling */
.footer-logo img {
  height: 50px !important;
  width: auto !important;
  max-width: 200px !important;
  margin-bottom: 20px;
}
