/* Interactive Drivers Component */
.interactive-drivers {
  background: #ffffff;
  border: 2px solid rgba(0, 0, 0, 0.12);
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
  margin-top: 10px;
}

.drivers-intro {
  margin-bottom: 20px;
  font-weight: 600;
  color: #1a1a1a;
  text-align: center;
  font-size: 1rem;
}

.drivers-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 20px;
}

.driver-btn {
  background: #ffffff;
  border: 1.5px solid rgba(0, 0, 0, 0.15);
  color: #1a1a1a;
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1), background 0.2s ease, color 0.2s ease;
  font-size: 0.9rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.driver-btn:hover, .driver-btn:active {
  background: #FF6B35;
  color: #ffffff;
  border-color: #FF6B35;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.25);
}

.driver-info-box {
  background: #fff8f0;
  padding: 20px;
  border-radius: 12px;
  border: 1.5px solid rgba(255, 107, 53, 0.2);
  font-size: 1rem;
  color: #1a1a1a;
  transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.08);
  margin-top: 16px;
}

.driver-info-box.hidden {
  display: none;
  opacity: 0;
  transform: translateY(-10px);
}

.driver-info-box.visible {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.driver-info-box h4 {
  margin-bottom: 10px;
  color: #1a1a1a;
  font-weight: 800;
  font-size: 1.1rem;
}


/* Driver Popup Modal */
.driver-popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 24px;
  animation: slideUpFade 0.25s ease forwards;
}

.driver-popup-card {
  background: #fff8f0;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
  padding: 32px 28px 28px;
  max-width: 480px;
  width: 100%;
  position: relative;
}

.driver-popup-card h4 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.driver-popup-card p {
  font-size: 1rem;
  color: #1a1a1a;
  line-height: 1.6;
}

.driver-popup-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.6rem;
  font-weight: 700;
  cursor: pointer;
  color: #1a1a1a;
  line-height: 1;
  padding: 4px 8px;
  border-radius: 8px;
  transition: background 0.15s ease;
}

.driver-popup-close:hover {
  background: rgba(0, 0, 0, 0.08);
}

/* AI Search Tool Component */
.ai-search-tool {
  background: #ffffff;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06), 0 0 0 3px rgba(255, 107, 53, 0.08);
  margin-top: 10px;
  position: relative;
}

.ai-search-tool h3 {
  color: #1a1a1a;
  font-weight: 900;
  margin-bottom: 10px;
  font-size: 1.4rem;
  letter-spacing: -0.5px;
}

.ai-search-tool p {
  color: #2d3748;
  font-size: 1rem;
  margin-bottom: 24px;
  line-height: 1.5;
  font-weight: 500;
}

.ai-input-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ai-input-group input, .ai-input-group select {
  padding: 14px 18px;
  border: 1.5px solid rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  font-size: 1.05rem;
  font-family: inherit;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  background: #FAF8F5;
  color: #1a1a1a;
  font-weight: 600;
}

.ai-input-group input:focus, .ai-input-group select:focus {
  outline: none;
  border-color: #FF6B35;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.12);
  background: #ffffff;
}

.ai-btn {
  background: #1a1a1a;
  color: #ffffff;
  border: none;
  padding: 16px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.ai-btn::after {
  content: '→';
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.ai-btn:hover {
  background: #FF6B35;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3);
  color: #ffffff;
}

.ai-btn:hover::after {
  transform: translateX(4px);
}

.ai-results {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1.5px solid rgba(0, 0, 0, 0.08);
  animation: slideUpFade 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.ai-results.hidden {
  display: none;
}

.ai-results h4 {
  color: #1a1a1a;
  margin-bottom: 16px;
  font-size: 1.2rem;
  font-weight: 800;
}

.ai-resource-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ai-resource-list li {
  margin-bottom: 12px;
  background: #FAF8F5;
  padding: 16px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.ai-resource-list li:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  background: #ffffff;
}

.ai-resource-list a {
  text-decoration: none;
  color: #2d3748;
  font-size: 0.95rem;
  display: block;
}

.ai-resource-list a strong {
  color: #FF6B35;
  display: block;
  margin-bottom: 6px;
  font-size: 1.05rem;
  font-weight: 800;
}

.ai-resource-list a:hover strong {
  color: #e05422;
}

.ai-footnote {
  font-size: 0.85rem !important;
  color: #4a5568 !important;
  margin-top: 20px !important;
  margin-bottom: 0 !important;
  text-align: center;
  font-style: italic;
}

.loader {
  font-weight: 800;
  color: #1a1a1a;
  text-align: center;
  padding: 20px;
  position: relative;
  font-size: 1.1rem;
}

.loader::after {
  content: '...';
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { opacity: 0.3; }
  50% { opacity: 1; }
  100% { opacity: 0.3; }
}

@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-slide-up {
  animation: slideUpFade 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.nav-area {
  display: none !important;
  pointer-events: none !important;
}
