@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&display=swap');

/* Streamlined Footer Styles */
.footer {
  padding: 1.5rem 1rem;
  text-align: center;
  background: transparent;
  color: #aaa;
  position: relative;
  z-index: 1;
  font-size: 0.85rem;
  line-height: 1.4;
}

.footer .contact-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  margin-bottom: 0.8rem;
}

.footer .contact-item {
  display: inline;
}

.footer .contact-label {
  color: #888;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 0 6px rgba(136, 136, 136, 0.8), 0 0 12px rgba(136, 136, 136, 0.5);
}

.footer .contact-name {
  color: #ff00ff;
  font-weight: 600;
  text-shadow: 0 0 8px rgba(255, 0, 255, 0.6), 0 0 15px rgba(255, 0, 255, 0.4);
}

.footer .contact-title {
  color: #666;
  font-size: 0.75rem;
  font-style: italic;
}

.footer .contact-info {
  color: #888;
  font-size: 0.8rem;
}

.footer a {
  color: #00f4ff;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer .separator {
  color: #444;
  margin: 0 0.3rem;
}

.footer::before {
  content: '';
  display: block;
  width: 40%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #00f4ff, transparent);
  margin: 0 auto 1rem auto;
}

@media (max-width: 768px) {
  .footer .contact-row {
    flex-direction: column;
    gap: 0.8rem;
  }
  .footer .contact-item {
    display: block;
  }
  .footer {
    font-size: 0.8rem;
  }
}

.cta-portal {
  text-align: center;
  background: rgba(5, 8, 15, 0.8);
  color: #C2E7FF;
  padding: 10px 20px;
  border-radius: 10px;
  border: 1px solid rgba(0, 244, 255, 0.2);
  z-index: 2;
  position: relative;
  overflow: hidden;
  margin-top: 0.5rem;
  cursor: pointer;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.cta-portal:hover {
  border-color: rgba(0, 244, 255, 0.5);
  box-shadow: 0 0 15px rgba(0, 244, 255, 0.2);
}
#cta-vortex {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.cta-title-link {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8em;
  font-weight: 700;
  color: #00f4ff;
  text-shadow: 0 0 30px #00f4ff, 0 0 60px #ff00ff;
  position: relative;
  z-index: 1;
  margin-bottom: 4px;
  display: inline-block;
  text-decoration: none;
  animation: portalBreathe 3s ease-in-out infinite;
  transition: transform 0.3s ease;
  cursor: pointer;
}
.cta-title-link:hover {
  transform: scale(1.05);
  text-shadow: 0 0 40px #00f4ff, 0 0 80px #ff00ff, 0 0 20px #fff;
}
@keyframes portalBreathe {
  0%, 100% { 
    text-shadow: 0 0 30px #00f4ff, 0 0 60px #ff00ff;
    opacity: 0.9;
  }
  50% { 
    text-shadow: 0 0 50px #00f4ff, 0 0 100px #ff00ff, 0 0 30px #fff;
    opacity: 1;
  }
}
.cta-powered {
  font-size: 0.75em;
  color: #ff00ff;
  margin-bottom: 2px;
  position: relative;
  z-index: 1;
}
.cta-tagline {
  font-style: italic;
  font-size: 0.9em;
  color: #C2E7FF;
  margin-bottom: 3px;
  position: relative;
  z-index: 1;
  text-shadow: 0 0 20px #00f4ff, 0 0 40px #ff00ff;
}
.cta-footer-info {
  margin-top: 5px;
  padding-top: 4px;
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(0, 244, 255, 0.2);
  font-size: 0.75em;
  color: #7C9CBF;
}
.cta-contact {
  margin-top: 3px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.8em;
}
.cta-contact span {
  color: #ff00ff;
}
.cta-contact a {
  color: #00f4ff;
  text-decoration: none;
  transition: color 0.3s, text-shadow 0.3s;
}
.cta-contact a:hover {
  color: #fff;
  text-shadow: 0 0 15px #00f4ff;
}
@media (max-width: 768px) {
  #cta-vortex {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 60%;
  }
  .cta-portal { padding: 12px 10px; }
  .cta-title-link { font-size: 1.4em; }
  .cta-contact { flex-direction: column; gap: 5px; font-size: 0.75em; }
}
