/* Sticky Mobile Quick Contact Bar */
.mobile-quick-contact {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(9, 10, 15, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border-color);
  display: none;
  justify-content: space-around;
  padding: 0.8rem;
  z-index: 900;
}

.mobile-quick-contact .btn {
  flex: 1;
  max-width: 45%;
  text-align: center;
}

/* Footer */
.footer {
  background: #06070a;
  border-top: 1px solid var(--border-color);
  padding: 6rem 0 3rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-logo-desc p {
  color: var(--text-secondary);
  margin-top: 1.5rem;
  max-width: 300px;
  font-size: 0.9rem;
}

.footer-title {
  font-family: var(--font-mono);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.9rem;
}

.footer-links a {
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--clr-gold);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Responsive Layout */
@media (max-width: 968px) {
  .menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #090a0f;
    flex-direction: column;
    justify-content: center;
    gap: 3rem;
    transition: right var(--transition-normal);
    z-index: 1005;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-actions {
    display: none;
  }
  
  .nav-menu .nav-actions-mobile {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 60%;
  }

  .mobile-quick-contact {
    display: flex;
  }
  
  body {
    padding-bottom: 70px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
