/* Form Popup Styles */
.audi-form-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.audi-form-popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}

.audi-form-popup-content {
  position: relative;
  width: 90vw;
  max-width: 1200px;
  height: 90vh;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
}

.audi-form-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: white;
  border: none;
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
  color: #333;
}

.audi-form-popup-close:hover {
  background: #f0f0f0;
  transform: scale(1.1);
}

.audi-form-popup-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .audi-form-popup-content {
    width: 95vw;
    height: 95vh;
    border-radius: 8px;
  }
  
  .audi-form-popup-close {
    width: 36px;
    height: 36px;
    font-size: 24px;
    top: 12px;
    right: 12px;
  }
}
