/* ===============================
   NON-CRITICAL STYLES
================================*/

/* Body background enhancement */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 7, 24, 0.85), rgba(26, 15, 45, 0.9));
  z-index: -1;
}

/* Navigation enhancements */
.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 2.2rem;
}

.nav-links a {
  text-decoration: none;
  color: #e2d9f3;
  font-weight: 600;
  font-size: 1.05rem;
  position: relative;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: #b300ff;
  text-shadow: 0 0 10px rgba(179, 0, 255, 0.7);
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: linear-gradient(90deg, #b300ff, #ff00aa);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Burger menu */
.burger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 24px;
  background: none;
  border: none;
  padding: 0;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1001;
}

.burger span {
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, #b300ff, #ff00aa);
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 0 8px rgba(179, 0, 255, 0.6);
  display: block;
  transform-origin: center;
}

.burger:hover span {
  background: linear-gradient(90deg, #ff00aa, #b300ff);
  box-shadow: 0 0 12px rgba(255, 0, 170, 0.8);
}

.burger:hover {
  transform: scale(1.1);
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
  background: #ff00aa;
  box-shadow: 0 0 12px rgba(255, 0, 170, 0.8);
}

.burger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
  background: #b300ff;
  box-shadow: 0 0 12px rgba(179, 0, 255, 0.8);
}

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 85%;
  height: 100vh;
  background: linear-gradient(180deg, #0d0718 0%, #1a0f2d 100%);
  z-index: 1001;
  transition: right 0.4s ease;
  padding: 80px 1.5rem 2rem;
  border-left: 1px solid rgba(179, 0, 255, 0.3);
  box-shadow: -5px 0 30px rgba(179, 0, 255, 0.2);
  backdrop-filter: blur(15px);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.sidebar.active {
  right: 0;
}

.sidebar-close {
  position: absolute;
  top: 25px;
  right: 25px;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 1002;
}

.sidebar-close:hover {
  color: #ff00aa;
  background: rgba(255, 0, 170, 0.1);
  transform: scale(1.1);
}

.sidebar-links {
  list-style: none;
  width: 100%;
  margin-bottom: 2rem;
}

.sidebar-links li {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(179, 0, 255, 0.1);
  padding-bottom: 1rem;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.4s ease;
}

.sidebar.active .sidebar-links li {
  opacity: 1;
  transform: translateX(0);
}

.sidebar-links a {
  text-decoration: none;
  color: #e2d9f3;
  font-size: 1.3rem;
  font-weight: 600;
  transition: all 0.3s ease;
  display: block;
  padding: 0.5rem 0;
}

.sidebar-links a:hover,
.sidebar-links a.active {
  color: #ff00aa;
  text-shadow: 0 0 10px rgba(255, 0, 170, 0.7);
  transform: translateX(10px);
}

.sidebar-content {
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(179, 0, 255, 0.2);
}

.sidebar-description p {
  color: #d8d8d8;
  font-size: 0.95rem;
  line-height: 1.5;
  text-align: center;
  margin: 0;
}

.sidebar-contact {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease 0.5s;
}

.sidebar.active .sidebar-contact {
  opacity: 1;
  transform: translateY(0);
}

.contact-method {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.8rem;
  background: rgba(179, 0, 255, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(179, 0, 255, 0.2);
  transition: all 0.3s ease;
}

.contact-method:hover {
  background: rgba(179, 0, 255, 0.15);
  border-color: rgba(179, 0, 255, 0.4);
  transform: translateX(5px);
}

.contact-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  color: #ff00aa;
  font-size: 1.2rem;
  text-shadow: 0 0 8px rgba(255, 0, 170, 0.5);
}

.contact-text {
  color: #e2d9f3;
  font-size: 0.9rem;
  font-weight: 500;
  flex: 1;
}

.overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* FAQ Content Enhancements */
.neon-faq-card {
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  min-height: auto !important;
}

.neon-faq-card:hover {
  border-color: rgba(179, 0, 255, 0.5);
  box-shadow: 0 10px 30px rgba(179, 0, 255, 0.2);
  transform: translateY(-2px);
}

.neon-faq-question {
  transition: all 0.3s ease;
}

.neon-faq-question:hover {
  background: rgba(179, 0, 255, 0.1);
  color: #ff00aa;
}

.faq-icon {
  color: #ff00aa;
  margin-right: 1rem;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.faq-toggle {
  color: #ff00aa;
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.neon-faq-card.active .faq-toggle {
  transform: rotate(45deg);
}

.neon-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(13, 7, 24, 0.9);
}

.neon-faq-card.active .neon-faq-answer {
  max-height: 1000px;
}

.neon-faq-answer-content {
  padding: 0 2rem 1.5rem;
}

.neon-faq-answer p {
  color: #e2d9f3;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.neon-faq-list {
  color: #e2d9f3;
  padding-left: 1.5rem;
  margin: 1rem 0;
}

.neon-faq-list li {
  margin-bottom: 0.8rem;
  line-height: 1.5;
}

.neon-faq-list strong {
  color: #ff00aa;
}

.neon-link {
  color: #7d81ff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.neon-link:hover {
  color: #b300ff;
  text-shadow: 0 0 8px rgba(179, 0, 255, 0.6);
}

/* Footer */
.neon-footer {
  background: linear-gradient(180deg, #0d0718 0%, #0a0512 100%);
  color: white;
  padding: 3rem 1rem 2rem;
  border-top: 1px solid rgba(179, 0, 255, 0.3);
  position: relative;
  overflow: hidden;
  margin-top: auto;
}

.neon-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #b300ff, #ff00aa);
}

.footer-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.footer-brand h5 {
  color: #ff00aa;
  font-size: 1.3rem;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(255, 0, 170, 0.5);
  margin: 0;
}

.footer-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.footer-nav a {
  color: #e2d9f3;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
  position: relative;
}

.footer-nav a:hover {
  color: #b300ff;
  text-shadow: 0 0 10px rgba(179, 0, 255, 0.7);
}

.footer-nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, #b300ff, #ff00aa);
  transition: width 0.3s ease;
}

.footer-nav a:hover::after {
  width: 100%;
}

.footer-copyright {
  text-align: center;
}

.footer-copyright p {
  color: #e2d9f3;
  margin: 0;
  font-size: 0.9rem;
}

.footer-copyright a {
  color: #ff00aa;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-copyright a:hover {
  color: #b300ff;
  text-shadow: 0 0 8px rgba(179, 0, 255, 0.6);
}

.footer-locations {
  margin: 1.5rem 0;
  position: relative;
  z-index: 1;
}

.footer-locations nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

.footer-locations a {
  color: #d8d8d8;
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
}

.footer-locations a:hover {
  color: #ff00aa;
  background: rgba(179, 0, 255, 0.1);
  text-shadow: 0 0 8px rgba(255, 0, 170, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links { 
    display: none; 
  }
  .burger { 
    display: flex; 
  }

  .navbar {
    padding: 0.6rem 5%;
    height: 60px;
  }

  .logo img {
    height: 40px;
  }

  .neon-faq-section {
    padding: 6rem 1rem 4rem;
  }

  .neon-faq-question {
    padding: 1.2rem 1.5rem;
    font-size: 1.1rem;
  }

  .neon-faq-answer-content {
    padding: 0 1.5rem 1.2rem;
  }

  .footer-main {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .footer-nav {
    gap: 1.5rem;
  }

  .footer-locations nav {
    gap: 0.5rem;
  }

  .footer-locations a {
    font-size: 0.8rem;
    padding: 0.2rem 0.4rem;
  }
}

@media (max-width: 480px) {
  .neon-faq-question {
    padding: 1rem 1.2rem;
    font-size: 1rem;
  }

  .faq-icon {
    margin-right: 0.8rem;
    font-size: 1.2rem;
  }

  .footer-nav {
    flex-direction: column;
    gap: 1rem;
  }

  .footer-locations nav {
    gap: 0.3rem;
  }

  .footer-locations a {
    font-size: 0.75rem;
    padding: 0.2rem 0.3rem;
  }
}