/* Quote Popup Styles */
.quote-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  overflow-y: auto;
}

.quote-popup.show,
.quote-popup.active {
  display: block !important;
}

.hidden {
  display: none !important;
}

.quote-popup-content {
  background: white;
  max-width: 600px;
  margin: 2rem auto;
  border-radius: 10px;
  position: relative;
  animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.quote-popup-header {
  padding: 1.5rem;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.quote-popup-header h3 {
  margin: 0;
  color: #333;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.quote-popup-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #666;
  padding: 0.5rem;
}

.quote-popup-close:hover {
  color: #333;
}

.quote-form {
  padding: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
}

.form-control:focus {
  border-color: #4CAF50;
  outline: none;
}

.checkbox-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-top: 0.5rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.btn-block {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  background: #4CAF50;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-block:hover {
  background: #45a049;
}

.btn-block:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.no-scroll {
  overflow: hidden;
}

/* Responsive styles */
@media (max-width: 768px) {
  .quote-popup-content {
    margin: 1rem;
    max-width: calc(100% - 2rem);
  }

  .quote-form {
    padding: 1rem;
  }
} 