.pac-container {
  border-radius: 1rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  font-family: inherit;
  z-index: 9999 !important;
  margin-top: 8px;
  padding: 4px;
}
/* Flip PAC container if needed */
body.pac-reversed .pac-container {
  transform: translateY(calc(-100% - 70px)) !important;
}

.pac-container::after {
  display: none !important; /* Hide Google logo if it causes issues with flip */
}

.pac-item {
  padding: 10px 16px;
  cursor: pointer;
  font-size: 14px;
  border-top: none;
  border-radius: 0.5rem;
}

  .pac-item:hover,
  .pac-item-selected {
    background-color: rgba(37, 99, 235, 0.05);
  }

.pac-item-query {
  font-size: 15px;
  color: #111827;
  font-weight: 600;
  padding-right: 4px;
}

.pac-icon {
  margin-top: 2px;
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0px);
  }
}

.testimonial-marquee {
  display: flex;
  animation: marquee 30s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes scan-up-down {
  0%, 100% {
    top: 0%;
    opacity: 0;
  }

  5%, 95% {
    opacity: 1;
  }

  50% {
    top: 100%;
  }
}

@keyframes dash {
  to {
    stroke-dashoffset: -100;
  }
}

@keyframes loading {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.neural-paths path {
  stroke-dasharray: 50;
}

#scan-line {
  animation: scan-up-down 3s ease-in-out infinite;
}

.state-view {
  transform-origin: center center;
}

.blurry-content {
  filter: blur(8px);
  pointer-events: none;
  user-select: none;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(1, 2, 3, 0.4);
  backdrop-blur: 10px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.audit-card {
  animation: reveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
}

  .audit-card:nth-child(1) {
    animation-delay: 0.1s;
  }

  .audit-card:nth-child(2) {
    animation-delay: 0.2s;
  }

  .audit-card:nth-child(3) {
    animation-delay: 0.3s;
  }